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

1 2 3 4 5

  /external/llvm/lib/Fuzzer/
FuzzerExtFunctionsDlsym.cpp 23 static T GetFnPtr(const char *FnName, bool WarnIfMissing) {
25 void *Fn = dlsym(RTLD_DEFAULT, FnName);
29 Printf("WARNING: Failed to find function \"%s\".", FnName);
FuzzerExtFunctionsWeak.cpp 32 static void CheckFnPtr(void *FnPtr, const char *FnName, bool WarnIfMissing) {
34 Printf("WARNING: Failed to find function \"%s\".\n", FnName);
  /external/swiftshader/third_party/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),
  /test/vts/drivers/hal/libmeasurement/
vts_measurement.cpp 60 static void MissingWeakApiFunction(const char* FnName) {
61 cerr << "ERROR: " << FnName << " is not defined. Exiting.\n"
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 519 std::string FnName;
528 FnName = IdentifierStr;
536 FnName = "unary";
537 FnName += (char)CurTok;
545 FnName = "binary";
546 FnName += (char)CurTok;
576 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
657 Function *getFunction(const std::string FnName);
730 Function *MCJITHelper::getFunction(const std::string FnName) {
735 Function *F = (*it)->getFunction(FnName);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 559 std::string FnName;
568 FnName = IdentifierStr;
576 FnName = "unary";
577 FnName += (char)CurTok;
585 FnName = "binary";
586 FnName += (char)CurTok;
616 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
781 virtual Function *getFunction(const std::string FnName) = 0;
807 Function *getFunction(const std::string FnName);
887 Function *MCJITHelper::getFunction(const std::string FnName) {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 517 std::string FnName;
526 FnName = IdentifierStr;
534 FnName = "unary";
535 FnName += (char)CurTok;
543 FnName = "binary";
544 FnName += (char)CurTok;
574 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
655 Function *getFunction(const std::string FnName);
720 Function *MCJITHelper::getFunction(const std::string FnName) {
725 Function *F = (*it)->getFunction(FnName);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 540 std::string FnName;
549 FnName = IdentifierStr;
557 FnName = "unary";
558 FnName += (char)CurTok;
566 FnName = "binary";
567 FnName += (char)CurTok;
597 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
744 Function *getFunction(const std::string FnName);
819 Function *MCJITHelper::getFunction(const std::string FnName) {
824 Function *F = (*it)->getFunction(FnName);
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/swiftshader/third_party/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/swiftshader/third_party/subzero/src/
WasmTranslator.cpp 738 const auto FnName = Ctx->getGlobalString("llvm.cttz.i32");
740 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic);
745 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info);
764 const auto FnName = Ctx->getGlobalString("llvm.fabs.f32");
766 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic);
771 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info);
778 const auto FnName = Ctx->getGlobalString("llvm.fabs.f64");
780 const auto *Info = Ctx->getIntrinsicsInfo().find(FnName, BadInstrinsic);
785 Func, 1, Dest, Ctx->getConstantExternSym(FnName), Info->Info);
792 const auto FnName = Ctx->getGlobalString("env$$floor_f")
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 199 SmallString<256> FnName;
201 llvm::raw_svector_ostream Out(FnName);
206 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(ty, FnName.str(),
332 SmallString<256> FnName;
334 llvm::raw_svector_ostream Out(FnName);
340 CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 445 Function *MCJIT::FindFunctionNamedInModulePtrSet(const char *FnName,
449 Function *F = (*I)->getFunction(FnName);
469 Function *MCJIT::FindFunctionNamed(const char *FnName) {
471 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
473 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
476 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
MCJIT.h 198 Function *FindFunctionNamedInModulePtrSet(const char *FnName,
223 /// defines FnName. This is very slow operation and shouldn't be used for
225 Function *FindFunctionNamed(const char *FnName) override;
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 78 const char* FnName,
85 Result.method_name = const_cast<char*>(FnName);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 287 std::string FnName = IdentifierStr;
302 return new PrototypeAST(FnName, ArgNames);
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineInstrBuilder.h 121 const MachineInstrBuilder &addExternalSymbol(const char *FnName,
123 MI->addOperand(MachineOperand::CreateES(FnName, TargetFlags));
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 593 std::string FnName;
602 FnName = IdentifierStr;
610 FnName = "unary";
611 FnName += (char)CurTok;
619 FnName = "binary";
620 FnName += (char)CurTok;
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 593 std::string FnName;
602 FnName = IdentifierStr;
610 FnName = "unary";
611 FnName += (char)CurTok;
619 FnName = "binary";
620 FnName += (char)CurTok;
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 593 std::string FnName;
602 FnName = IdentifierStr;
610 FnName = "unary";
611 FnName += (char)CurTok;
619 FnName = "binary";
620 FnName += (char)CurTok;
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 581 std::string FnName;
590 FnName = IdentifierStr;
598 FnName = "unary";
599 FnName += (char)CurTok;
607 FnName = "binary";
608 FnName += (char)CurTok;
638 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 596 std::string FnName;
605 FnName = IdentifierStr;
613 FnName = "unary";
614 FnName += (char)CurTok;
622 FnName = "binary";
623 FnName += (char)CurTok;
653 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 522 std::string FnName;
531 FnName = IdentifierStr;
539 FnName = "unary";
540 FnName += (char)CurTok;
548 FnName = "binary";
549 FnName += (char)CurTok;
579 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 593 std::string FnName;
602 FnName = IdentifierStr;
610 FnName = "unary";
611 FnName += (char)CurTok;
619 FnName = "binary";
620 FnName += (char)CurTok;
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]

Completed in 416 milliseconds

1 2 3 4 5