summaryrefslogtreecommitdiffstats
path: root/llvm/test/Scripts/elf-dump
Commit message (Collapse)AuthorAgeFilesLines
* Remove obsolete object file dumpersNico Rieck2013-04-121-285/+0
| | | | llvm-svn: 179362
* Added program header emissionHemant Kulkarni2012-11-161-3/+45
| | | | llvm-svn: 168195
* This allows hello world to be compiled for Mips 64 direct object.Jack Carter2012-06-271-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 Espindola2011-08-041-43/+38
| | | | llvm-svn: 136884
* print st_shndx with the correct number of bits.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136880
* print st_other with the correct number of bits.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136877
* print st_type with the correct number of bits.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136875
* Print st_bind with the correct number of bits.Rafael Espindola2011-08-041-2/+4
| | | | llvm-svn: 136874
* Print r_sym with the correct number of bits.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136873
* Print r_type with the correct number of bits.Rafael Espindola2011-08-041-4/+6
| | | | llvm-svn: 136872
* Another counter goes decimal.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136871
* Change anther counter to decimal.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136870
* Don't print a counter in hex.Rafael Espindola2011-08-041-1/+1
| | | | llvm-svn: 136869
* Print all the bits in the addend.Rafael Espindola2011-08-041-13/+6
| | | | llvm-svn: 136867
* Print all 64bits for st_value and st_size. Adjust tests accordingly.Roman Divacky2010-12-201-2/+2
| | | | llvm-svn: 122263
* Fix elf-dump --dump-section-data for .bss sectionJason W Kim2010-12-161-2/+5
| | | | llvm-svn: 121927
* Cut unneeded global variable.Jason W Kim2010-10-201-2/+0
| | | | llvm-svn: 116953
* Fixing r116753 r116756 r116777Jason W Kim2010-10-191-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 Christopher2010-10-191-48/+48
| | | | llvm-svn: 116777
* Get rid of unneeded FormatOutput global variableJason W Kim2010-10-181-50/+48
| | | | llvm-svn: 116756
* Changed elf-dump to output hex format by default.Jason W Kim2010-10-181-48/+50
| | | | | | Also updated tests. llvm-svn: 116753
* Add missing single quotes.Rafael Espindola2010-09-111-1/+1
| | | | llvm-svn: 113687
* Change section_data dumping to print hex numbers instead of usingRafael Espindola2010-09-111-1/+4
| | | | | | python's %r. llvm-svn: 113685
* Add an elf-dumper utility.Benjamin Kramer2010-09-091-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
OpenPOWER on IntegriCloud