mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
Implement sin opcode.
Seems to have similar rounding border problems as cos.
This commit is contained in:
parent
e0e91e7ceb
commit
a2debc2704
5 changed files with 54 additions and 1 deletions
|
|
@ -452,7 +452,9 @@ translate_instruction(llvm::Module *module,
|
|||
out = instr->sgt(inputs[0], inputs[1]);
|
||||
}
|
||||
break;
|
||||
case TGSI_OPCODE_SIN:
|
||||
case TGSI_OPCODE_SIN: {
|
||||
out = instr->sin(inputs[0]);
|
||||
}
|
||||
break;
|
||||
case TGSI_OPCODE_SLE:
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -126,6 +126,12 @@ Function* func_sinf = new Function(
|
|||
/*Name=*/"sinf", mod); // (external, no body)
|
||||
func_sinf->setCallingConv(CallingConv::C);
|
||||
|
||||
Function* func_vsin = new Function(
|
||||
/*Type=*/FuncTy_5,
|
||||
/*Linkage=*/GlobalValue::ExternalLinkage,
|
||||
/*Name=*/"vsin", mod);
|
||||
func_vsin->setCallingConv(CallingConv::C);
|
||||
|
||||
// Global Variable Declarations
|
||||
|
||||
|
||||
|
|
@ -428,6 +434,27 @@ gvar_array__str1->setInitializer(const_array_14);
|
|||
|
||||
}
|
||||
|
||||
// Function: vsin (func_vsin)
|
||||
{
|
||||
Function::arg_iterator args = func_vsin->arg_begin();
|
||||
Value* packed_val_59 = args++;
|
||||
packed_val_59->setName("val");
|
||||
|
||||
BasicBlock* label_entry_60 = new BasicBlock("entry",func_vsin,0);
|
||||
|
||||
// Block entry (label_entry_60)
|
||||
ExtractElementInst* float_tmp2_61 = new ExtractElementInst(packed_val_59, const_int32_18, "tmp2", label_entry_60);
|
||||
CallInst* float_call_62 = new CallInst(func_sinf, float_tmp2_61, "call", label_entry_60);
|
||||
float_call_62->setCallingConv(CallingConv::C);
|
||||
float_call_62->setTailCall(true);
|
||||
InsertElementInst* packed_tmp6 = new InsertElementInst(const_packed_34, float_call_62, const_int32_18, "tmp6", label_entry_60);
|
||||
InsertElementInst* packed_tmp9_63 = new InsertElementInst(packed_tmp6, float_call_62, const_int32_22, "tmp9", label_entry_60);
|
||||
InsertElementInst* packed_tmp12_64 = new InsertElementInst(packed_tmp9_63, float_call_62, const_int32_24, "tmp12", label_entry_60);
|
||||
InsertElementInst* packed_tmp15_65 = new InsertElementInst(packed_tmp12_64, float_call_62, const_int32_23, "tmp15", label_entry_60);
|
||||
new ReturnInst(packed_tmp15_65, label_entry_60);
|
||||
|
||||
}
|
||||
|
||||
return mod;
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -874,5 +874,15 @@ llvm::Value * Instructions::scs(llvm::Value *in)
|
|||
return call;
|
||||
}
|
||||
|
||||
|
||||
llvm::Value * Instructions::sin(llvm::Value *in)
|
||||
{
|
||||
llvm::Function *func = m_mod->getFunction("vsin");
|
||||
assert(func);
|
||||
|
||||
CallInst *call = m_builder.CreateCall(func, in, name("sinres"));
|
||||
call->setTailCall(false);
|
||||
return call;
|
||||
}
|
||||
#endif //MESA_LLVM
|
||||
|
||||
|
|
|
|||
|
|
@ -95,6 +95,7 @@ public:
|
|||
llvm::Value *scs(llvm::Value *in);
|
||||
llvm::Value *sge(llvm::Value *in1, llvm::Value *in2);
|
||||
llvm::Value *sgt(llvm::Value *in1, llvm::Value *in2);
|
||||
llvm::Value *sin(llvm::Value *in);
|
||||
llvm::Value *slt(llvm::Value *in1, llvm::Value *in2);
|
||||
llvm::Value *sub(llvm::Value *in1, llvm::Value *in2);
|
||||
llvm::Value *trunc(llvm::Value *in);
|
||||
|
|
|
|||
|
|
@ -93,3 +93,16 @@ inline float4 scs(float4 val)
|
|||
result.y = sinf(tmp);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
inline float4 vsin(float4 val)
|
||||
{
|
||||
float4 result;
|
||||
float tmp = val.x;
|
||||
float res = sinf(tmp);
|
||||
result.x = res;
|
||||
result.y = res;
|
||||
result.z = res;
|
||||
result.w = res;
|
||||
return result;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue