/external/llvm-project/llvm/test/tools/llvm-objdump/MachO/ |
D | bad-bind.test | 1 …-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 …inal-uleb-malformed-uleb128 2>&1 | FileCheck --check-prefix DYLIB-ORDINAL-ULEB-MALFORMED-ULEB128 %s 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 …cho --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-project/llvm/unittests/DebugInfo/DWARF/ |
D | DWARFDebugLineTest.cpp | 378 {0, LineTable::ULEB}, // directories count in TEST_F() 380 {0, LineTable::ULEB} // file name entry count in TEST_F() 498 {{DW_LNS_negate_stmt, LineTable::ULEB}}); in TEST_F() 786 {{0x10, LineTable::ULEB}}); in setupConstAddPcFirstTable() 799 {{0x20, LineTable::ULEB}}); in setupSpecialFirstTable() 810 {{0x30, LineTable::ULEB}}); in setupAdvancePcFirstTable() 813 {{0x40, LineTable::ULEB}}); in setupAdvancePcFirstTable() 1257 {2, LineTable::ULEB}, in TEST_F() 1258 {3, LineTable::ULEB}, in TEST_F() 1259 {4, LineTable::ULEB}}); in TEST_F() [all …]
|
D | DwarfGenerator.cpp | 223 Contents.push_back({Length, ULEB}); in addExtendedOpcode() 255 case ULEB: in writeData() 270 case ULEB: in getContentsSize()
|
D | DwarfGenerator.h | 174 enum ValueLength { Byte = 1, Half = 2, Long = 4, Quad = 8, ULEB, SLEB }; enumerator
|
/external/llvm-project/llvm/test/DebugInfo/X86/ |
D | dwarfdump-debug-loclists-error-cases.s | 2 # RUN: not llvm-dwarfdump -debug-loclists %t1.o 2>&1 | FileCheck %s --check-prefix=ULEB -DOFFSET=0x… 5 # RUN: not llvm-dwarfdump -debug-loclists %t2.o 2>&1 | FileCheck %s --check-prefix=ULEB -DOFFSET=0x… 8 # RUN: not llvm-dwarfdump -debug-loclists %t3.o 2>&1 | FileCheck %s --check-prefix=ULEB -DOFFSET=0x… 23 # ULEB: error: unable to decode LEB128 at offset [[OFFSET]]: malformed uleb128, extends past end
|
/external/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 229 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/llvm-project/llvm/tools/obj2yaml/ |
D | macho2yaml.cpp | 356 uint64_t ULEB = 0; in dumpRebaseOpcodes() local 361 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 362 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes() 371 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpRebaseOpcodes() 372 RebaseOp.ExtraData.push_back(ULEB); in dumpRebaseOpcodes() 404 uint64_t ULEB = 0; in dumpBindOpcodes() local 409 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 410 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes() 419 ULEB = decodeULEB128(OpCode + 1, &Count); in dumpBindOpcodes() 420 BindOp.ULEBExtraData.push_back(ULEB); in dumpBindOpcodes()
|
/external/llvm/tools/llvm-readobj/ |
D | ARMEHABIPrinter.h | 164 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/llvm-project/llvm/tools/llvm-readobj/ |
D | ARMEHABIPrinter.h | 173 SmallVector<uint8_t, 4> ULEB; in Decode_10110010_uleb128() local 174 do { ULEB.push_back(Opcodes[OI ^ 3]); } while (Opcodes[OI++ ^ 3] & 0x80); in Decode_10110010_uleb128() 176 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128() 177 OS << format("0x%02X ", ULEB[BI]); in Decode_10110010_uleb128() 180 for (unsigned BI = 0, BE = ULEB.size(); BI != BE; ++BI) in Decode_10110010_uleb128() 181 Value = Value | ((ULEB[BI] & 0x7f) << (7 * BI)); in Decode_10110010_uleb128()
|
/external/llvm-project/llvm/test/tools/llvm-dwarfdump/X86/ |
D | debug_rnglists_invalid.s | 114 .byte 0xFF # Length - invalid ULEB, so will continue reading past the end
|
/external/llvm-project/llvm/lib/DWARFLinker/ |
D | DWARFLinker.cpp | 1025 uint8_t ULEB[16]; in cloneExpression() local 1026 unsigned RealSize = encodeULEB128(Offset, ULEB, ULEBsize); in cloneExpression() 1029 RealSize = encodeULEB128(0, ULEB, ULEBsize); in cloneExpression() 1033 ArrayRef<uint8_t> ULEBbytes(ULEB, ULEBsize); in cloneExpression()
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | stack-sizes.test | 441 ## Check that we report an invalid stack size, which is represented by a ULEB that
|
/external/llvm-project/llvm/docs/ |
D | AMDGPUUsage.rst | 1640 registers using DWARF 1-byte ULEB.*
|