forked from OSchip/llvm-project
				
			
				
					
						
							``` // llvm-objdump -d output (before) 400000: e8 0b 00 00 00 callq 11 400005: e8 0b 00 00 00 callq 11 // llvm-objdump -d output (after) 400000: e8 0b 00 00 00 callq 0x400010 400005: e8 0b 00 00 00 callq 0x400015 // GNU objdump -d. The lack of 0x is not ideal because the result cannot be re-assembled 400000: e8 0b 00 00 00 callq 400010 400005: e8 0b 00 00 00 callq 400015 ``` In llvm-objdump, we pass the address of the next MCInst. Ideally we should just thread the address of the current address, unfortunately we cannot call X86MCCodeEmitter::encodeInstruction (X86MCCodeEmitter requires MCInstrInfo and MCContext) to get the length of the MCInst. MCInstPrinter::printInst has other callers (e.g llvm-mc -filetype=asm, llvm-mca) which set Address to 0. They leave MCInstPrinter::PrintBranchImmAsAddress as false and this change is a no-op for them. Reviewed By: jhenderson Differential Revision: https://reviews.llvm.org/D76580  | 
			||
|---|---|---|
| .. | ||
| AArch64 | ||
| AMDGPU | ||
| ARM | ||
| Inputs | ||
| Lanai | ||
| Mips | ||
| RISCV | ||
| X86 | ||
| ar-create.test | ||
| ar-error.test | ||
| archive-darwin-duplicates.test | ||
| archive-delete.test | ||
| archive-error-tmp.txt | ||
| archive-extract-dir.test | ||
| archive-extract.test | ||
| archive-format.test | ||
| archive-long-filenames-no-null-terminator.test | ||
| archive-long-index.test | ||
| archive-move.test | ||
| archive-pad.test | ||
| archive-replace-pos.test | ||
| archive-symtab.test | ||
| archive-thin-create.test | ||
| archive-thin-paths.test | ||
| archive-thin-read.test | ||
| archive-toc.test | ||
| archive-update.test | ||
| check_binary_output.ll | ||
| coff-archive-short.test | ||
| coff-archive.test | ||
| coff-empty-drectve.test | ||
| coff-invalid.test | ||
| coff-weak-externals.test | ||
| directory.ll | ||
| dllimport-globalref.ll | ||
| dllimport.ll | ||
| dyn-rel-relocation.test | ||
| dynamic-reloc.test | ||
| elf-invalid-phdr.test | ||
| elf-unknown-type.test | ||
| invalid-alignment.test | ||
| invalid.test | ||
| kext.test | ||
| lit.local.cfg | ||
| macho-invalid.test | ||
| mangle-ir.ll | ||
| multi-module.ll | ||
| multiple-sections.yaml | ||
| nm-archive.test | ||
| nm-bitcode.test | ||
| nm-darwin-m.test | ||
| nm-error.test | ||
| nm-irix6.test | ||
| nm-pe-image.test | ||
| nm-shared-object.test | ||
| nm-trivial-object.test | ||
| nm-universal-binary.test | ||
| nm-weak-global-macho.test | ||
| obj2yaml.test | ||
| objc-imageinfo-coff.ll | ||
| objc-imageinfo-elf.ll | ||
| objc-imageinfo-macho.ll | ||
| objc-swift-mixed-imageinfo-macho.ll | ||
| objdump-export-list.test | ||
| objdump-no-sectionheaders.test | ||
| objdump-private-headers.test | ||
| objdump-relocations.test | ||
| objdump-section-content.test | ||
| objdump-sectionheaders.test | ||
| objdump-symbol-table.test | ||
| pr25877.test | ||
| relocation-executable.test | ||
| simple-archive.test | ||
| size-trivial-macho.test | ||
| stackmap-dump.test | ||
| wasm-bad-metadata-version.yaml | ||
| wasm-duplicate-name.test | ||
| wasm-invalid-file.yaml | ||
| wasm-invalid-section-order.test | ||
| wasm-invalid-start.test | ||
| wasm-missing-version.test | ||
| wasm-relocs-and-producers.yaml | ||
| wasm-string-outside-section.test | ||
| yaml2obj-elf-rel-noref.yaml | ||
| yaml2obj-elf-rel.yaml | ||
| yaml2obj-readobj.test | ||