Searched refs:FnName (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DProfilingUtils.h27 void InsertProfilingInitCall(Function *MainFn, const char *FnName,
H A DProfilingUtils.cpp24 void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName, argument
33 Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp73 const char* FnName,
80 Result.method_name = const_cast<char*>(FnName);
71 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp450 std::string FnName; local
459 FnName = IdentifierStr;
467 FnName = "unary";
468 FnName += (char)CurTok;
476 FnName = "binary";
477 FnName += (char)CurTok;
507 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp287 std::string FnName = IdentifierStr;
302 return new PrototypeAST(FnName, ArgNames);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp515 std::string FnName; local
524 FnName = IdentifierStr;
532 FnName = "unary";
533 FnName += (char)CurTok;
541 FnName = "binary";
542 FnName += (char)CurTok;
572 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp299 std::string FnName = IdentifierStr;
314 return new PrototypeAST(FnName, ArgNames);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DMachineInstrBuilder.h130 const MachineInstrBuilder &addExternalSymbol(const char *FnName, argument
132 MI->addOperand(MachineOperand::CreateES(FnName, TargetFlags));
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp306 std::string FnName = IdentifierStr;
321 return new PrototypeAST(FnName, ArgNames);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Analysis/
H A DMemoryBuiltins.cpp96 StringRef FnName = Callee->getName();
98 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
309 StringRef FnName = Callee->getName();
311 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp407 std::string FnName = IdentifierStr;
422 return new PrototypeAST(FnName, ArgNames);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ExecutionEngine/
H A DExecutionEngine.h223 /// defines FnName. This is very slow operation and shouldn't be used for
225 Function *FindFunctionNamed(const char *FnName);
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/
H A DExecutionEngine.cpp132 Function *ExecutionEngine::FindFunctionNamed(const char *FnName) { argument
134 if (Function *F = Modules[i]->getFunction(FnName))

Completed in 218 milliseconds