Searched defs:FuncName (Results 1 - 25 of 31) sorted by path

12

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h58 StringRef FuncName; member in class:clang::ento::CallDescription
65 /// @param FuncName The name of the function that will be matched.
70 CallDescription(StringRef FuncName, unsigned RequiredArgs = NoArgRequirement) argument
71 : II(nullptr), FuncName(FuncName), RequiredArgs(RequiredArgs) {}
74 StringRef getFunctionName() const { return FuncName; }
/external/clang/lib/CodeGen/
H A DCodeGenPGO.h34 std::string FuncName; member in class:clang::CodeGen::CodeGenPGO
92 void emitEmptyCounterMapping(const Decl *D, StringRef FuncName,
/external/clang/lib/Driver/
H A DTools.cpp5235 StringRef FuncName = Arg->getValue(); local
5236 CmdArgs.push_back(Args.MakeArgString("-fno-builtin-" + FuncName));
/external/clang/lib/Frontend/
H A DCompilerInvocation.cpp147 const char *FuncName = Arg->getValue(); local
148 if (Builtin::Context::isBuiltinFunc(FuncName))
149 Values.push_back(FuncName);
/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp4442 StringRef FuncName = FD->getName(); local
4444 SynthesizeBlockLiterals(FunLocStart, FuncName);
4462 std::string FuncName; local
4463 BuildUniqueMethodName(FuncName, MD);
4464 SynthesizeBlockLiterals(FunLocStart, FuncName);
5247 std::string FuncName; local
5250 FuncName = CurFunctionDef->getNameAsString();
5252 BuildUniqueMethodName(FuncName, CurMethodDef);
5254 FuncName = std::string(GlobalVarDecl->getNameAsString());
5266 std::string Func = "__" + FuncName
[all...]
H A DRewriteObjC.cpp3620 StringRef FuncName = FD->getName(); local
3622 SynthesizeBlockLiterals(FunLocStart, FuncName);
3640 std::string FuncName; local
3641 BuildUniqueMethodName(FuncName, MD);
3642 SynthesizeBlockLiterals(FunLocStart, FuncName);
4390 std::string FuncName; local
4393 FuncName = CurFunctionDef->getNameAsString();
4395 BuildUniqueMethodName(FuncName, CurMethodDef);
4397 FuncName = std::string(GlobalVarDecl->getNameAsString());
4401 std::string Tag = "__" + FuncName
[all...]
/external/clang/lib/Sema/
H A DSemaExpr.cpp4621 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName, argument
4624 FunctionName(FuncName) {}
4644 DeclarationName FuncName = FDecl->getDeclName(); local
4648 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName,
4650 llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(),
/external/llvm/include/llvm/ProfileData/
H A DInstrProf.h192 /// name in PGO instrumentation. \c FuncName is the name of the function
194 std::string getPGOFuncNameVarName(StringRef FuncName,
198 /// instrumentation. \c FuncName is the name of the function returned
203 /// instrumentation. /// \c FuncName is the name of the function
457 /// Update the symtab by adding \p FuncName to the table. This interface
459 void addFuncName(StringRef FuncName) { argument
460 auto Ins = NameTab.insert(FuncName);
463 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey()));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp622 std::string FuncName; local
629 FuncName =
633 if (FuncName.empty())
634 FuncName = GlobalValue::getRealLinkageName(GV->getName());
637 OS.AddComment("Symbol subsection for " + Twine(FuncName));
680 emitNullTerminatedSymbolName(OS, FuncName);
/external/llvm/lib/MC/
H A DMCContext.cpp139 MCSymbol *MCContext::getOrCreateFrameAllocSymbol(StringRef FuncName, argument
141 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
145 MCSymbol *MCContext::getOrCreateParentFrameOffsetSymbol(StringRef FuncName) { argument
146 return getOrCreateSymbol(Twine(MAI->getPrivateGlobalPrefix()) + FuncName +
150 MCSymbol *MCContext::getOrCreateLSDASymbol(StringRef FuncName) { argument
152 FuncName);
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp399 StringRef FuncName; local
400 if (Error Err = CFR->template getFuncName<Endian>(ProfileNames, FuncName))
402 Records.emplace_back(Version, FuncName, FuncHash, Mapping, FilenamesBegin,
/external/llvm/lib/ProfileData/
H A DInstrProf.cpp172 // \p FuncName is the string used as profile lookup key for the function. A
174 std::string getPGOFuncNameVarName(StringRef FuncName, argument
177 VarName += FuncName;
/external/llvm/lib/Target/Sparc/
H A DLeonPasses.cpp729 StringRef FuncName = MO.getGlobal()->getName(); local
730 if (FuncName.compare_lower("fesetround") == 0) {
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp275 std::string &FuncName = BlocksToNotExtractByName.back().first; local
279 if (F.getName() != FuncName) continue;
/external/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp243 std::string FuncName; member in class:__anon13444::FuncPGOInstrumentation
260 MST.dumpEdges(dbgs(), Twine("Dump Function ") + FuncName + " Hash: " +
268 FuncName = getPGOFuncName(F);
282 FuncNameVar = createPGOFuncNameVar(F, FuncName);
513 // Return FuncName string;
514 const std::string getFuncName() const { return FuncInfo.FuncName; }
590 PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash);
760 createPGOFuncNameMetadata(F, FuncInfo.FuncName);
/external/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp21 StringRef FuncName = Function.Name; local
22 return FuncName.find(Name) != StringRef::npos;
/external/llvm/unittests/Linker/
H A DLinkModulesTest.cpp133 static Module *getExternal(LLVMContext &Ctx, StringRef FuncName) { argument
140 Function::Create(FTy, Function::ExternalLinkage, FuncName, M);
/external/llvm/unittests/MI/
H A DLiveIntervalTest.cpp54 const TargetMachine &TM, StringRef MIRCode, const char *FuncName) {
67 Function *F = M->getFunction(FuncName);
52 parseMIR(LLVMContext &Context, legacy::PassManagerBase &PM, std::unique_ptr<MIRParser> &MIR, const TargetMachine &TM, StringRef MIRCode, const char *FuncName) argument
/external/llvm/unittests/ProfileData/
H A DCoverageMappingTest.cpp140 void startFunction(StringRef FuncName, uint64_t Hash) { argument
141 InputFunctions.emplace_back(FuncName.str(), Hash);
/external/llvm/utils/TableGen/
H A DAttributes.cpp118 std::string FuncName = Rule->getValueAsString("CompatFunc"); local
119 OS << " Ret &= " << FuncName << "(Caller, Callee);\n"; local
132 std::string FuncName = Rule->getValueAsString("MergeFunc"); local
133 OS << " " << FuncName << "(Caller, Callee);\n"; local
H A DDFAPacketizerEmitter.cpp718 std::string FuncName = FuncList[k]->getName(); local
719 unsigned FuncResources = FUNameToBitsMap[FuncName];
720 DEBUG(dbgs() << " " << FuncName
/external/robolectric/v3/libs/
H A Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ximpleware/extended/ com/ximpleware/extended/parser/ ...
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVUtil.cpp723 addCallInst(Module *M, StringRef FuncName, Type *RetTy, ArrayRef<Value *> Args, argument
728 FuncName, Mangle, Attrs, TakeFuncName);
736 addCallInstSPIRV(Module *M, StringRef FuncName, Type *RetTy, ArrayRef<Value *> Args, argument
739 return addCallInst(M, FuncName, RetTy, Args, Attrs, Pos, &BtnInfo,
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DLoopExtractor.cpp265 std::string &FuncName = BlocksToNotExtractByName.back().first; local
270 if (F.getName() != FuncName) continue;
/external/swiftshader/third_party/subzero/src/
H A DIceASanInstrumentation.cpp77 std::string FuncName = Func->getFunctionName().toStringOrEmpty(); local
78 return FuncName == "" ||
79 (FuncBlackList.count(FuncName) == 0 && FuncName.find(ASanPrefix) != 0);

Completed in 1755 milliseconds

12