File: dis-symname.test

package info (click to toggle)
swiftlang 6.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,791,604 kB
  • sloc: cpp: 9,901,740; ansic: 2,201,431; asm: 1,091,827; python: 308,252; objc: 82,166; f90: 80,126; lisp: 38,358; pascal: 25,559; sh: 20,429; ml: 5,058; perl: 4,745; makefile: 4,484; awk: 3,535; javascript: 3,018; xml: 918; fortran: 664; cs: 573; ruby: 396
file content (26 lines) | stat: -rw-r--r-- 1,218 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# RUN: llvm-objdump --macho -d %p/Inputs/exeThread.macho-x86_64 --dis-symname start --no-show-raw-insn --full-leading-addr --print-imm-hex | FileCheck %s
# RUN: llvm-otool -tV %p/Inputs/exeThread.macho-x86_64 -p start | FileCheck %s

# CHECK: (__TEXT,__text) section
# CHECK: start:
# CHECK: 0000000100000d00	pushq	$0x0
# CHECK: 0000000100000d02	movq	%rsp, %rbp
# CHECK: 0000000100000d05	andq	$-0x10, %rsp
# CHECK: 0000000100000d09	movq	0x8(%rbp), %rdi
# CHECK: 0000000100000d0d	leaq	0x10(%rbp), %rsi
# CHECK: 0000000100000d11	movl	%edi, %edx
# CHECK: 0000000100000d13	addl	$0x1, %edx
# CHECK: 0000000100000d16	shll	$0x3, %edx
# CHECK: 0000000100000d19	addq	%rsi, %rdx
# CHECK: 0000000100000d1c	callq	__start
# CHECK: 0000000100000d21	hlt

# CHECK-NOT: __start:
# CHECK-NOT: 0000000100000d22
# CHECK-NOT: _main:

# RUN: llvm-objdump --macho -d %p/Inputs/exeThread.macho-x86_64 --dis-symname _environ 2>&1 | FileCheck --check-prefix BAD-SYMAME-1 %s
BAD-SYMAME-1: -dis-symname: _environ not in the section

# RUN: llvm-objdump --macho -d %p/Inputs/exeThread.macho-x86_64 --dis-symname __mh_execute_header 2>&1 | FileCheck --check-prefix BAD-SYMAME-2 %s
BAD-SYMAME-2: -dis-symname: __mh_execute_header not in any section