Searched defs:ArgX (Results 1 - 3 of 3) sorted by relevance

/external/llvm/examples/HowToUseJIT/
H A DHowToUseJIT.cpp82 Argument *ArgX = Add1F->arg_begin(); // Get the arg local
83 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
86 Value *Add = builder.CreateAdd(One, ArgX);
/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp55 Argument *ArgX = FibF->arg_begin(); // Get the arg. local
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/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp52 Argument *ArgX = Add1F->arg_begin(); // Get the arg local
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. local
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);

Completed in 93 milliseconds