HomeSort by relevance Sort by last modified time
    Searched refs:FnName (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 27 void InsertProfilingInitCall(Function *MainFn, const char *FnName,
ProfilingUtils.cpp 24 void llvm::InsertProfilingInitCall(Function *MainFn, const char *FnName,
33 Constant *InitFn = M.getOrInsertFunction(FnName, Type::getInt32Ty(Context),
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 450 std::string FnName;
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);
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 287 std::string FnName = IdentifierStr;
302 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 121 const MachineInstrBuilder &addExternalSymbol(const char *FnName,
123 MI->addOperand(MachineOperand::CreateES(FnName, TargetFlags));
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 515 std::string FnName;
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);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 299 std::string FnName = IdentifierStr;
314 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 306 std::string FnName = IdentifierStr;
321 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 407 std::string FnName = IdentifierStr;
422 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 222 /// defines FnName. This is very slow operation and shouldn't be used for
224 Function *FindFunctionNamed(const char *FnName);
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 133 Function *ExecutionEngine::FindFunctionNamed(const char *FnName) {
135 if (Function *F = Modules[i]->getFunction(FnName))
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGBuiltin.cpp 153 StringRef FnName;
156 case BuiltinType::Float: FnName = "fabsf"; break;
157 case BuiltinType::Double: FnName = "fabs"; break;
158 case BuiltinType::LongDouble: FnName = "fabsl"; break;
164 llvm::Value *Fn = CGF.CGM.CreateRuntimeFunction(FT, FnName);
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 187 milliseconds