HomeSort by relevance Sort by last modified time
    Searched refs:ArgX (Results 1 - 6 of 6) 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/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/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);

Completed in 298 milliseconds