Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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) {
/freebsd-13.1/contrib/llvm-project/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, Vector<uint32_t>(NumBlocks)}) in AppendCoverage()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h33 uint32_t FunctionId; variable
44 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
53 unsigned getFunctionId() const { return FunctionId; } in getFunctionId()
69 void setFunctionId(unsigned FID) { FunctionId = FID; } in setFunctionId()
165 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
H A DMCObjectStreamer.h154 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
157 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
H A DMCStreamer.h910 virtual bool EmitCVFuncIdDirective(unsigned FunctionId);
914 virtual bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
919 virtual void emitCVLocDirective(unsigned FunctionId, unsigned FileNo,
925 virtual void emitCVLinetableDirective(unsigned FunctionId,
/freebsd-13.1/sys/contrib/dev/acpica/components/hardware/
H A Dhwxfsleep.c173 UINT32 FunctionId);
400 UINT32 FunctionId) in ACPI_EXPORT_SYMBOL()
403 ACPI_SLEEP_FUNCTIONS *SleepFunctions = &AcpiSleepDispatch[FunctionId]; in ACPI_EXPORT_SYMBOL()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp534 void MCObjectStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
539 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
545 getContext().getCVContext().recordCVLoc(getContext(), LineSym, FunctionId, in emitCVLocDirective()
550 void MCObjectStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
553 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in emitCVLinetableDirective()
555 this->MCStreamer::emitCVLinetableDirective(FunctionId, Begin, End); in emitCVLinetableDirective()
H A DMCAsmStreamer.cpp278 bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
281 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
284 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1653 bool MCAsmStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
1658 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in EmitCVInlineSiteIdDirective()
1660 return MCStreamer::EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in EmitCVInlineSiteIdDirective()
1669 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective()
1672 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in emitCVLocDirective()
1688 void MCAsmStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
1691 OS << "\t.cv_linetable\t" << FunctionId << ", "; in emitCVLinetableDirective()
[all …]
H A DMCStreamer.cpp291 bool MCStreamer::EmitCVFuncIdDirective(unsigned FunctionId) { in EmitCVFuncIdDirective() argument
292 return getContext().getCVContext().recordFunctionId(FunctionId); in EmitCVFuncIdDirective()
295 bool MCStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
306 FunctionId, IAFunc, IAFile, IALine, IACol); in EmitCVInlineSiteIdDirective()
309 void MCStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument
336 void MCStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument
H A DMCCodeView.cpp131 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument
135 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp371 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3740 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3746 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3767 int64_t FunctionId; in parseDirectiveCVFuncId() local
3769 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId()
3774 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3790 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3797 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3850 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
3851 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
[all …]
H A DMasmParser.cpp5114 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
5120 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
5141 int64_t FunctionId; in parseDirectiveCVFuncId() local
5143 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId()
5148 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
5164 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
5171 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
5224 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
5225 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
5285 int64_t FunctionId; in parseDirectiveCVLinetable() local
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dactbl3.h654 UINT32 FunctionId; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DOrcRPCTPCServer.h461 runWrapperInJIT(JITTargetAddress FunctionId, ArrayRef<char> ArgBuffer) { in runWrapperInJIT() argument
463 FunctionId, in runWrapperInJIT()
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c510 {ACPI_DMT_UINT32, ACPI_TPM211_OFFSET (FunctionId), "Function ID", 0},