File: macho-literals.test

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,388 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (63 lines) | stat: -rw-r--r-- 2,741 bytes parent folder | download | duplicates (13)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal4 - | FileCheck %s -check-prefix=CHECK-LIT4
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal4 -non-verbose - | FileCheck %s -check-prefix=NON-VERBOSE-LIT4
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal8 - | FileCheck %s -check-prefix=CHECK-LIT8
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal8 -non-verbose - | FileCheck %s -check-prefix=NON-VERBOSE-LIT8
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal16 - | FileCheck %s -check-prefix=CHECK-LIT16
# RUN: llvm-mc < %s -triple x86_64-apple-darwin -filetype=obj | llvm-objdump -m -section __TEXT,__literal16 -non-verbose - | FileCheck %s -check-prefix=NON-VERBOSE-LIT16

.literal4
.float 2.5
.float 8.25
.long 0x7f800000
.long 0xff800000
.long 0x7fc00000
.long 0x7f800001

# CHECK-LIT4: Contents of (__TEXT,__literal4) section
# CHECK-LIT4: 0000000000000000  0x40200000
# CHECK-LIT4: 0000000000000004  0x41040000
# CHECK-LIT4: 0000000000000008  0x7f800000
# CHECK-LIT4: 000000000000000c  0xff800000
# CHECK-LIT4: 0000000000000010  0x7fc00000
# CHECK-LIT4: 0000000000000014  0x7f800001

# NON-VERBOSE-LIT4: Contents of (__TEXT,__literal4) section
# NON-VERBOSE-LIT4: 0000000000000000	00 00 20 40 00 00 04 41 00 00 80 7f 00 00 80 ff 
# NON-VERBOSE-LIT4: 0000000000000010	00 00 c0 7f 01 00 80 7f 

.literal8
.double 2.5
.double 8.25
.long 0
.long 0x7ff00000
.long 0
.long 0xfff00000
.long 0
.long 0x7ff80000
.long 1
.long 0x7ff00000

# CHECK-LIT8: Contents of (__TEXT,__literal8) section
# CHECK-LIT8: 0000000000000018  0x00000000 0x40040000
# CHECK-LIT8: 0000000000000020  0x00000000 0x40208000
# CHECK-LIT8: 0000000000000028  0x00000000 0x7ff00000
# CHECK-LIT8: 0000000000000030  0x00000000 0xfff00000
# CHECK-LIT8: 0000000000000038  0x00000000 0x7ff80000
# CHECK-LIT8: 0000000000000040  0x00000001 0x7ff00000

# NON-VERBOSE-LIT8: Contents of (__TEXT,__literal8) section
# NON-VERBOSE-LIT8: 0000000000000018	00 00 00 00 00 00 04 40 00 00 00 00 00 80 20 40 
# NON-VERBOSE-LIT8: 0000000000000028	00 00 00 00 00 00 f0 7f 00 00 00 00 00 00 f0 ff 
# NON-VERBOSE-LIT8: 0000000000000038	00 00 00 00 00 00 f8 7f 01 00 00 00 00 00 f0 7f 

.literal16
.long 1
.long 2
.long 3
.long 4

# CHECK-LIT16: Contents of (__TEXT,__literal16) section
# CHECK-LIT16: 0000000000000050  0x00000001 0x00000002 0x00000003 0x00000004

# NON-VERBOSE-LIT16: Contents of (__TEXT,__literal16) section
# NON-VERBOSE-LIT16: 0000000000000050	01 00 00 00 02 00 00 00 03 00 00 00 04 00 00 00