OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ArgX
(Results
1 - 9
of
9
) sorted by null
/external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp
91
Argument *
ArgX
= &*Add1F->arg_begin(); // Get the arg
92
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
95
Value *Add = builder.CreateAdd(One,
ArgX
);
/external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
HowToUseJIT.cpp
82
Argument *
ArgX
= Add1F->arg_begin(); // Get the arg
83
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
86
Value *Add = builder.CreateAdd(One,
ArgX
);
/external/swiftshader/third_party/llvm-7.0/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp
89
Argument *
ArgX
= &*Add1F->arg_begin(); // Get the arg
90
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
93
Value *Add = builder.CreateAdd(One,
ArgX
);
/external/llvm/examples/Fibonacci/
fibonacci.cpp
68
Argument *
ArgX
= &*FibF->arg_begin(); // Get the arg.
69
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
77
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
84
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
89
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
/external/swiftshader/third_party/LLVM/examples/Fibonacci/
fibonacci.cpp
55
Argument *
ArgX
= FibF->arg_begin(); // Get the arg.
56
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
64
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
71
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
76
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Fibonacci/
fibonacci.cpp
67
Argument *
ArgX
= &*FibF->arg_begin(); // Get the arg.
68
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
76
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
83
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
88
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
/external/llvm/examples/ParallelJIT/
ParallelJIT.cpp
69
Argument *
ArgX
= &*Add1F->arg_begin(); // Get the arg
70
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
73
Instruction *Add = BinaryOperator::CreateAdd(One,
ArgX
, "addresult", BB);
99
Argument *
ArgX
= &*FibF->arg_begin(); // Get the arg.
100
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
108
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
115
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
119
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
/external/swiftshader/third_party/LLVM/examples/ParallelJIT/
ParallelJIT.cpp
52
Argument *
ArgX
= Add1F->arg_begin(); // Get the arg
53
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
56
Instruction *Add = BinaryOperator::CreateAdd(One,
ArgX
, "addresult", BB);
82
Argument *
ArgX
= FibF->arg_begin(); // Get the arg.
83
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
91
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
98
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
102
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
/external/swiftshader/third_party/llvm-7.0/llvm/examples/ParallelJIT/
ParallelJIT.cpp
68
Argument *
ArgX
= &*Add1F->arg_begin(); // Get the arg
69
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
72
Instruction *Add = BinaryOperator::CreateAdd(One,
ArgX
, "addresult", BB);
97
Argument *
ArgX
= &*FibF->arg_begin(); // Get the arg.
98
ArgX
->setName("AnArg"); // Give it a nice symbolic name for fun.
106
Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE,
ArgX
, Two, "cond");
113
Value *Sub = BinaryOperator::CreateSub(
ArgX
, One, "arg", RecurseBB);
117
Sub = BinaryOperator::CreateSub(
ArgX
, Two, "arg", RecurseBB);
Completed in 347 milliseconds