Home
last modified time | relevance | path

Searched refs:FunctionId (Results 1 – 22 of 22) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h17 class FunctionId {
19 FunctionId() : Index(0) {} in FunctionId() function
21 explicit FunctionId(uint32_t Index) : Index(Index) {} in FunctionId() function
29 inline bool operator==(const FunctionId &A, const FunctionId &B) {
33 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
37 inline bool operator<(const FunctionId &A, const FunctionId &B) {
41 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
45 inline bool operator>(const FunctionId &A, const FunctionId &B) {
49 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.h52 uint32_t GetCounter(size_t FunctionId, size_t BasicBlockId) { in GetCounter() argument
53 auto It = Functions.find(FunctionId); in GetCounter()
62 uint32_t GetNumberOfBlocks(size_t FunctionId) { in GetNumberOfBlocks() argument
63 auto It = Functions.find(FunctionId); in GetNumberOfBlocks()
69 uint32_t GetNumberOfCoveredBlocks(size_t FunctionId) { in GetNumberOfCoveredBlocks() argument
70 auto It = Functions.find(FunctionId); in GetNumberOfCoveredBlocks()
H A DFuzzerDataFlowTrace.cpp48 size_t FunctionId = 0; in AppendCoverage() local
49 SS >> FunctionId; in AppendCoverage()
51 FunctionsWithDFT.insert(FunctionId); in AppendCoverage()
68 auto It = Functions.find(FunctionId); in AppendCoverage()
71 ? Functions.insert({FunctionId, std::vector<uint32_t>(NumBlocks)}) in AppendCoverage()
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCCodeView.h40 uint32_t FunctionId; variable
51 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
60 unsigned getFunctionId() const { return FunctionId; } in getFunctionId()
76 void setFunctionId(unsigned FID) { FunctionId = FID; } in setFunctionId()
172 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
H A DMCObjectStreamer.h172 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
175 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
H A DMCStreamer.h948 virtual bool emitCVFuncIdDirective(unsigned FunctionId);
952 virtual bool emitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
957 virtual void emitCVLocDirective(unsigned FunctionId, unsigned FileNo,
963 virtual void emitCVLinetableDirective(unsigned FunctionId,
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCObjectStreamer.cpp583 void MCObjectStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
588 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
594 getContext().getCVContext().recordCVLoc(getContext(), LineSym, FunctionId, in emitCVLocDirective()
599 void MCObjectStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
602 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in emitCVLinetableDirective()
604 this->MCStreamer::emitCVLinetableDirective(FunctionId, Begin, End); in emitCVLinetableDirective()
H A DMCAsmStreamer.cpp289 bool emitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
292 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
295 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1716 bool MCAsmStreamer::emitCVInlineSiteIdDirective(unsigned FunctionId, in emitCVInlineSiteIdDirective() argument
1721 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in emitCVInlineSiteIdDirective()
1723 return MCStreamer::emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in emitCVInlineSiteIdDirective()
1727 void MCAsmStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
1732 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
1735 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in emitCVLocDirective()
1751 void MCAsmStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
[all …]
H A DMCStreamer.cpp301 bool MCStreamer::emitCVFuncIdDirective(unsigned FunctionId) { in emitCVFuncIdDirective() argument
302 return getContext().getCVContext().recordFunctionId(FunctionId); in emitCVFuncIdDirective()
305 bool MCStreamer::emitCVInlineSiteIdDirective(unsigned FunctionId, in emitCVInlineSiteIdDirective() argument
316 FunctionId, IAFunc, IAFile, IALine, IACol); in emitCVInlineSiteIdDirective()
319 void MCStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
346 void MCStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
H A DMCCodeView.cpp132 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument
136 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DAsmParser.cpp376 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3775 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3779 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
3781 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3802 int64_t FunctionId; in parseDirectiveCVFuncId() local
3804 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
3807 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3823 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3830 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3866 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
[all …]
H A DMasmParser.cpp671 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
5078 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
5082 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
5084 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
5105 int64_t FunctionId; in parseDirectiveCVFuncId() local
5107 if (parseCVFunctionId(FunctionId, ".cv_func_id") || parseEOL()) in parseDirectiveCVFuncId()
5110 if (!getStreamer().emitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
5126 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
5133 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
5169 if (!getStreamer().emitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
[all …]
/openbsd-src/gnu/llvm/llvm/docs/
H A DExtensions.rst479 ``.cv_func_id`` *FunctionId*
488 …``.cv_inline_site_id`` *FunctionId* ``within`` *Function* ``inlined_at`` *FileNumber Line* [ *Colu…
498 …``.cv_loc`` *FunctionId FileNumber* [ *Line* ] [ *Column* ] [ *prologue_end* ] [ ``is_stmt`` *valu…
503 ``.cv_linetable`` *FunctionId* ``,`` *FunctionStart* ``,`` *FunctionEnd*
/openbsd-src/distrib/sets/lists/comp/
H A Dclang.amd641529 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.macppc1528 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.loongson1528 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.octeon1528 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.arm641529 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.powerpc641527 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.armv71527 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.i3861527 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h
H A Dclang.sparc641528 ./usr/include/llvm/DebugInfo/CodeView/FunctionId.h