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

1 2

  /external/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 29 std::string FunctionName = Info.FunctionName;
30 if (FunctionName == kDILineInfoBadString)
31 FunctionName = kBadString;
35 OS << Prefix << FunctionName << Delimiter;
SymbolizableObjectFile.cpp 210 std::string FunctionName;
213 FunctionName, Start, Size)) {
214 LineInfo.FunctionName = FunctionName;
233 std::string FunctionName;
236 FunctionName, Start, Size)) {
238 ->FunctionName = FunctionName;
Symbolize.cpp 65 LineInfo.FunctionName = DemangleName(LineInfo.FunctionName, Info);
87 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
  /external/llvm/tools/llvm-cov/
SourceCoverageView.h 53 StringRef FunctionName;
57 InstantiationView(StringRef FunctionName, unsigned Line,
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);
149 void addInstantiation(StringRef FunctionName, unsigned Line,
151 InstantiationSubViews.emplace_back(FunctionName, Line, std::move(View))
    [all...]
  /external/clang/lib/Basic/
SanitizerBlacklist.cpp 32 bool SanitizerBlacklist::isBlacklistedFunction(StringRef FunctionName) const {
33 return SCL->inSection("fun", FunctionName);
  /external/clang/include/clang/Basic/
SanitizerBlacklist.h 37 bool isBlacklistedFunction(StringRef FunctionName) const;
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 33 std::string FunctionName;
38 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
42 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
  /external/llvm/include/llvm/ProfileData/
CoverageMappingReader.h 35 StringRef FunctionName;
144 StringRef FunctionName;
150 ProfileMappingRecord(CoverageMappingVersion Version, StringRef FunctionName,
153 : Version(Version), FunctionName(FunctionName),
  /external/llvm/lib/Support/
Signals.cpp 147 StringRef FunctionName = *CurLine++;
148 if (FunctionName.empty())
151 if (!FunctionName.startswith("??"))
152 OS << FunctionName << ' ';
  /external/llvm/test/tools/llvm-readobj/ARM/
unwind.s 154 @ 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/include/llvm/Object/
FunctionIndexObjectFile.h 99 StringRef FunctionName);
  /external/llvm/tools/llvm-link/
llvm-link.cpp 165 std::string FunctionName = Import.substr(0, Idx);
181 Function *F = M->getFunction(FunctionName);
184 << FunctionName << " from " << FileName << "\n";
191 errs() << "Ignoring import request for weak-any function " << FunctionName
197 errs() << "Importing " << FunctionName << " from " << FileName << "\n";
  /external/llvm/tools/sancov/
sancov.cc 154 return std::tie(Loc, FunctionName) < std::tie(RHS.Loc, RHS.FunctionName);
158 std::string FunctionName;
170 // Compute [FileLoc -> FunctionName] map for given addresses.
189 Fns[Loc] = FrameInfo.FunctionName;
207 std::string FunctionName = P.second;
213 if (!ProcessedFunctions.insert(FunctionName).second)
386 DefaultBlacklist->inSection("fun", FnLoc.FunctionName))
391 if (UserBlacklist && UserBlacklist->inSection("fun", FnLoc.FunctionName))
397 << FnLoc.FunctionName << "\n"
    [all...]
  /external/llvm/lib/Object/
FunctionIndexObjectFile.cpp 112 StringRef FunctionName) {
116 return readFunctionSummary(Object, DiagnosticHandler, FunctionName,
  /external/clang/lib/CodeGen/
CoverageMappingGen.h 70 void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,
  /external/llvm/lib/Transforms/IPO/
LoopExtractor.cpp 211 std::string FunctionName, BlockName;
212 In >> FunctionName;
216 std::make_pair(FunctionName, BlockName));
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 370 /// \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/
DWARFContext.cpp 438 std::string &FunctionName) {
451 FunctionName = Name;
464 getFunctionNameForAddress(CU, Address, Spec.FNKind, Result.FunctionName);
481 std::string FunctionName = "<invalid>";
482 getFunctionNameForAddress(CU, Address, Spec.FNKind, FunctionName);
488 Result.FunctionName = FunctionName;
506 Result.FunctionName = FunctionName;
548 Frame.FunctionName = Name
    [all...]
  /external/llvm/include/llvm/Bitcode/
ReaderWriter.h 87 StringRef FunctionName, std::unique_ptr<FunctionInfoIndex> Index);
  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 36 Result.FunctionName = getFunctionName(Address, Specifier.FNKind);
  /external/v8/src/
accessors.h 27 V(FunctionName) \
  /frameworks/compile/slang/
slang_rs_reflection.h 140 const std::string &FunctionName, int Argc, ...);
144 const std::string &FunctionName, const ArgTy &Args);
  /external/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 256 auto FunctionName = MF->Name;
257 if (Functions.find(FunctionName) != Functions.end())
258 return error(Twine("redefinition of machine function '") + FunctionName +
260 Functions.insert(std::make_pair(FunctionName, std::move(MF)));
262 createDummyFunction(FunctionName, M);
263 else if (!M.getFunction(FunctionName))
264 return error(Twine("function '") + FunctionName +
  /external/llvm/unittests/IR/
PassManagerTest.cpp 161 TestInvalidationFunctionPass(StringRef FunctionName) : Name(FunctionName) {}
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 601 StringRef FunctionName;
607 FunctionName = *FunctionNameOrErr;
619 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
668 StringRef FunctionName;
674 FunctionName = *FunctionNameOrErr;
684 SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));

Completed in 589 milliseconds

1 2