Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
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) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
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,
DMCObjectStreamer.h152 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
155 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
DMCStreamer.h860 virtual bool EmitCVFuncIdDirective(unsigned FunctionId);
864 virtual bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
869 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo,
875 virtual void EmitCVLinetableDirective(unsigned FunctionId,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCObjectStreamer.cpp514 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
519 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective()
525 getContext().getCVContext().recordCVLoc(getContext(), LineSym, FunctionId, in EmitCVLocDirective()
530 void MCObjectStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
533 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in EmitCVLinetableDirective()
535 this->MCStreamer::EmitCVLinetableDirective(FunctionId, Begin, End); in EmitCVLinetableDirective()
DMCAsmStreamer.cpp251 bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
254 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
257 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1373 bool MCAsmStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
1378 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in EmitCVInlineSiteIdDirective()
1380 return MCStreamer::EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in EmitCVInlineSiteIdDirective()
1384 void MCAsmStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
1389 if (!checkCVLocSection(FunctionId, FileNo, Loc)) in EmitCVLocDirective()
1392 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in EmitCVLocDirective()
1408 void MCAsmStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
[all …]
DMCStreamer.cpp278 bool MCStreamer::EmitCVFuncIdDirective(unsigned FunctionId) { in EmitCVFuncIdDirective() argument
279 return getContext().getCVContext().recordFunctionId(FunctionId); in EmitCVFuncIdDirective()
282 bool MCStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
293 FunctionId, IAFunc, IAFile, IALine, IACol); in EmitCVInlineSiteIdDirective()
296 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
323 void MCStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
DMCCodeView.cpp131 unsigned FunctionId, unsigned FileNo, in recordCVLoc() argument
135 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp355 bool parseCVFunctionId(int64_t &FunctionId, StringRef DirectiveName);
3628 bool AsmParser::parseCVFunctionId(int64_t &FunctionId, in parseCVFunctionId() argument
3632 parseIntToken(FunctionId, "expected function id in '" + DirectiveName + in parseCVFunctionId()
3634 check(FunctionId < 0 || FunctionId >= UINT_MAX, Loc, in parseCVFunctionId()
3655 int64_t FunctionId; in parseDirectiveCVFuncId() local
3657 if (parseCVFunctionId(FunctionId, ".cv_func_id") || in parseDirectiveCVFuncId()
3662 if (!getStreamer().EmitCVFuncIdDirective(FunctionId)) in parseDirectiveCVFuncId()
3678 int64_t FunctionId; in parseDirectiveCVInlineSiteId() local
3685 if (parseCVFunctionId(FunctionId, ".cv_inline_site_id")) in parseDirectiveCVInlineSiteId()
3722 if (!getStreamer().EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in parseDirectiveCVInlineSiteId()
[all …]