HomeSort by relevance Sort by last modified time
    Searched full:add1f (Results 1 - 2 of 2) sorted by null

  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 64 Function *Add1F =
71 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
81 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
82 Argument *ArgX = Add1F->arg_begin(); // Get the arg
109 // Pass Ten to the call to Add1F
110 CallInst *Add1CallRes = builder.CreateCall(Add1F, Ten);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 37 Function *Add1F =
45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
51 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
52 Argument *ArgX = Add1F->arg_begin(); // Get the arg
62 return Add1F;
245 Function* add1F = createAdd1( M );
255 struct threadParams add1 = { EE, add1F, 1000 };

Completed in 38 milliseconds