Alexey Samsonov
3642508921
Fix buildbot failure on Windows by relaxing test expectations.
...
llvm-svn: 239074
2015-06-04 19:22:00 +00:00
Alexey Samsonov
50d0fbd2b9
llvm-objdump: return non-zero exit code for certain cases of invalid input
...
* If the input file is missing;
* If the type of input object file can't be recognized;
* If the object file can't be parsed correctly.
llvm-svn: 239065
2015-06-04 18:34:11 +00:00
Rafael Espindola
62a07cb59b
Stop inventing symbol sizes.
...
MachO and COFF quite reasonably only define the size for common symbols.
We used to try to figure out the "size" by computing the gap from one symbol to
the next.
This would not be correct in general, since a part of a section can belong to no
visible symbol (padding, private globals).
It was also really expensive, since we would walk every symbol to find the size
of one.
If a caller really wants this, it can sort all the symbols once and get all the
gaps ("size") in O(n log n) instead of O(n^2).
On MachO this also has the advantage of centralizing all the checks for an
invalid n_sect.
llvm-svn: 238028
2015-05-22 15:43:00 +00:00
Kevin Enderby
8972e48bc8
For llvm-objdump, with the -archive-headers and -macho options, use the -non-verbose
...
option to print the archive headers using raw numeric values. Also add the -archive-member-offsets
for use with these to also trigger printing of the offset of the archive member from the start
of the archive.
llvm-svn: 236252
2015-04-30 20:30:42 +00:00
Kevin Enderby
4ad9bded46
For llvm-objdump, dump the (__OBJC,__protocol) section for Objc1 32-bit Mach-O files
...
with the -section option as objc_protocol_t structs.
llvm-svn: 235141
2015-04-16 22:33:20 +00:00
Kevin Enderby
846c000737
For llvm-objdump added support for printing Objc1 32-bit runtime meta data
...
with the existing -objc-meta-data and -macho options for Mach-O files.
llvm-svn: 235119
2015-04-16 17:19:59 +00:00
Kevin Enderby
f4952c1c3d
Fix failure on builder llvm-clang-lld-x86_64-debian-fast as the
...
test macho-objc-meta-data.test had a line it shouldn't have had.
llvm-svn: 234190
2015-04-06 18:18:23 +00:00
Kevin Enderby
28c1c1b5e6
For llvm-objdump added support for printing Objc2 32-bit runtime meta data
...
with the existing -objc-meta-data and -macho options for Mach-O files.
llvm-svn: 234185
2015-04-06 17:47:03 +00:00
Kevin Enderby
0fc1182eed
Add the option -objc-meta-data to llvm-objdump used with -macho to
...
print the Objective-C runtime meta data for Mach-O files.
There are three types of Objective-C runtime meta data, Objc2 64-bit,
Objc2 32-bit and Objc1 32-bit. This prints the first of these types. The
changes to print the others will follow next.
llvm-svn: 233840
2015-04-01 20:57:01 +00:00
Akira Hatanaka
1d07994550
[Objdump] Pass the correct subtarget to printInst.
...
This fixes a bug I introduced in r233411.
llvm-svn: 233484
2015-03-28 20:44:05 +00:00
Adrian Prantl
c2401ddf84
Add a -raw option to the -section mode of llvm-objdump.
...
llvm-svn: 233390
2015-03-27 17:31:15 +00:00
Kevin Enderby
8e29ec9ec2
Add the option -no-symbolic-operands to llvm-objdump used with -macho and
...
-disassemble to not symbolic operands when disassembling.
llvm-svn: 232558
2015-03-17 22:26:11 +00:00
Kevin Enderby
ab5e6c9925
Add the option, -no-leading-addr llvm-objdump used with -macho and
...
-disassemble or -section to not print the leading addresses on each line.
llvm-svn: 232547
2015-03-17 21:07:39 +00:00
Kevin Enderby
6a22175d59
Add the option, -dis-symname to llvm-objdump used with -macho and
...
-disassemble to disassemble just one symbol’s instructions.
llvm-svn: 232503
2015-03-17 17:10:57 +00:00
Kevin Enderby
bc847fa4ed
Add the options, -dylibs-used and -dylib-id to llvm-objdump used with -macho
...
to print the Mach-O dynamic shared libraries used by a linked image or the
library id of a shared library.
llvm-svn: 232406
2015-03-16 20:08:09 +00:00
Kevin Enderby
f064075e54
Add the option, -non-verbose to llvm-objdump used with -macho to print things
...
using numeric values and not their symbolic constant names.
The routines that print Mach-O stuff already had a verbose parameter and this
change is just changing the passing true to passing !NonVerbose. With just a
couple of fixes and a bunch of test case updates.
llvm-svn: 232182
2015-03-13 17:56:32 +00:00
Kevin Enderby
cd66be5dda
Add the option, -info-plist to llvm-objdump used with -macho to print the
...
Mach-O info plist section as strings.
llvm-svn: 231974
2015-03-11 22:06:32 +00:00
Colin LeMahieu
4799984344
[Objdump] Fixing crash when printing symbols in ELF sections with special types.
...
llvm-svn: 229759
2015-02-18 23:00:22 +00:00
Kevin Enderby
578fe5a303
Add code to llvm-objdump so the -section option with -macho will dump literal pointer sections
...
with the Mach-O S_LITERAL_POINTERS section type.
Also fix the printing of the leading addresses for literal sections to be consistent and
not print the 0x prefix. Updated test cases to match.
llvm-svn: 229548
2015-02-17 21:35:48 +00:00
Kevin Enderby
74b43cb403
Add code to llvm-objdump so the -section option with -macho will dump literal
...
sections with the Mach-O S_{4,8,16}BYTE_LITERALS section types.
llvm-svn: 228465
2015-02-06 23:25:38 +00:00
Kevin Enderby
10ba041188
Add code to llvm-objdump so the -section option with -macho will dump ‘C’ string
...
sections with the Mach-O S_CSTRING_LITERALS section type.
llvm-svn: 228198
2015-02-04 21:38:42 +00:00
Kevin Enderby
95df54c819
Add code to llvm-objdump so the -section option with -macho will disassemble sections
...
that have attributes indicating they contain instructions.
llvm-svn: 228101
2015-02-04 01:01:38 +00:00
Kevin Enderby
f6d258537d
Add the -section option to llvm-objdump used with -macho that takes the argument
...
segname,sectname to specify a Mach-O section to print. The printing is based on
the section type or section attributes.
The printing of the module initialization and termination section types is printed
with this change. Printing of other section types will be added next.
llvm-svn: 227649
2015-01-31 00:37:11 +00:00
Kevin Enderby
9a50944ca0
dd the option, -link-opt-hints to llvm-objdump used with -macho to print the
...
Mach-O AArch64 linker optimization hints for ADRP code optimization.
llvm-svn: 227246
2015-01-27 21:28:24 +00:00
Kevin Enderby
479ee6135d
Fix the problem with llvm-objdump and -archive-headers in printing the archive header size field.
...
This problem showed up with the clang-cmake-armv7-a15-full bot. Thanks to Renato Golin for his help.
llvm-svn: 226936
2015-01-23 21:02:44 +00:00
Colin LeMahieu
bc2f47a76e
[Objdump] Output information about common symbols in a way closer to GNU objdump.
...
llvm-svn: 226932
2015-01-23 20:06:24 +00:00
Kevin Enderby
69fe98da14
Add the option, -data-in-code, to llvm-objdump used with -macho to print the Mach-O data in code table.
...
llvm-svn: 226921
2015-01-23 18:52:17 +00:00
Kevin Enderby
a7bdc7e671
Add the option, -indirect-symbols, used with -macho to print the Mach-O indirect symbol table to llvm-objdump.
...
llvm-svn: 226848
2015-01-22 18:55:27 +00:00
Kevin Enderby
98da6136d0
For llvm-objdump, hook up existing options to work when using -macho (the Mach-O parser).
...
llvm-svn: 226612
2015-01-20 21:47:46 +00:00
Kevin Enderby
51f5cb143f
Change the test case for llvm-objdump’s -archive-headers option to not check the size
...
while I once again try to figure out why only the clang-cmake-armv7-a15-full bot
is getting that value wrong.
llvm-svn: 226345
2015-01-16 23:29:07 +00:00
Kevin Enderby
c1271893af
Fix the Archive::Child::getRawSize() method used by llvm-objdump’s -archive-headers option
...
and tweak its use in llvm-objdump. Add back the test case for the -archive-headers option.
llvm-svn: 226332
2015-01-16 22:10:36 +00:00
Kevin Enderby
15e9420f69
Work around to get the build bot clang-cmake-armv7-a15-full green by
...
removing the macho-archive-headers.test added with r226228 that it is
failing on for now while I try to figure out what is going on.
llvm-svn: 226241
2015-01-16 02:08:11 +00:00
Kevin Enderby
95f1860d4c
Another attempt to fix the build bot clang-cmake-armv7-a15-full failing on
...
the macho-archive-headers.test added with r226228.
llvm-svn: 226239
2015-01-16 01:09:54 +00:00
Kevin Enderby
13023a1af6
Add the option, -archive-headers, used with -macho to print the Mach-O archive headers to llvm-objdump.
...
llvm-svn: 226228
2015-01-15 23:19:11 +00:00
Kevin Enderby
131d1770f6
Add the option, -universal-headers, used with -macho to print the Mach-O universal headers to llvm-objdump.
...
llvm-svn: 225537
2015-01-09 19:22:37 +00:00
Kevin Enderby
e2297ddd11
Slightly refactor things for llvm-objdump and the -macho option so it can be used with
...
options other than just -disassemble so that universal files can be used with other
options combined with -arch options.
No functional change to existing options and use. One test case added for the
additional functionality with a universal file an a -arch option.
llvm-svn: 225383
2015-01-07 21:02:18 +00:00
Kevin Enderby
48ef534b74
Add printing the LC_THREAD load commands with llvm-objdump’s -private-headers.
...
llvm-svn: 224792
2014-12-23 22:56:39 +00:00
Kevin Enderby
52e4ce4a53
Add printing the LC_ROUTINES load commands with llvm-objdump’s -private-headers.
...
llvm-svn: 224627
2014-12-19 22:25:22 +00:00
Kevin Enderby
186eac3c0c
Add printing the LC_SUB_CLIENT load command with llvm-objdump’s -private-headers.
...
llvm-svn: 224616
2014-12-19 21:06:24 +00:00
Kevin Enderby
36c8d3ae63
Add printing the LC_SUB_LIBRARY load command with llvm-objdump’s -private-headers.
...
llvm-svn: 224607
2014-12-19 19:48:16 +00:00
Kevin Enderby
a2bd8d98a1
Add printing the LC_SUB_UMBRELLA load command with llvm-objdump’s -private-headers.
...
llvm-svn: 224548
2014-12-18 23:13:26 +00:00
Kevin Enderby
b4b7931748
Add printing the LC_SUB_FRAMEWORK load command with llvm-objdump’s -private-headers.
...
llvm-svn: 224534
2014-12-18 19:24:35 +00:00
Kevin Enderby
d0b6b7fb7f
Add printing the LC_LINKER_OPTION load command with llvm-objdump’s -private-headers.
...
Also corrected the name of the load command to not end in an ’S’ as well as corrected
the name of the MachO::linker_option_command struct and other places that had the
word option as plural which did not match the Mac OS X headers.
llvm-svn: 224485
2014-12-18 00:53:40 +00:00
Kevin Enderby
57538299e8
Add printing the LC_ENCRYPTION_INFO_64 load command with llvm-objdump’s -private-headers
...
and add tests for the two AArch64 binaries.
llvm-svn: 224400
2014-12-17 01:01:30 +00:00
Kevin Enderby
0804f467f2
Add printing the LC_ENCRYPTION_INFO load command with llvm-objdump’s -private-headers.
...
llvm-svn: 224390
2014-12-16 23:25:52 +00:00
Kevin Enderby
1ff0ecc7a1
Fix a bug in llvm-objdump’s -private-headers for the LC_VERSION_MIN_IPHONEOS
...
load command not getting printed.
llvm-svn: 224376
2014-12-16 21:48:27 +00:00
Kevin Enderby
c971338def
Fix a bug in llvm-objdump’s -private-headers for 32-bit Mach-O files
...
printing the section header. And add some tests for this for 32-bit files.
llvm-svn: 224302
2014-12-16 01:14:45 +00:00
Kevin Enderby
ef3ad2ff32
Re-add support to llvm-objdump for Mach-O universal files and archives with -macho
...
with fixes. Includes the move of tests for llvm-objdump for universal files to an X86
directory. And the fix where it was failing on linux Rafael tracked down with asan.
I had both Jim Grosbach and Adam Hemet look over the second fix since I could not
set up asan to reproduce with the old version but not with the fix.
llvm-svn: 223416
2014-12-04 23:56:27 +00:00
Rafael Espindola
de882cd1c7
This reverts commit r223306 and r223277.
...
The code is using uninitialized memory and failing on linux.
llvm-svn: 223315
2014-12-03 23:29:34 +00:00
Kevin Enderby
55d5005f66
Move tests for llvm-objdump for universal files to X86 directory to fix build bots.
...
llvm-svn: 223306
2014-12-03 23:00:16 +00:00