Home
last modified time | relevance | path

Searched refs:CodeViewContext (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp28 void CodeViewContext::finish() { in finish()
35 bool CodeViewContext::isValidFileNumber(unsigned FileNumber) const { in isValidFileNumber()
42 bool CodeViewContext::addFile(MCStreamer &OS, unsigned FileNumber, in addFile()
74 MCCVFunctionInfo *CodeViewContext::getCVFunctionInfo(unsigned FuncId) { in getCVFunctionInfo()
82 bool CodeViewContext::recordFunctionId(unsigned FuncId) { in recordFunctionId()
95 bool CodeViewContext::recordInlinedCallSiteId(unsigned FuncId, unsigned IAFunc, in recordInlinedCallSiteId()
126 void CodeViewContext::recordCVLoc(MCContext &Ctx, const MCSymbol *Label, in recordCVLoc()
134 std::pair<StringRef, unsigned> CodeViewContext::addToStringTable(StringRef S) { in addToStringTable()
147 unsigned CodeViewContext::getStringTableOffset(StringRef S) { in getStringTableOffset()
156 void CodeViewContext::emitStringTable(MCObjectStreamer &OS) { in emitStringTable()
[all …]
H A DMCContext.cpp1104 CodeViewContext &MCContext::getCVContext() { in getCVContext()
1106 CVContext.reset(new CodeViewContext(this)); in getCVContext()
H A DMCStreamer.cpp308 CodeViewContext &CVC = getContext().getCVContext(); in checkCVLocSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCCodeView.h49 friend class CodeViewContext;
145 class CodeViewContext {
147 CodeViewContext(MCContext *MCCtx) : MCCtx(MCCtx) {} in CodeViewContext() function
149 CodeViewContext &operator=(const CodeViewContext &other) = delete;
150 CodeViewContext(const CodeViewContext &other) = delete;
H A DMCContext.h48 class CodeViewContext; variable
132 std::unique_ptr<CodeViewContext> CVContext;
422 LLVM_ABI CodeViewContext &getCVContext();
H A DMCSection.h691 friend class CodeViewContext; variable
716 friend class CodeViewContext; variable
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp365 CodeViewContext &CVCtx = OS.getContext().getCVContext(); in emitFrameDataRecord()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp219 CodeViewContext &getCVContext() { return Ctx.getCVContext(); } in getCVContext()