HomeSort by relevance Sort by last modified time
    Searched refs:getOrInsertFunction (Results 1 - 25 of 40) sorted by null

1 2

  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
97 cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context),
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 146 TsanFuncEntry = checkInterfaceFunction(M.getOrInsertFunction(
148 TsanFuncExit = checkInterfaceFunction(M.getOrInsertFunction(
155 TsanRead[i] = checkInterfaceFunction(M.getOrInsertFunction(
159 TsanWrite[i] = checkInterfaceFunction(M.getOrInsertFunction(
166 TsanAtomicLoad[i] = checkInterfaceFunction(M.getOrInsertFunction(
171 TsanAtomicStore[i] = checkInterfaceFunction(M.getOrInsertFunction(
196 TsanAtomicRMW[op][i] = checkInterfaceFunction(M.getOrInsertFunction(
202 TsanAtomicCAS[i] = checkInterfaceFunction(M.getOrInsertFunction(
205 TsanVptrUpdate = checkInterfaceFunction(M.getOrInsertFunction(
208 TsanVptrLoad = checkInterfaceFunction(M.getOrInsertFunction(
    [all...]
GCOVProfiling.cpp 604 Constant *GCOVInit = M->getOrInsertFunction("llvm_gcov_init", FTy);
671 return M->getOrInsertFunction("llvm_gcda_start_file", FTy);
682 return M->getOrInsertFunction("__llvm_gcov_indirect_counter_increment", FTy);
692 return M->getOrInsertFunction("llvm_gcda_emit_function", FTy);
701 return M->getOrInsertFunction("llvm_gcda_emit_arcs", FTy);
706 return M->getOrInsertFunction("llvm_delete_writeout_function_list", FTy);
711 return M->getOrInsertFunction("llvm_delete_flush_function_list", FTy);
716 return M->getOrInsertFunction("llvm_gcda_end_file", FTy);
AddressSanitizer.cpp 689 // Validate the result of Module::getOrInsertFunction called for an interface
692 // getOrInsertFunction returns a bitcast.
    [all...]
ProfilingUtils.cpp 33 Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
  /external/llvm/lib/IR/
Module.cpp 133 // getOrInsertFunction - Look up the specified function in the module symbol
138 Constant *Module::getOrInsertFunction(StringRef Name,
157 Constant *NewF = getOrInsertFunction(Name, Ty);
171 Constant *Module::getOrInsertFunction(StringRef Name,
173 return getOrInsertFunction(Name, Ty, AttributeSet());
176 // getOrInsertFunction - Look up the specified function in the module symbol
181 Constant *Module::getOrInsertFunction(StringRef Name,
194 // Build the function type and chain to the other getOrInsertFunction...
195 return getOrInsertFunction(Name,
200 Constant *Module::getOrInsertFunction(StringRef Name
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 126 If = M.getOrInsertFunction(
129 Else = M.getOrInsertFunction(
132 Break = M.getOrInsertFunction(
135 IfBreak = M.getOrInsertFunction(
138 ElseBreak = M.getOrInsertFunction(
141 Loop = M.getOrInsertFunction(
144 EndCf = M.getOrInsertFunction(
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 138 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
157 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
178 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 48 Constant *StrLen = M->getOrInsertFunction("strlen",
77 Constant *StrNLen = M->getOrInsertFunction("strnlen",
107 Constant *StrChr = M->getOrInsertFunction("strchr",
134 Value *StrNCmp = M->getOrInsertFunction("strncmp",
164 Value *StrCpy = M->getOrInsertFunction(Name,
188 Value *StrNCpy = M->getOrInsertFunction(Name,
214 Value *MemCpy = M->getOrInsertFunction("__memcpy_chk",
243 Value *MemChr = M->getOrInsertFunction("memchr",
274 Value *MemCmp = M->getOrInsertFunction("memcmp",
307 Value *Callee = M->getOrInsertFunction(Name, Op->getType()
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 54 ExternalCallingNode = getOrInsertFunction(0);
115 CallGraphNode *Node = getOrInsertFunction(F);
150 Node->addCalledFunction(CS, getOrInsertFunction(Callee));
244 // getOrInsertFunction - This method is identical to calling operator[], but
247 CallGraphNode *CallGraph::getOrInsertFunction(const Function *F) {
CallGraphSCCPass.cpp 286 CalleeNode = CG.getOrInsertFunction(Callee);
310 CalleeNode = CG.getOrInsertFunction(Callee);
  /external/llvm/examples/BrainF/
BrainF.cpp 64 getOrInsertFunction("getchar", IntegerType::getInt32Ty(C), NULL));
68 getOrInsertFunction("putchar", IntegerType::getInt32Ty(C),
76 getOrInsertFunction("brainf", Type::getVoidTy(C), NULL));
150 getOrInsertFunction("puts", IntegerType::getInt32Ty(C),
BrainFDriver.cpp 60 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
  /external/llvm/include/llvm/IR/
Module.h 314 /// getOrInsertFunction - Look up the specified function in the module symbol
323 Constant *getOrInsertFunction(StringRef Name, FunctionType *T,
326 Constant *getOrInsertFunction(StringRef Name, FunctionType *T);
328 /// getOrInsertFunction - Look up the specified function in the module symbol
335 Constant *getOrInsertFunction(StringRef Name,
339 /// getOrInsertFunction - Same as above, but without the attributes.
340 Constant *getOrInsertFunction(StringRef Name, Type *RetTy, ...)
  /external/llvm/unittests/IR/
VerifierTest.cpp 68 Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 43 cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 38 cast<Function>(M->getOrInsertFunction("add1",
69 cast<Function>(M->getOrInsertFunction("fib",
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 35 M.getOrInsertFunction(Name, FunctionType::get(RetTy, ParamTys, false));
75 Constant* FCache = M->getOrInsertFunction(NewFn,
114 M.getOrInsertFunction("memcpy",
121 M.getOrInsertFunction("memmove",
128 M.getOrInsertFunction("memset",
DwarfEHPrepare.cpp 126 RewindFunction = Fn.getParent()->getOrInsertFunction(RewindName, FTy);
StackProtector.cpp 391 Constant *StackChkFail = M->getOrInsertFunction(
409 Constant *StackChkFail = M->getOrInsertFunction(
SjLjEHPrepare.cpp 103 RegisterFn = M.getOrInsertFunction("_Unwind_SjLj_Register",
108 M.getOrInsertFunction("_Unwind_SjLj_Unregister",
  /external/llvm/unittests/Analysis/
ScalarEvolutionTest.cpp 42 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
95 Function *F = cast<Function>(M.getOrInsertFunction("f", FTy));
  /external/llvm/include/llvm/Analysis/
CallGraph.h 136 /// getOrInsertFunction - This method is identical to calling operator[], but
139 CallGraphNode *getOrInsertFunction(const Function *F);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 371 F->getParent()->getOrInsertFunction(buffer, F->getFunctionType()));
662 getOrInsertFunction(llvm::StringRef(name), funcType));
827 getOrInsertFunction(llvm::StringRef(name), funcType));
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 371 F->getParent()->getOrInsertFunction(buffer, F->getFunctionType()));
662 getOrInsertFunction(llvm::StringRef(name), funcType));
827 getOrInsertFunction(llvm::StringRef(name), funcType));
    [all...]

Completed in 1106 milliseconds

1 2