Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove obsolete object file dumpers | Nico Rieck | 2013-04-12 | 1 | -285/+0 |
| | | | | llvm-svn: 179362 | ||||
* | Added program header emission | Hemant Kulkarni | 2012-11-16 | 1 | -3/+45 |
| | | | | llvm-svn: 168195 | ||||
* | This allows hello world to be compiled for Mips 64 direct object. | Jack Carter | 2012-06-27 | 1 | -9/+29 |
| | | | | | | | | | | | It takes advantage of r159299 which introduces relocation support for N64. elf-dump needed to be upgraded to support N64 relocations as well. This passes make check. Jack llvm-svn: 159301 | ||||
* | Fix the bitwidth of the remaining fields. | Rafael Espindola | 2011-08-04 | 1 | -43/+38 |
| | | | | llvm-svn: 136884 | ||||
* | print st_shndx with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136880 | ||||
* | print st_other with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136877 | ||||
* | print st_type with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136875 | ||||
* | Print st_bind with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -2/+4 |
| | | | | llvm-svn: 136874 | ||||
* | Print r_sym with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136873 | ||||
* | Print r_type with the correct number of bits. | Rafael Espindola | 2011-08-04 | 1 | -4/+6 |
| | | | | llvm-svn: 136872 | ||||
* | Another counter goes decimal. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136871 | ||||
* | Change anther counter to decimal. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136870 | ||||
* | Don't print a counter in hex. | Rafael Espindola | 2011-08-04 | 1 | -1/+1 |
| | | | | llvm-svn: 136869 | ||||
* | Print all the bits in the addend. | Rafael Espindola | 2011-08-04 | 1 | -13/+6 |
| | | | | llvm-svn: 136867 | ||||
* | Print all 64bits for st_value and st_size. Adjust tests accordingly. | Roman Divacky | 2010-12-20 | 1 | -2/+2 |
| | | | | llvm-svn: 122263 | ||||
* | Fix elf-dump --dump-section-data for .bss section | Jason W Kim | 2010-12-16 | 1 | -2/+5 |
| | | | | llvm-svn: 121927 | ||||
* | Cut unneeded global variable. | Jason W Kim | 2010-10-20 | 1 | -2/+0 |
| | | | | llvm-svn: 116953 | ||||
* | Fixing r116753 r116756 r116777 | Jason W Kim | 2010-10-19 | 1 | -48/+50 |
| | | | | | | | | | | | | | | | | | | | The failures in r116753 r116756 were caused by a python issue - Python likes to append 'L' suffix to stringified numbers if the number is larger than a machine int. Unfortunately, this causes a divergence of behavior between 32 and 64 bit python versions. I re-crafted elf-dump/common_dump to take care of these issues by: 1. always printing 0x (makes for easy sed/regex) 2. always print fixed length (exactly 2 + numBits/4 digits long) by mod ((2^numBits) - 1) 3. left-padded with '0' There is a residual common routine that is also used by macho-dump (dataToHex) , so I left the 'section_data' test values alone. llvm-svn: 116823 | ||||
* | Speculatively revert 116753 and 116756 to attempt to fix the bots. | Eric Christopher | 2010-10-19 | 1 | -48/+48 |
| | | | | llvm-svn: 116777 | ||||
* | Get rid of unneeded FormatOutput global variable | Jason W Kim | 2010-10-18 | 1 | -50/+48 |
| | | | | llvm-svn: 116756 | ||||
* | Changed elf-dump to output hex format by default. | Jason W Kim | 2010-10-18 | 1 | -48/+50 |
| | | | | | | Also updated tests. llvm-svn: 116753 | ||||
* | Add missing single quotes. | Rafael Espindola | 2010-09-11 | 1 | -1/+1 |
| | | | | llvm-svn: 113687 | ||||
* | Change section_data dumping to print hex numbers instead of using | Rafael Espindola | 2010-09-11 | 1 | -1/+4 |
| | | | | | | python's %r. llvm-svn: 113685 | ||||
* | Add an elf-dumper utility. | Benjamin Kramer | 2010-09-09 | 1 | -0/+225 |
- Output format and some of the code stolen from macho-dump. - Somewhat incomplete and probably buggy. - Comes with a very basic test. llvm-svn: 113488 |