Home
last modified time | relevance | path

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

/llvm-project/llvm/test/MC/COFF/
H A Dcv-fpo-realign.s26 # CHECK: FrameFunc [
33 # CHECK: FrameFunc [
41 # CHECK: FrameFunc [
49 # CHECK: FrameFunc [
58 # CHECK: FrameFunc [
68 # CHECK: FrameFunc [
H A Dcv-fpo-csrs.s79 # OBJ-NEXT: FrameFunc [
95 # OBJ-NEXT: FrameFunc [
112 # OBJ-NEXT: FrameFunc [
130 # OBJ-NEXT: FrameFunc [
149 # OBJ-NEXT: FrameFunc [
169 # OBJ-NEXT: FrameFunc [
H A Dcv-fpo-setframe.s82 # OBJ-NEXT: FrameFunc [
98 # OBJ-NEXT: FrameFunc [
115 # OBJ-NEXT: FrameFunc [
132 # OBJ-NEXT: FrameFunc [
150 # OBJ-NEXT: FrameFunc [
169 # OBJ-NEXT: FrameFunc [
H A Dcv-string.s13 # CHECK: FrameFunc [
/llvm-project/llvm/test/DebugInfo/COFF/
H A Dfpo-csrs.ll86 ; OBJ-NEXT: FrameFunc [
102 ; OBJ-NEXT: FrameFunc [
153 ; OBJ-NEXT: FrameFunc [
169 ; OBJ-NEXT: FrameFunc [
186 ; OBJ-NEXT: FrameFunc [
239 ; OBJ-NEXT: FrameFunc [
255 ; OBJ-NEXT: FrameFunc [
272 ; OBJ-NEXT: FrameFunc [
290 ; OBJ-NEXT: FrameFunc [
349 ; OBJ-NEXT: FrameFunc [
[all …]
H A Dfpo-shrink-wrap.ll45 ; OBJ: FrameFunc [
55 ; OBJ: FrameFunc [
66 ; OBJ: FrameFunc [
78 ; OBJ: FrameFunc [
H A Dvframe-csr.ll39 ; Really, the only important FrameFunc is the last one.
49 ; OBJ: FrameFunc [
H A Dfpo-realign-vframe.ll77 ; Really, the only important FrameFunc is the last one.
85 ; OBJ: FrameFunc [
H A Dvframe-fpo.ll99 ; CODEVIEW-NEXT: FrameFunc [
/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFTargetStreamer.cpp283 SmallString<128> FrameFunc; member
318 // Compute the new FrameFunc string. in emitFrameDataRecord()
319 FrameFunc.clear(); in emitFrameDataRecord()
320 raw_svector_ostream FuncOS(FrameFunc); in emitFrameDataRecord()
369 // ulittle32_t FrameFunc; // String table offset in emitFrameDataRecord()
379 OS.emitInt32(FrameFuncStrTabOff); // FrameFunc in emitFrameDataRecord()
/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h51 StringRef FrameFunc; member
/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp308 IO.mapRequired("FrameFunc", Obj.FrameFunc); in mapping()
522 F.FrameFunc = SC.strings()->insert(YF.FrameFunc); in toCodeViewSubsection()
721 auto ES = Strings.getString(F.FrameFunc); in fromCodeViewSubsection()
728 YF.FrameFunc = *ES; in fromCodeViewSubsection()
/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1302 StringRef FrameFunc = unwrapOrError( in printCodeViewSymbolSection()
1303 Obj->getFileName(), CVStringTable.getString(FD.FrameFunc)); in printCodeViewSymbolSection()
1315 // The FrameFunc string is a small RPN program. It can be broken up into in printCodeViewSymbolSection()
1321 ListScope FFS(W, "FrameFunc"); in printCodeViewSymbolSection()
1322 while (!FrameFunc.empty()) { in printCodeViewSymbolSection()
1323 size_t EqOrEnd = FrameFunc.find('='); in printCodeViewSymbolSection()
1325 EqOrEnd = FrameFunc.size(); in printCodeViewSymbolSection()
1328 StringRef Stmt = FrameFunc.substr(0, EqOrEnd); in printCodeViewSymbolSection()
1330 FrameFunc = FrameFunc in printCodeViewSymbolSection()
1259 StringRef FrameFunc = unwrapOrError( printCodeViewSymbolSection() local
[all...]
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h590 support::ulittle32_t FrameFunc; member
/llvm-project/lld/COFF/
H A DPDB.cpp975 fd.FrameFunc = translateStringTableIndex(ctx, fd.FrameFunc, cvStrTab, in finish()
/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp711 out_program = cantFail(strings->getStringForID(frame_data_it->FrameFunc)); in GetFrameDataProgram()
/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1029 auto Program = Err(StringTable.getStringForID(FD.FrameFunc)); in dumpNewFpo()