summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/llvm/gallivm_builtins.cpp
blob: 4acbedc56683bdbb0bb025cb14a0850cca94a74b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Generated by llvm2cpp - DO NOT MODIFY!


Module* createGallivmBuiltins(Module *mod) {

mod->setModuleIdentifier("shader");

// Type Definitions
std::vector<const Type*>FuncTy_0_args;
FuncTy_0_args.push_back(Type::FloatTy);
FuncTy_0_args.push_back(Type::FloatTy);
ParamAttrsList *FuncTy_0_PAL = 0;
FunctionType* FuncTy_0 = FunctionType::get(
  /*Result=*/Type::FloatTy,
  /*Params=*/FuncTy_0_args,
  /*isVarArg=*/false,
  /*ParamAttrs=*/FuncTy_0_PAL);

PointerType* PointerTy_1 = PointerType::get(FuncTy_0);

VectorType* VectorTy_2 = VectorType::get(Type::FloatTy, 4);

std::vector<const Type*>FuncTy_3_args;
FuncTy_3_args.push_back(VectorTy_2);
ParamAttrsList *FuncTy_3_PAL = 0;
FunctionType* FuncTy_3 = FunctionType::get(
  /*Result=*/VectorTy_2,
  /*Params=*/FuncTy_3_args,
  /*isVarArg=*/false,
  /*ParamAttrs=*/FuncTy_3_PAL);


// Function Declarations

Function* func_approx = new Function(
  /*Type=*/FuncTy_0,
  /*Linkage=*/GlobalValue::ExternalLinkage,
  /*Name=*/"approx", mod); 
func_approx->setCallingConv(CallingConv::C);

Function* func_powf = new Function(
  /*Type=*/FuncTy_0,
  /*Linkage=*/GlobalValue::ExternalLinkage,
  /*Name=*/"powf", mod); // (external, no body)
func_powf->setCallingConv(CallingConv::C);

Function* func_lit = new Function(
  /*Type=*/FuncTy_3,
  /*Linkage=*/GlobalValue::ExternalLinkage,
  /*Name=*/"lit", mod); 
func_lit->setCallingConv(CallingConv::C);

// Global Variable Declarations


// Constant Definitions
ConstantFP* const_float_4 = ConstantFP::get(Type::FloatTy, APFloat(-1.280000e+02f));
ConstantFP* const_float_5 = ConstantFP::get(Type::FloatTy, APFloat(1.280000e+02f));
Constant* const_float_6 = Constant::getNullValue(Type::FloatTy);
Constant* const_int32_7 = Constant::getNullValue(IntegerType::get(32));
std::vector<Constant*> const_packed_8_elems;
ConstantFP* const_float_9 = ConstantFP::get(Type::FloatTy, APFloat(1.000000e+00f));
const_packed_8_elems.push_back(const_float_9);
UndefValue* const_float_10 = UndefValue::get(Type::FloatTy);
const_packed_8_elems.push_back(const_float_10);
const_packed_8_elems.push_back(const_float_10);
const_packed_8_elems.push_back(const_float_9);
Constant* const_packed_8 = ConstantVector::get(VectorTy_2, const_packed_8_elems);
ConstantInt* const_int32_11 = ConstantInt::get(APInt(32,  "1", 10));
ConstantInt* const_int32_12 = ConstantInt::get(APInt(32,  "3", 10));
ConstantInt* const_int32_13 = ConstantInt::get(APInt(32,  "2", 10));
std::vector<Constant*> const_packed_14_elems;
const_packed_14_elems.push_back(const_float_9);
const_packed_14_elems.push_back(const_float_6);
const_packed_14_elems.push_back(const_float_6);
const_packed_14_elems.push_back(const_float_9);
Constant* const_packed_14 = ConstantVector::get(VectorTy_2, const_packed_14_elems);

// Global Variable Definitions

// Function Definitions

// Function: approx (func_approx)
{
  Function::arg_iterator args = func_approx->arg_begin();
  Value* float_a = args++;
  float_a->setName("a");
  Value* float_b = args++;
  float_b->setName("b");
  
  BasicBlock* label_entry = new BasicBlock("entry",func_approx,0);
  
  // Block entry (label_entry)
  FCmpInst* int1_cmp = new FCmpInst(FCmpInst::FCMP_OLT, float_b, const_float_4, "cmp", label_entry);
  SelectInst* float_b_addr_0 = new SelectInst(int1_cmp, const_float_4, float_b, "b.addr.0", label_entry);
  FCmpInst* int1_cmp3 = new FCmpInst(FCmpInst::FCMP_OGT, float_b_addr_0, const_float_5, "cmp3", label_entry);
  SelectInst* float_b_addr_1 = new SelectInst(int1_cmp3, const_float_5, float_b_addr_0, "b.addr.1", label_entry);
  FCmpInst* int1_cmp7 = new FCmpInst(FCmpInst::FCMP_OLT, float_a, const_float_6, "cmp7", label_entry);
  SelectInst* float_a_addr_0 = new SelectInst(int1_cmp7, const_float_6, float_a, "a.addr.0", label_entry);
  std::vector<Value*> float_call_params;
  float_call_params.push_back(float_a_addr_0);
  float_call_params.push_back(float_b_addr_1);
  CallInst* float_call = new CallInst(func_powf, float_call_params.begin(), float_call_params.end(), "call", label_entry);
  float_call->setCallingConv(CallingConv::C);
  float_call->setTailCall(true);
  new ReturnInst(float_call, label_entry);
  
}

// Function: lit (func_lit)
{
  Function::arg_iterator args = func_lit->arg_begin();
  Value* packed_tmp = args++;
  packed_tmp->setName("tmp");
  
  BasicBlock* label_entry_16 = new BasicBlock("entry",func_lit,0);
  BasicBlock* label_ifthen = new BasicBlock("ifthen",func_lit,0);
  BasicBlock* label_UnifiedReturnBlock = new BasicBlock("UnifiedReturnBlock",func_lit,0);
  
  // Block entry (label_entry_16)
  ExtractElementInst* float_tmp7 = new ExtractElementInst(packed_tmp, const_int32_7, "tmp7", label_entry_16);
  FCmpInst* int1_cmp_17 = new FCmpInst(FCmpInst::FCMP_OGT, float_tmp7, const_float_6, "cmp", label_entry_16);
  new BranchInst(label_ifthen, label_UnifiedReturnBlock, int1_cmp_17, label_entry_16);
  
  // Block ifthen (label_ifthen)
  InsertElementInst* packed_tmp12 = new InsertElementInst(const_packed_8, float_tmp7, const_int32_11, "tmp12", label_ifthen);
  ExtractElementInst* float_tmp14 = new ExtractElementInst(packed_tmp, const_int32_11, "tmp14", label_ifthen);
  ExtractElementInst* float_tmp16 = new ExtractElementInst(packed_tmp, const_int32_12, "tmp16", label_ifthen);
  FCmpInst* int1_cmp_i = new FCmpInst(FCmpInst::FCMP_OLT, float_tmp16, const_float_4, "cmp.i", label_ifthen);
  SelectInst* float_b_addr_0_i = new SelectInst(int1_cmp_i, const_float_4, float_tmp16, "b.addr.0.i", label_ifthen);
  FCmpInst* int1_cmp3_i = new FCmpInst(FCmpInst::FCMP_OGT, float_b_addr_0_i, const_float_5, "cmp3.i", label_ifthen);
  SelectInst* float_b_addr_1_i = new SelectInst(int1_cmp3_i, const_float_5, float_b_addr_0_i, "b.addr.1.i", label_ifthen);
  FCmpInst* int1_cmp7_i = new FCmpInst(FCmpInst::FCMP_OLT, float_tmp14, const_float_6, "cmp7.i", label_ifthen);
  SelectInst* float_a_addr_0_i = new SelectInst(int1_cmp7_i, const_float_6, float_tmp14, "a.addr.0.i", label_ifthen);
  std::vector<Value*> float_call_i_params;
  float_call_i_params.push_back(float_a_addr_0_i);
  float_call_i_params.push_back(float_b_addr_1_i);
  CallInst* float_call_i = new CallInst(func_powf, float_call_i_params.begin(), float_call_i_params.end(), "call.i", label_ifthen);
  float_call_i->setCallingConv(CallingConv::C);
  float_call_i->setTailCall(true);
  InsertElementInst* packed_tmp18 = new InsertElementInst(packed_tmp12, float_call_i, const_int32_13, "tmp18", label_ifthen);
  new ReturnInst(packed_tmp18, label_ifthen);
  
  // Block UnifiedReturnBlock (label_UnifiedReturnBlock)
  new ReturnInst(const_packed_14, label_UnifiedReturnBlock);
  
}

return mod;

}