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

1 2

  /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...]
toy-jit.cpp 518 std::string FnName;
527 FnName = IdentifierStr;
535 FnName = "unary";
536 FnName += (char)CurTok;
544 FnName = "binary";
545 FnName += (char)CurTok;
575 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [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...]
toy-jit.cpp 533 std::string FnName;
542 FnName = IdentifierStr;
550 FnName = "unary";
551 FnName += (char)CurTok;
559 FnName = "binary";
560 FnName += (char)CurTok;
590 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 556 std::string FnName;
565 FnName = IdentifierStr;
573 FnName = "unary";
574 FnName += (char)CurTok;
582 FnName = "binary";
583 FnName += (char)CurTok;
613 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
771 std::string FnName = MakeLegalFunctionName(std::string("unary")+Opcode);
772 if (Function *F = C.getPrototype(FnName))
817 std::string FnName = MakeLegalFunctionName(std::string("binary")+Op)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 555 std::string FnName;
564 FnName = IdentifierStr;
572 FnName = "unary";
573 FnName += (char)CurTok;
581 FnName = "binary";
582 FnName += (char)CurTok;
612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
770 std::string FnName = MakeLegalFunctionName(std::string("unary")+Opcode);
771 if (Function *F = C.getPrototype(FnName))
816 std::string FnName = MakeLegalFunctionName(std::string("binary")+Op)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 555 std::string FnName;
564 FnName = IdentifierStr;
572 FnName = "unary";
573 FnName += (char)CurTok;
581 FnName = "binary";
582 FnName += (char)CurTok;
612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
770 std::string FnName = MakeLegalFunctionName(std::string("unary")+Opcode);
771 if (Function *F = C.getPrototype(FnName))
816 std::string FnName = MakeLegalFunctionName(std::string("binary")+Op)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 555 std::string FnName;
564 FnName = IdentifierStr;
572 FnName = "unary";
573 FnName += (char)CurTok;
581 FnName = "binary";
582 FnName += (char)CurTok;
612 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames), Kind != 0,
770 std::string FnName = MakeLegalFunctionName(std::string("unary")+Opcode);
771 if (Function *F = C.getPrototype(FnName))
816 std::string FnName = MakeLegalFunctionName(std::string("binary")+Op)
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 191 SmallString<256> FnName;
193 llvm::raw_svector_ostream Out(FnName);
198 llvm::Function *fn = CGM.CreateGlobalInitOrDestructFunction(ty, FnName.str(),
313 SmallString<256> FnName;
315 llvm::raw_svector_ostream Out(FnName);
321 CreateGlobalInitOrDestructFunction(FTy, FnName.str(),
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 431 Function *MCJIT::FindFunctionNamedInModulePtrSet(const char *FnName,
435 Function *F = (*I)->getFunction(FnName);
455 Function *MCJIT::FindFunctionNamed(const char *FnName) {
457 FnName, OwnedModules.begin_added(), OwnedModules.end_added());
459 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_loaded(),
462 F = FindFunctionNamedInModulePtrSet(FnName, OwnedModules.begin_finalized(),
MCJIT.h 199 Function *FindFunctionNamedInModulePtrSet(const char *FnName,
224 /// defines FnName. This is very slow operation and shouldn't be used for
226 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/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 510 std::string FnName;
519 FnName = IdentifierStr;
527 FnName = "unary";
528 FnName += (char)CurTok;
536 FnName = "binary";
537 FnName += (char)CurTok;
567 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 580 std::string FnName;
589 FnName = IdentifierStr;
597 FnName = "unary";
598 FnName += (char)CurTok;
606 FnName = "binary";
607 FnName += (char)CurTok;
637 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 365 std::string FnName = mangle(SubF->getName(), SrcM.getDataLayout());
366 auto FnBodySym = BaseLayer.findSymbolIn(PartH, FnName, false);
377 if (auto EC = LMResources.StubsMgr->updatePointer(FnName, FnBodyAddr))
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 329 std::string FnName = IdentifierStr;
344 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 722 std::string FnName;
733 FnName = IdentifierStr;
741 FnName = "unary";
742 FnName += (char)CurTok;
750 FnName = "binary";
751 FnName += (char)CurTok;
781 return llvm::make_unique<PrototypeAST>(FnLoc, FnName, ArgNames, Kind != 0,
    [all...]
  /frameworks/compile/slang/
slang_rs_export_reduce.cpp 682 const std::string &FnName;
697 << S.DiagnosticDescription(ResultInfo.FnKey, ResultInfo.FnName)
703 << S.DiagnosticDescription(ResultInfo.FnKey, ResultInfo.FnName)
709 << S.DiagnosticDescription(ResultInfo.FnKey, ResultInfo.FnName)
731 << S.DiagnosticDescription(ResultInfo.FnKey, ResultInfo.FnName)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 332 std::string FnName = IdentifierStr;
347 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 338 std::string FnName = IdentifierStr;
353 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 136 const MachineInstrBuilder &addExternalSymbol(const char *FnName,
138 MI->addOperand(*MF, MachineOperand::CreateES(FnName, TargetFlags));
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 113 StringRef FnName = Callee->getName();
115 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))
311 StringRef FnName = Callee->getName();
313 if (!TLI || !TLI->getLibFunc(FnName, TLIFn) || !TLI->has(TLIFn))

Completed in 1057 milliseconds

1 2