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 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/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 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);

Completed in 1585 milliseconds