Home
last modified time | relevance | path

Searched refs:ULEB (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/
Dmacho-bad-bind.test1 …-bind %p/Inputs/macho-bind-dylib-ordinal-uleb 2>&1 | FileCheck -check-prefix DYLIB-ORDINAL-ULEB %s
2 DYLIB-ORDINAL-ULEB: macho-bind-dylib-ordinal-uleb': truncated or malformed object (for BIND_OPCODE_…
4 …dinal-uleb-malformed-uleb128 2>&1 | FileCheck -check-prefix DYLIB-ORDINAL-ULEB-MALFORMED-ULEB128 %…
5 DYLIB-ORDINAL-ULEB-MALFORMED-ULEB128: macho-bind-dylib-ordinal-uleb-malformed-uleb128': truncated o…
7 …macho-bind-dylib-ordinal-uleb-too-big 2>&1 | FileCheck -check-prefix DYLIB-ORDINAL-ULEB-TOO-BIG %s
8 DYLIB-ORDINAL-ULEB-TOO-BIG: macho-bind-dylib-ordinal-uleb-too-big': truncated or malformed object (…
34 …acho -bind %p/Inputs/macho-bind-bind-add-addr-uleb 2>&1 | FileCheck -check-prefix ADD-ADDR-ULEB %s
35 ADD-ADDR-ULEB: macho-bind-bind-add-addr-uleb': truncated or malformed object (for BIND_OPCODE_ADD_A…
40 …uts/macho-bind-uleb-times-skipping-uleb 2>&1 | FileCheck -check-prefix ULEB-TIMES-SKIPPING-ULEB %s
41 ULEB-TIMES-SKIPPING-ULEB: macho-bind-uleb-times-skipping-uleb': truncated or malformed object (for …
[all …]
/external/llvm/tools/obj2yaml/
Dmacho2yaml.cpp229 uint64_t ULEB = 0; in dumpRebaseOpcodes() local
234 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes()
235 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes()
243 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes()
244 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes()
276 uint64_t ULEB = 0; in dumpBindOpcodes() local
281 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes()
282 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes()
290 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes()
291 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dmacho2yaml.cpp256 uint64_t ULEB = 0; in dumpRebaseOpcodes() local
261 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes()
262 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes()
271 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes()
272 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes()
304 uint64_t ULEB = 0; in dumpBindOpcodes() local
309 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes()
310 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes()
319 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes()
320 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes()
/external/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h164 SmallVector<uint8_t, 4> ULEB; in Decode_10110010_uleb128() local
165 do { ULEB.push_back(Opcodes[OI ^ 3]); } while (Opcodes[OI++ ^ 3] & 0x80); in Decode_10110010_uleb128()
167 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128()
168 OS << format("0x%02X ", ULEB[BI]); in Decode_10110010_uleb128()
171 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128()
172 Value = Value | ((ULEB[BI] & 0x7f) << (7 * BI)); in Decode_10110010_uleb128()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DARMEHABIPrinter.h175 SmallVector<uint8_t, 4> ULEB; in Decode_10110010_uleb128() local
176 do { ULEB.push_back(Opcodes[OI ^ 3]); } while (Opcodes[OI++ ^ 3] & 0x80); in Decode_10110010_uleb128()
178 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128()
179 OS << format("0x%02X ", ULEB[BI]); in Decode_10110010_uleb128()
182 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128()
183 Value = Value | ((ULEB[BI] & 0x7f) << (7 * BI)); in Decode_10110010_uleb128()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/DebugInfo/DWARF/
DDwarfGenerator.h172 enum ValueLength { Byte = 1, Half = 2, Long = 4, Quad = 8, ULEB, SLEB }; enumerator
DDWARFDebugLineTest.cpp339 {0, LineTable::ULEB}, // directories count in TEST_F()
341 {0, LineTable::ULEB} // file name entry count in TEST_F()
DDwarfGenerator.cpp214 Contents.push_back({Length, ULEB}); in addExtendedOpcode()
246 case ULEB: in writeData()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
Ddebug_rnglists_invalid.s119 .byte 0xFF # Length - invalid ULEB, so will continue reading past the end