Home
last modified time | relevance | path

Searched refs:IsStmt (Results 1 – 18 of 18) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCCodeView.h45 uint16_t IsStmt : 1; variable
52 Column(column), PrologueEnd(prologueend), IsStmt(isstmt) {} in MCCVLoc()
72 bool isStmt() const { return IsStmt; } in isStmt()
91 void setIsStmt(bool IS) { IsStmt = IS; } in setIsStmt()
174 bool PrologueEnd, bool IsStmt);
H A DMCObjectStreamer.h173 unsigned Column, bool PrologueEnd, bool IsStmt,
H A DMCStreamer.h957 bool PrologueEnd, bool IsStmt,
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DParsedAttr.h62 unsigned IsStmt : 1; member
81 IsStmt(0), IsKnownToGCC(0), IsSupportedByPragmaAttribute(0) {} in AttrKind()
87 unsigned IsStmt, unsigned IsKnownToGCC, in ParsedAttrInfo()
94 IsType(IsType), IsStmt(IsStmt), IsKnownToGCC(IsKnownToGCC), in ParsedAttrInfo()
/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp479 IsStmt = DefaultIsStmt; in reset()
497 << (IsStmt ? " is_stmt" : "") << (BasicBlock ? " basic_block" : "") in dump()
1055 State.Row.IsStmt = !State.Row.IsStmt; in parse()
/llvm-project-15.0.7/clang/lib/Sema/
H A DParsedAttr.cpp203 bool ParsedAttr::isStmtAttr() const { return getInfo().IsStmt; } in isStmtAttr()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCCodeView.cpp134 bool PrologueEnd, bool IsStmt) { in recordCVLoc() argument
136 Label, FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt}); in recordCVLoc()
H A DMCObjectStreamer.cpp583 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
594 IsStmt); in emitCVLocDirective()
H A DMCAsmStreamer.cpp286 unsigned Column, bool PrologueEnd, bool IsStmt,
1697 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
1708 if (IsStmt) in emitCVLocDirective()
H A DMCStreamer.cpp321 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h173 uint8_t IsStmt : 1, member
/llvm-project-15.0.7/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp589 if (IsStatement != Row.IsStmt) { in emitLineTableForUnit()
590 IsStatement = Row.IsStmt; in emitLineTableForUnit()
/llvm-project-15.0.7/bolt/lib/Core/
H A DDebugData.cpp1399 if (Row.IsStmt != Flags) { in emitBinaryDwarfLineTable()
1400 Flags = Row.IsStmt; in emitBinaryDwarfLineTable()
H A DBinaryEmitter.cpp669 unsigned Flags = (DWARF2_FLAG_IS_STMT * CurrentRow.IsStmt) | in emitLineInfo()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDWARFDebugLineTest.cpp636 EXPECT_EQ((*ExpectedLineTable)->Rows[1].IsStmt, 0u);
671 EXPECT_EQ((*ExpectedLineTable)->Rows[2].IsStmt, 1u);
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3903 uint64_t IsStmt = 0; in parseDirectiveCVLoc() local
3918 IsStmt = ~0ULL; in parseDirectiveCVLoc()
3920 IsStmt = MCE->getValue(); in parseDirectiveCVLoc()
3922 if (IsStmt > 1) in parseDirectiveCVLoc()
3934 ColumnPos, PrologueEnd, IsStmt, StringRef(), in parseDirectiveCVLoc()
H A DMasmParser.cpp5192 uint64_t IsStmt = 0; in parseDirectiveCVLoc() local
5207 IsStmt = ~0ULL; in parseDirectiveCVLoc()
5209 IsStmt = MCE->getValue(); in parseDirectiveCVLoc()
5211 if (IsStmt > 1) in parseDirectiveCVLoc()
5223 ColumnPos, PrologueEnd, IsStmt, StringRef(), in parseDirectiveCVLoc()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1154 row.IsStmt, row.BasicBlock, row.PrologueEnd, row.EpilogueBegin, in ParseLineTable()