Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DFunctionId.h18 class FunctionId {
20 FunctionId() : Index(0) {} in FunctionId() function
22 explicit FunctionId(uint32_t Index) : Index(Index) {} in FunctionId() function
30 inline bool operator==(const FunctionId &A, const FunctionId &B) {
34 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
38 inline bool operator<(const FunctionId &A, const FunctionId &B) {
42 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
46 inline bool operator>(const FunctionId &A, const FunctionId &B) {
50 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCCodeView.h34 uint32_t FunctionId; variable
45 : Label(Label), FunctionId(functionid), FileNum(fileNum), Line(line), in MCCVLoc()
54 unsigned getFunctionId() const { return FunctionId; } in getFunctionId()
70 void setFunctionId(unsigned FID) { FunctionId = FID; } in setFunctionId()
166 void recordCVLoc(MCContext &Ctx, const MCSymbol *Label, unsigned FunctionId,
H A DMCObjectStreamer.h150 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
153 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
H A DMCStreamer.h826 virtual bool EmitCVFuncIdDirective(unsigned FunctionId);
830 virtual bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
835 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo,
841 virtual void EmitCVLinetableDirective(unsigned FunctionId,
/freebsd-12.1/sys/contrib/dev/acpica/components/hardware/
H A Dhwxfsleep.c173 UINT32 FunctionId);
396 UINT32 FunctionId) in ACPI_EXPORT_SYMBOL()
399 ACPI_SLEEP_FUNCTIONS *SleepFunctions = &AcpiSleepDispatch[FunctionId]; in ACPI_EXPORT_SYMBOL()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCObjectStreamer.cpp463 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
468 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective()
474 getContext().getCVContext().recordCVLoc(getContext(), LineSym, FunctionId, in EmitCVLocDirective()
479 void MCObjectStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
482 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in EmitCVLinetableDirective()
484 this->MCStreamer::EmitCVLinetableDirective(FunctionId, Begin, End); in EmitCVLinetableDirective()
H A DMCAsmStreamer.cpp247 bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
250 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
253 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1313 bool MCAsmStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
1318 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in EmitCVInlineSiteIdDirective()
1320 return MCStreamer::EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in EmitCVInlineSiteIdDirective()
1329 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective()
1332 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in EmitCVLocDirective()
1348 void MCAsmStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
1351 OS << "\t.cv_linetable\t" << FunctionId << ", "; in EmitCVLinetableDirective()
[all …]
H A DMCStreamer.cpp271 bool MCStreamer::EmitCVFuncIdDirective(unsigned FunctionId) { in EmitCVFuncIdDirective() argument
272 return getContext().getCVContext().recordFunctionId(FunctionId); in EmitCVFuncIdDirective()
275 bool MCStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
286 FunctionId, IAFunc, IAFile, IALine, IACol); in EmitCVInlineSiteIdDirective()
289 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
316 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()
/freebsd-12.1/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3577 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3583 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3604 int64_t FunctionId; in parseDirectiveCVFuncId() local
3606 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId()
3611 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3627 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3634 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3687 int64_t FunctionId, FileNumber; in parseDirectiveCVLoc() local
3688 if (parseCVFunctionId(FunctionId, ".cv_loc") || in parseDirectiveCVLoc()
3748 int64_t FunctionId; in parseDirectiveCVLinetable() local
[all …]
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dactbl3.h635 UINT32 FunctionId; member
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmtbinfo3.c496 {ACPI_DMT_UINT32, ACPI_TPM211_OFFSET (FunctionId), "Function ID", 0},