Searched refs:FunctionName (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/lib/Basic/
H A DSanitizerBlacklist.cpp32 bool SanitizerBlacklist::isBlacklistedFunction(StringRef FunctionName) const {
33 return SCL->inSection("fun", FunctionName);
/external/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp70 std::string FunctionName = Info.FunctionName; local
71 if (FunctionName == kDILineInfoBadString)
72 FunctionName = kBadString;
76 OS << Prefix << FunctionName << Delimiter;
H A DSymbolizableObjectFile.cpp214 std::string FunctionName; local
217 FunctionName, Start, Size)) {
218 LineInfo.FunctionName = FunctionName;
237 std::string FunctionName; local
240 FunctionName, Start, Size)) {
242 ->FunctionName = FunctionName;
/external/clang/include/clang/Basic/
H A DSanitizerBlacklist.h37 bool isBlacklistedFunction(StringRef FunctionName) const;
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.h53 StringRef FunctionName; member in struct:llvm::InstantiationView
57 InstantiationView(StringRef FunctionName, unsigned Line, argument
59 : FunctionName(FunctionName), Line(Line), View(std::move(View)) {}
61 : FunctionName(std::move(RHS.FunctionName)), Line(std::move(RHS.Line)),
64 FunctionName = std::move(RHS.FunctionName);
274 void addInstantiation(StringRef FunctionName, unsigned Line,
H A DSourceCoverageView.cpp131 StringRef FunctionName, unsigned Line,
133 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View));
130 addInstantiation( StringRef FunctionName, unsigned Line, std::unique_ptr<SourceCoverageView> View) argument
/external/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h35 StringRef FunctionName; member in struct:llvm::coverage::CoverageMappingRecord
154 StringRef FunctionName; member in struct:llvm::coverage::BinaryCoverageReader::ProfileMappingRecord
160 ProfileMappingRecord(CovMapVersion Version, StringRef FunctionName, argument
163 : Version(Version), FunctionName(FunctionName),
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h31 std::string FunctionName; member in struct:llvm::DILineInfo
36 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
40 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
/external/llvm/lib/Support/
H A DSignals.cpp159 StringRef FunctionName = *CurLine++;
160 if (FunctionName.empty())
163 if (!FunctionName.startswith("??"))
164 OS << FunctionName << ' '; local
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DSignals.cpp159 StringRef FunctionName = *CurLine++;
160 if (FunctionName.empty())
163 if (!FunctionName.startswith("??"))
164 OS << FunctionName << ' '; local
/external/llvm/test/tools/llvm-readobj/ARM/
H A Dunwind.s154 @ CHECK: FunctionName: __personality
170 @ CHECK: FunctionName: personality0
186 @ CHECK: FunctionName: personality1
206 @ CHECK: FunctionName: custom_personality
219 @ CHECK: FunctionName: opcodes
234 @ CHECK: FunctionName: function0
245 @ CHECK: FunctionName: function1
252 @ CHECK: FunctionName: function2
/external/llvm/tools/llvm-link/
H A Dllvm-link.cpp227 std::string FunctionName = Import.substr(0, Idx); local
239 Function *F = SrcModule.getFunction(FunctionName);
242 << FunctionName << " from " << FileName << "\n";
249 errs() << "Ignoring import request for weak-any function " << FunctionName
255 errs() << "Importing " << FunctionName << " from " << FileName << "\n";
/external/clang/lib/CodeGen/
H A DCoverageMappingGen.h71 void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,
/external/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp211 std::string FunctionName, BlockName; local
212 In >> FunctionName; local
216 std::make_pair(FunctionName, BlockName));
/external/llvm/tools/sancov/
H A Dsancov.cc199 return std::tie(FileName, FunctionName) <
200 std::tie(RHS.FileName, RHS.FunctionName);
204 std::string FunctionName; member in struct:__anon13666::FileFn
209 return std::tie(Loc, FunctionName) < std::tie(RHS.Loc, RHS.FunctionName);
213 std::string FunctionName; member in struct:__anon13666::FnLoc
258 if (DefaultBlacklist && DefaultBlacklist->inSection("fun", AI.FunctionName))
262 if (UserBlacklist && UserBlacklist->inSection("fun", AI.FunctionName))
732 Fns.insert(FileFn{AI.FileName, AI.FunctionName});
740 return FileFn{AI.FileName, AI.FunctionName};
806 std::string FunctionName = Loc.FunctionName; local
954 std::string FunctionName = P.first.FunctionName; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DLoopExtractor.cpp204 std::string FunctionName, BlockName; local
205 In >> FunctionName; local
209 std::make_pair(FunctionName, BlockName));
/external/swiftshader/third_party/subzero/src/
H A DIceAssembler.h327 GlobalString getFunctionName() const { return FunctionName; }
328 void setFunctionName(GlobalString NewName) { FunctionName = NewName; }
348 /// FunctionName and IsInternal are transferred from the original Cfg object,
351 GlobalString FunctionName; member in class:Ice::Assembler
H A DIceCfg.h61 void setFunctionName(GlobalString Name) { FunctionName = Name; }
62 GlobalString getFunctionName() const { return FunctionName; }
318 GlobalString FunctionName; member in class:Ice::Cfg
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h370 /// \brief AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName) defines
375 /// \c SpecificType::FunctionName. The existence of such a function determines
377 #define AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \
380 static QualType (T::*value())() const { return &T::FunctionName; } \
389 /// \brief AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName) works
391 #define AST_TYPELOC_TRAVERSE_MATCHER(MatcherName, FunctionName, ReturnTypesF) \
394 static TypeLoc (T::*value())() const { return &T::FunctionName##Loc; } \
402 AST_TYPE_TRAVERSE_MATCHER(MatcherName, FunctionName##Type, ReturnTypesF)
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp456 std::string &FunctionName) {
469 FunctionName = Name;
482 getFunctionNameForAddress(CU, Address, Spec.FNKind, Result.FunctionName);
499 std::string FunctionName = "<invalid>";
500 getFunctionNameForAddress(CU, Address, Spec.FNKind, FunctionName);
506 Result.FunctionName = FunctionName;
524 Result.FunctionName = FunctionName;
566 Frame.FunctionName
454 getFunctionNameForAddress(DWARFCompileUnit *CU, uint64_t Address, FunctionNameKind Kind, std::string &FunctionName) argument
[all...]
/external/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp38 Result.FunctionName = getFunctionName(Address, Specifier.FNKind);
/external/llvm/tools/sanstats/
H A Dsanstats.cpp82 << LineInfo->FunctionName << ' ';
/external/v8/src/
H A Daccessors.h31 V(FunctionName) \
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h278 void setName(StringRef FunctionName) { Name = FunctionName; } argument
/external/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp261 auto FunctionName = MF->Name;
262 if (Functions.find(FunctionName) != Functions.end())
263 return error(Twine("redefinition of machine function '") + FunctionName +
265 Functions.insert(std::make_pair(FunctionName, std::move(MF)));
267 createDummyFunction(FunctionName, M);
268 else if (!M.getFunction(FunctionName))
269 return error(Twine("function '") + FunctionName +

Completed in 7644 milliseconds

123