Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCCodeView.cpp29 CodeViewContext::CodeViewContext() {} in CodeViewContext() function in CodeViewContext
31 CodeViewContext::~CodeViewContext() { in ~CodeViewContext()
40 bool CodeViewContext::isValidFileNumber(unsigned FileNumber) const { in isValidFileNumber()
47 bool CodeViewContext::addFile(MCStreamer &OS, unsigned FileNumber, in addFile()
79 MCCVFunctionInfo *CodeViewContext::getCVFunctionInfo(unsigned FuncId) { in getCVFunctionInfo()
87 bool CodeViewContext::recordFunctionId(unsigned FuncId) { in recordFunctionId()
100 bool CodeViewContext::recordInlinedCallSiteId(unsigned FuncId, unsigned IAFunc, in recordInlinedCallSiteId()
131 MCDataFragment *CodeViewContext::getStringTableFragment() { in getStringTableFragment()
140 std::pair<StringRef, unsigned> CodeViewContext::addToStringTable(StringRef S) { in addToStringTable()
154 unsigned CodeViewContext::getStringTableOffset(StringRef S) { in getStringTableOffset()
[all …]
DMCContext.cpp602 CodeViewContext &MCContext::getCVContext() { in getCVContext()
604 CVContext.reset(new CodeViewContext); in getCVContext()
DMCStreamer.cpp274 CodeViewContext &CVC = getContext().getCVContext(); in EmitCVLocDirective()
/external/llvm/lib/MC/
DMCCodeView.cpp29 CodeViewContext::CodeViewContext() {} in CodeViewContext() function in CodeViewContext
31 CodeViewContext::~CodeViewContext() { in ~CodeViewContext()
40 bool CodeViewContext::isValidFileNumber(unsigned FileNumber) const { in isValidFileNumber()
47 bool CodeViewContext::addFile(unsigned FileNumber, StringRef Filename) { in addFile()
68 MCDataFragment *CodeViewContext::getStringTableFragment() { in getStringTableFragment()
77 StringRef CodeViewContext::addToStringTable(StringRef S) { in addToStringTable()
90 unsigned CodeViewContext::getStringTableOffset(StringRef S) { in getStringTableOffset()
99 void CodeViewContext::emitStringTable(MCObjectStreamer &OS) { in emitStringTable()
121 void CodeViewContext::emitFileChecksums(MCObjectStreamer &OS) { in emitFileChecksums()
148 void CodeViewContext::emitLineTableForFunction(MCObjectStreamer &OS, in emitLineTableForFunction()
[all …]
DMCContext.cpp491 CodeViewContext &MCContext::getCVContext() { in getCVContext()
493 CVContext.reset(new CodeViewContext); in getCVContext()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCCodeView.h28 class CodeViewContext; variable
41 friend class CodeViewContext;
158 class CodeViewContext {
160 CodeViewContext();
161 ~CodeViewContext();
DMCContext.h43 class CodeViewContext; variable
83 std::unique_ptr<CodeViewContext> CVContext;
299 CodeViewContext &getCVContext();
DMCFragment.h608 friend class CodeViewContext; variable
642 friend class CodeViewContext; variable
/external/llvm/include/llvm/MC/
DMCCodeView.h108 class CodeViewContext {
110 CodeViewContext();
111 ~CodeViewContext();
DMCContext.h46 class CodeViewContext; variable
71 std::unique_ptr<CodeViewContext> CVContext;
253 CodeViewContext &getCVContext();
DMCFragment.h503 friend class CodeViewContext;
539 friend class CodeViewContext;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/MCTargetDesc/
DX86WinCOFFTargetStreamer.cpp314 CodeViewContext &CVCtx = OS.getContext().getCVContext(); in emitFrameDataRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp209 CodeViewContext &getCVContext() { return Ctx.getCVContext(); } in getCVContext()