HomeSort by relevance Sort by last modified time
    Searched refs:ArgX (Results 1 - 3 of 3) sorted by null

  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 83 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
84 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
87 Value *Add = builder.CreateAdd(One, ArgX);
  /external/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/llvm/examples/ParallelJIT/
ParallelJIT.cpp 53 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
54 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
57 Instruction *Add = BinaryOperator::CreateAdd(One, ArgX, "addresult", BB);
83 Argument *ArgX = &*FibF->arg_begin(); // Get the arg.
84 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
92 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
99 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
103 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);

Completed in 338 milliseconds