-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from yugr/objdump/2
Added support for objdump.
- Loading branch information
Showing
8 changed files
with
208 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
0000000000016bb0 <_obstack_allocated_p@@Base>: | ||
16bb0: f3 0f 1e fa endbr64 | ||
16bb4: 48 8b 47 08 mov 0x8(%rdi),%rax | ||
16bb8: 48 85 c0 test %rax,%rax | ||
16bbb: 74 29 je 16be6 <_obstack_allocated_p@@Base+0x36> | ||
16bbd: 0f 1f 00 nopl (%rax) | ||
16bc0: 48 39 c6 cmp %rax,%rsi | ||
16bc3: 76 05 jbe 16bca <_obstack_allocated_p@@Base+0x1a> | ||
16bc5: 48 39 30 cmp %rsi,(%rax) | ||
16bc8: 73 16 jae 16be0 <_obstack_allocated_p@@Base+0x30> | ||
16bca: 48 8b 40 08 mov 0x8(%rax),%rax | ||
16bce: 48 85 c0 test %rax,%rax | ||
16bd1: 75 ed jne 16bc0 <_obstack_allocated_p@@Base+0x10> | ||
16bd3: 31 c0 xor %eax,%eax | ||
16bd5: c3 retq | ||
16bd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) | ||
16bdd: 00 00 00 | ||
16be0: b8 01 00 00 00 mov $0x1,%eax | ||
16be5: c3 retq | ||
16be6: c3 retq | ||
16be7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) | ||
16bee: 00 00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
0000000000001000 <.text>: | ||
1000: f3 0f 1e fa endbr64 | ||
1004: 55 push %rbp | ||
1005: 48 89 e5 mov %rsp,%rbp | ||
1008: 89 7d fc mov %edi,-0x4(%rbp) | ||
100b: 83 7d fc 00 cmpl $0x0,-0x4(%rbp) | ||
100f: 7e 08 jle 0x1019 | ||
1011: 8b 45 fc mov -0x4(%rbp),%eax | ||
1014: 83 c0 64 add $0x64,%eax | ||
1017: eb 06 jmp 0x101f | ||
1019: 8b 45 fc mov -0x4(%rbp),%eax | ||
101c: 0f af c0 imul %eax,%eax | ||
101f: 5d pop %rbp | ||
1020: c3 retq |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.