HomeSort by: relevance | last modified time | path
    Searched refs:Add1F (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/examples/HowToUseLLJIT/
HowToUseLLJIT.cpp 47 Function *Add1F =
54 BasicBlock *BB = BasicBlock::Create(*Context, "EntryBlock", Add1F);
64 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
65 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
  /src/external/apache2/llvm/dist/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 73 Function *Add1F =
80 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
90 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
91 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
117 // Pass Ten to the call to Add1F
118 CallInst *Add1CallRes = builder.CreateCall(Add1F, Ten);
  /src/external/apache2/llvm/dist/llvm/examples/ParallelJIT/
ParallelJIT.cpp 54 Function *Add1F =
61 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
67 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
68 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
78 return Add1F;
267 Function* add1F = createAdd1( M );
277 struct threadParams add1 = { EE, add1F, 1000 };

Completed in 16 milliseconds