/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | FunctionId.h | 17 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) {
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
H A D | MCCodeView.h | 33 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 D | MCObjectStreamer.h | 154 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line, 157 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
|
H A D | MCStreamer.h | 903 virtual bool EmitCVFuncIdDirective(unsigned FunctionId); 907 virtual bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc, 912 virtual void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, 918 virtual void emitCVLinetableDirective(unsigned FunctionId,
|
/netbsd-src/sys/external/bsd/acpica/dist/hardware/ |
H A D | hwxfsleep.c | 63 UINT32 FunctionId); 277 * FunctionId - Sleep, WakePrep, or Wake in ACPI_EXPORT_SYMBOL() 289 UINT32 FunctionId) in ACPI_EXPORT_SYMBOL() 292 ACPI_SLEEP_FUNCTIONS *SleepFunctions = &AcpiSleepDispatch[FunctionId]; in ACPI_EXPORT_SYMBOL()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | MCObjectStreamer.cpp | 539 void MCObjectStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument 544 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective() 550 getContext().getCVContext().recordCVLoc(getContext(), LineSym, FunctionId, in emitCVLocDirective() 555 void MCObjectStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument 558 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in emitCVLinetableDirective() 560 this->MCStreamer::emitCVLinetableDirective(FunctionId, Begin, End); in emitCVLinetableDirective()
|
H A D | MCAsmStreamer.cpp | 274 bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc, 277 void emitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line, 280 void emitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart, 1621 bool MCAsmStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument 1626 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in EmitCVInlineSiteIdDirective() 1628 return MCStreamer::EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in EmitCVInlineSiteIdDirective() 1632 void MCAsmStreamer::emitCVLocDirective(unsigned FunctionId, unsigned FileNo, in emitCVLocDirective() argument 1637 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in emitCVLocDirective() 1640 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in emitCVLocDirective() 1656 void MCAsmStreamer::emitCVLinetableDirective(unsigned FunctionId, in emitCVLinetableDirective() argument [all …]
|
H A D | MCStreamer.cpp | 291 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 D | MCCodeView.cpp | 131 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument 135 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
H A D | AsmParser.cpp | 371 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName); 3732 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument 3736 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId() 3738 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId() 3759 int64_t FunctionId; in parseDirectiveCVFuncId() local 3761 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId() 3766 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId() 3782 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local 3789 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId() 3826 if (!getStreamer().EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId() [all …]
|
H A D | MasmParser.cpp | 637 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName); 4790 bool MasmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument 4794 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId() 4796 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId() 4817 int64_t FunctionId; in parseDirectiveCVFuncId() local 4819 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId() 4824 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId() 4840 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local 4847 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId() 4884 if (!getStreamer().EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/ |
H A D | Extensions.rst | 435 ``.cv_func_id`` *FunctionId* 444 …``.cv_inline_site_id`` *FunctionId* ``within`` *Function* ``inlined_at`` *FileNumber Line* [ *Colu… 454 …``.cv_loc`` *FunctionId FileNumber* [ *Line* ] [ *Column* ] [ *prologue_end* ] [ ``is_stmt`` *valu… 459 ``.cv_linetable`` *FunctionId* ``,`` *FunctionStart* ``,`` *FunctionEnd*
|
/netbsd-src/sys/external/bsd/acpica/dist/include/ |
H A D | actbl3.h | 575 UINT32 FunctionId; 553 UINT32 FunctionId; global() member
|
/netbsd-src/sys/external/bsd/acpica/dist/common/ |
H A D | dmtbinfo3.c | 487 {ACPI_DMT_UINT32, ACPI_TPM211_OFFSET (FunctionId), "Function ID", 0},
|