Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DParsedAttrInfo.h58 unsigned IsStmt : 1;
79 IsStmt(0), IsKnownToGCC(0), IsSupportedByPragmaAttribute(0) {} in AttrKind()
85 unsigned IsStmt, unsigned IsKnownToGCC, in ParsedAttrInfo()
92 IsType(IsType), IsStmt(IsStmt), IsKnownToGCC(IsKnownToGCC), in ParsedAttrInfo()
/freebsd-14.2/contrib/llvm-project/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()
177 bool PrologueEnd, bool IsStmt);
H A DMCObjectStreamer.h173 unsigned Column, bool PrologueEnd, bool IsStmt,
H A DMCStreamer.h969 bool PrologueEnd, bool IsStmt,
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDebugLineSectionEmitter.h362 if (IsStatement != Row.IsStmt) { in emitLineTableRows()
363 IsStatement = Row.IsStmt; in emitLineTableRows()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp484 IsStmt = DefaultIsStmt; in reset()
504 << (IsStmt ? " is_stmt" : "") << (BasicBlock ? " basic_block" : "") in dump()
1103 State.Row.IsStmt = !State.Row.IsStmt; in parse()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DParsedAttr.cpp193 bool ParsedAttr::isStmtAttr() const { return getInfo().IsStmt; } in isStmtAttr()
/freebsd-14.2/contrib/llvm-project/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.cpp582 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
593 IsStmt); in emitCVLocDirective()
H A DMCAsmStreamer.cpp298 unsigned Column, bool PrologueEnd, bool IsStmt,
1797 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
1808 if (IsStmt) in emitCVLocDirective()
H A DMCStreamer.cpp322 bool PrologueEnd, bool IsStmt, in emitCVLocDirective() argument
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h176 uint8_t IsStmt : 1, member
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp1113 if (IsStatement != Row.IsStmt) { in emitLineTableRows()
1114 IsStatement = Row.IsStmt; in emitLineTableRows()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3912 uint64_t IsStmt = 0; in parseDirectiveCVLoc() local
3927 IsStmt = ~0ULL; in parseDirectiveCVLoc()
3929 IsStmt = MCE->getValue(); in parseDirectiveCVLoc()
3931 if (IsStmt > 1) in parseDirectiveCVLoc()
3943 ColumnPos, PrologueEnd, IsStmt, StringRef(), in parseDirectiveCVLoc()
H A DMasmParser.cpp5174 uint64_t IsStmt = 0; in parseDirectiveCVLoc() local
5189 IsStmt = ~0ULL; in parseDirectiveCVLoc()
5191 IsStmt = MCE->getValue(); in parseDirectiveCVLoc()
5193 if (IsStmt > 1) in parseDirectiveCVLoc()
5205 ColumnPos, PrologueEnd, IsStmt, StringRef(), in parseDirectiveCVLoc()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVELFReader.cpp744 if (Row.IsStmt) in createLineAndFileRecords()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1258 row.IsStmt, row.BasicBlock, row.PrologueEnd, row.EpilogueBegin, in ParseLineTable()