Home
last modified time | relevance | path

Searched refs:Prologue (Results 1 – 25 of 166) sorted by relevance

1234567

/external/llvm-project/llvm/tools/llvm-readobj/
DARMWinEHPrinter.h39 unsigned Length, bool Prologue);
41 unsigned Length, bool Prologue);
43 unsigned Length, bool Prologue);
45 unsigned Length, bool Prologue);
47 unsigned Length, bool Prologue);
49 unsigned Length, bool Prologue);
51 unsigned Length, bool Prologue);
53 unsigned Length, bool Prologue);
55 unsigned Length, bool Prologue);
57 unsigned Length, bool Prologue);
[all …]
DARMWinEHPrinter.cpp257 unsigned Length, bool Prologue) { in opcode_0xxxxxxx() argument
261 static_cast<const char *>(Prologue ? "sub" : "add"), in opcode_0xxxxxxx()
268 unsigned Length, bool Prologue) { in opcode_10Lxxxxx() argument
270 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15)) in opcode_10Lxxxxx()
274 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set"); in opcode_10Lxxxxx()
278 Prologue ? "push" : "pop"); in opcode_10Lxxxxx()
287 unsigned Length, bool Prologue) { in opcode_1100xxxx() argument
288 if (Prologue) in opcode_1100xxxx()
299 unsigned Length, bool Prologue) { in opcode_11010Lxx() argument
303 uint16_t GPRMask = (Link << (Prologue ? 14 : 15)) in opcode_11010Lxx()
[all …]
/external/llvm/tools/llvm-readobj/
DARMWinEHPrinter.h36 unsigned Length, bool Prologue);
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, bool Prologue);
[all …]
DARMWinEHPrinter.cpp228 unsigned Length, bool Prologue) { in opcode_0xxxxxxx() argument
232 static_cast<const char *>(Prologue ? "sub" : "add"), in opcode_0xxxxxxx()
239 unsigned Length, bool Prologue) { in opcode_10Lxxxxx() argument
241 uint16_t RegisterMask = (Link << (Prologue ? 14 : 15)) in opcode_10Lxxxxx()
245 assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set"); in opcode_10Lxxxxx()
249 Prologue ? "push" : "pop"); in opcode_10Lxxxxx()
258 unsigned Length, bool Prologue) { in opcode_1100xxxx() argument
259 if (Prologue) in opcode_1100xxxx()
270 unsigned Length, bool Prologue) { in opcode_11010Lxx() argument
274 uint16_t GPRMask = (Link << (Prologue ? 14 : 15)) in opcode_11010Lxx()
[all …]
/external/llvm-project/llvm/unittests/DebugInfo/DWARF/
DDWARFDebugLineTest.cpp135 DWARFDebugLine::Prologue Prologue, in checkDefaultPrologue() argument
144 EXPECT_EQ(Prologue.MaxOpsPerInst, 1u); in checkDefaultPrologue()
154 EXPECT_EQ(Prologue.getAddressSize(), 8u); in checkDefaultPrologue()
155 EXPECT_EQ(Prologue.SegSelectorSize, 0u); in checkDefaultPrologue()
162 EXPECT_EQ(Prologue.TotalLength, UnitLength); in checkDefaultPrologue()
163 EXPECT_EQ(Prologue.PrologueLength, PrologueLength); in checkDefaultPrologue()
164 EXPECT_EQ(Prologue.MinInstLength, 1u); in checkDefaultPrologue()
165 EXPECT_EQ(Prologue.DefaultIsStmt, 1u); in checkDefaultPrologue()
166 EXPECT_EQ(Prologue.LineBase, -5); in checkDefaultPrologue()
167 EXPECT_EQ(Prologue.LineRange, 14u); in checkDefaultPrologue()
[all …]
DDwarfGenerator.cpp158 DWARFDebugLine::Prologue dwarfgen::LineTable::createBasicPrologue() const { in createBasicPrologue()
159 DWARFDebugLine::Prologue P; in createBasicPrologue()
199 void dwarfgen::LineTable::setPrologue(DWARFDebugLine::Prologue NewPrologue) { in setPrologue()
200 Prologue = NewPrologue; in setPrologue()
206 Prologue.reset(); in setCustomPrologue()
234 } else if (!Prologue) { in generate()
306 DWARFDebugLine::Prologue DefaultPrologue = createBasicPrologue(); in writeDefaultPrologue()
315 Asm.emitInt64(Prologue->TotalLength); in writePrologue()
317 Asm.emitInt32(Prologue->TotalLength); in writePrologue()
319 Asm.emitInt16(Prologue->getVersion()); in writePrologue()
[all …]
DDwarfGenerator.h189 DWARFDebugLine::Prologue createBasicPrologue() const;
193 void setPrologue(DWARFDebugLine::Prologue NewPrologue);
217 void writeProloguePayload(const DWARFDebugLine::Prologue &Prologue,
223 llvm::Optional<DWARFDebugLine::Prologue> Prologue; variable
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp20 DWARFDebugLine::Prologue::Prologue() { clear(); } in Prologue() function in DWARFDebugLine::Prologue
22 void DWARFDebugLine::Prologue::clear() { in clear()
32 void DWARFDebugLine::Prologue::dump(raw_ostream &OS) const { in dump()
67 bool DWARFDebugLine::Prologue::parse(DataExtractor debug_line_data, in parse()
176 Prologue.dump(OS); in dump()
190 Prologue.clear(); in clear()
201 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
253 if (!Prologue.parse(debug_line_data, offset_ptr)) { in parse()
260 debug_line_offset + Prologue.TotalLength + Prologue.sizeofTotalLength(); in parse()
335 Prologue.FileNames.push_back(fileEntry); in parse()
[all …]
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp71 DWARFDebugLine::Prologue::Prologue() { clear(); } in Prologue() function in DWARFDebugLine::Prologue
73 bool DWARFDebugLine::Prologue::hasFileAtIndex(uint64_t FileIndex) const { in hasFileAtIndex()
82 Optional<uint64_t> DWARFDebugLine::Prologue::getLastValidFileIndex() const { in getLastValidFileIndex()
95 DWARFDebugLine::Prologue::getFileNameEntry(uint64_t Index) const { in getFileNameEntry()
105 void DWARFDebugLine::Prologue::clear() { in clear()
117 void DWARFDebugLine::Prologue::dump(raw_ostream &OS, in dump()
351 uint64_t DWARFDebugLine::Prologue::getLength() const { in getLength()
359 Error DWARFDebugLine::Prologue::parse( in parse()
518 Prologue.dump(OS, DumpOptions); in dump()
534 Prologue.clear(); in clear()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp66 DWARFDebugLine::Prologue::Prologue() { clear(); } in Prologue() function in DWARFDebugLine::Prologue
68 bool DWARFDebugLine::Prologue::hasFileAtIndex(uint64_t FileIndex) const { in hasFileAtIndex()
78 DWARFDebugLine::Prologue::getFileNameEntry(uint64_t Index) const { in getFileNameEntry()
88 void DWARFDebugLine::Prologue::clear() { in clear()
100 void DWARFDebugLine::Prologue::dump(raw_ostream &OS, in dump()
300 Error DWARFDebugLine::Prologue::parse(const DWARFDataExtractor &DebugLineData, in parse()
429 Prologue.dump(OS, DumpOptions); in dump()
445 Prologue.clear(); in clear()
456 Row.reset(LineTable->Prologue.DefaultIsStmt); in resetRowAndSequence()
517 Error PrologueErr = Prologue.parse(DebugLineData, OffsetPtr, Ctx, U); in parse()
[all …]
/external/vixl/tools/test_generator/
Ddata_types.py210 def Prologue(): member in Input
389 def Prologue(self): member in Register
399 def Prologue(self): member in DRegisterF64
417 def Prologue(self): member in NZCV
457 def Prologue(self): member in Q
497 def Prologue(self): member in GE
522 def Prologue(self): member in FPSCR
608 def Prologue(self): member in MemOperand
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/Inputs/
Ddebug_line_malformed.s6 .long .Lprologue1_end-.Lprologue1_start # Length of Prologue
47 .long .Lprologue_v5_end-.Lprologue_v5_start # Length of Prologue
67 .long .Lprologue_short_prologue_end-.Lprologue_short_prologue_start # Length of Prologue
93 .long .Lprologue_long_prologue_end-.Lprologue_long_prologue_start # Length of Prologue
122 .long .Lprologue_long_opcode_end-.Lprologue_long_opcode_start # Length of Prologue
155 .long .Lprologue_no_eos_end-.Lprologue_no_eos_start # Length of Prologue
184 .long .Linvalid_description_header_end0 - .Linvalid_description_params0 # Length of Prologue (inv…
205 .long .Linvalid_file_header_end0 - .Linvalid_file_params0 # Length of Prologue (invalid)
238 .long .Linvalid_dir_header_end0 - .Linvalid_dir_params0 # Length of Prologue (invalid)
265 .long .Linvalid_md5_header_end0-.Linvalid_md5_params0 # Length of Prologue
[all …]
Ddebug_line_reserved_length.s6 .long .Lprologue1_end-.Lprologue1_start # Length of Prologue
36 .long .Lprologue3_end-.Lprologue3_start # Length of Prologue
/external/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h63 struct Prologue { struct
64 Prologue();
253 return Prologue.hasFileAtIndex(FileIndex); in hasFileAtIndex()
257 return Prologue.getLastValidFileIndex(); in getLastValidFileIndex()
268 return Prologue.getFileNameByIndex(FileIndex, CompDir, Kind, Result); in getFileNameByIndex()
292 struct Prologue Prologue; member
359 void moveToNextTable(uint64_t OldOffset, const Prologue &P);
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DHashedNameToDIE.cpp132 DWARFMappedHash::Prologue::Prologue(dw_offset_t _die_base_offset) in Prologue() function in DWARFMappedHash::Prologue
140 void DWARFMappedHash::Prologue::ClearAtoms() { in ClearAtoms()
147 bool DWARFMappedHash::Prologue::ContainsAtom(AtomType atom_type) const { in ContainsAtom()
151 void DWARFMappedHash::Prologue::Clear() { in Clear()
156 void DWARFMappedHash::Prologue::AppendAtom(AtomType type, dw_form_t form) { in AppendAtom()
211 DWARFMappedHash::Prologue::Read(const lldb_private::DataExtractor &data, in Read()
236 size_t DWARFMappedHash::Prologue::GetByteSize() const { in GetByteSize()
243 size_t DWARFMappedHash::Prologue::GetMinimumHashDataByteSize() const { in GetMinimumHashDataByteSize()
247 bool DWARFMappedHash::Prologue::HashDataHasFixedByteSize() const { in HashDataHasFixedByteSize()
257 offset = MappedHash::Header<Prologue>::Read(data, offset); in Read()
DHashedNameToDIE.h80 class Prologue {
82 Prologue(dw_offset_t _die_base_offset = 0);
109 class Header : public MappedHash::Header<Prologue> {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h63 struct Prologue { struct
64 Prologue();
258 return Prologue.hasFileAtIndex(FileIndex); in hasFileAtIndex()
269 return Prologue.getFileNameByIndex(FileIndex, CompDir, Kind, Result); in getFileNameByIndex()
293 struct Prologue Prologue; member
359 void moveToNextTable(uint64_t OldOffset, const Prologue &P);
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugLine.h36 struct Prologue { struct
37 Prologue();
210 struct Prologue Prologue; member
/external/llvm/test/Transforms/IndVarSimplify/
Div-widen.ll21 Prologue:
24 B18: ; preds = %B24, %Prologue
25 %.02 = phi i32 [ 0, %Prologue ], [ %tmp33, %B24 ]
37 B6: ; preds = %Prologue
/external/llvm-project/llvm/test/Transforms/IndVarSimplify/X86/
Div-widen.ll18 ; CHECK-NEXT: Prologue:
44 Prologue:
47 B18: ; preds = %B24, %Prologue
48 %.02 = phi i32 [ 0, %Prologue ], [ %tmp33, %B24 ]
61 B6: ; preds = %Prologue
72 ; CHECK-NEXT: Prologue:
95 Prologue:
98 B18: ; preds = %B24, %Prologue
99 %.02 = phi i32 [ 0, %Prologue ], [ %tmp33, %B24 ]
111 B6: ; preds = %Prologue
/external/llvm-project/llvm/test/CodeGen/ARM/
Dthumb1_return_sequence.ll8 ; Prologue
43 ; Prologue
78 ; Prologue
114 ; Prologue
176 ; Prologue
193 ; Prologue
/external/llvm/test/CodeGen/ARM/
Dthumb1_return_sequence.ll8 ; Prologue
49 ; Prologue
87 ; Prologue
123 ; Prologue
185 ; Prologue
202 ; Prologue
/external/elfutils/tests/
Drun-readelf-line.sh33 Prologue length: 43
90 Prologue length: 28
142 Prologue length: 43
211 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
228 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
241 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
291 Prologue length: 30
345 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
368 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
406 line:col SBPE* disc isa op address (Statement Block Prologue Epilogue *End)
[all …]
/external/llvm-project/llvm/test/tools/llvm-readobj/COFF/
Dunwind-arm64-windows.test11 UNWIND1-NEXT: Prologue [
40 UNWIND2-NEXT: Prologue [
/external/llvm-project/llvm/test/DebugInfo/X86/
Ddwarfdump-line-dwo.s12 .long LH_1_header_end-LH_1_params # Length of Prologue
59 .long LH_2_header_end-LH_2_params # Length of Prologue

1234567