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

  /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(),
CGExpr.cpp     [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))
  /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/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/examples/Kaleidoscope/MCJIT/cached/
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...]
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/llvm/examples/Kaleidoscope/MCJIT/lazy/
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...]
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/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...]
  /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/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/include/clang/AST/
Expr.h     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 169 IdentifierInfo *FnName = FDecl->getIdentifier();
173 S.Diag(SL, diag::warn_memcpy_chk_overflow) << SR << FnName;
    [all...]

Completed in 347 milliseconds