2010-09-21 00:24:38 +00:00
|
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck %s
|
|
|
|
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
|
|
|
// Test that this produces a regular local symbol.
|
|
|
|
.type common1,@object
|
|
|
|
.local common1
|
|
|
|
.comm common1,1,1
|
|
|
|
|
2010-10-19 17:39:10 +00:00
|
|
|
// CHECK: ('st_name', 0x00000001) # 'common1'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x0)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2010-09-21 00:24:38 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx',
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000000)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000001)
|
2010-09-21 00:24:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Same as common1, but with directives in a different order.
|
|
|
|
.local common2
|
|
|
|
.type common2,@object
|
|
|
|
.comm common2,1,1
|
|
|
|
|
2010-10-19 17:39:10 +00:00
|
|
|
// CHECK: ('st_name', 0x00000009) # 'common2'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x0)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2010-09-21 00:24:38 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx',
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000001)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000001)
|
2010-09-21 00:24:38 +00:00
|
|
|
|
2010-11-14 21:11:16 +00:00
|
|
|
.local common6
|
|
|
|
.comm common6,8,16
|
|
|
|
|
2011-08-04 14:27:46 +00:00
|
|
|
// CHECK: # Symbol 3
|
2010-11-14 21:11:16 +00:00
|
|
|
// CHECK-NEXT: (('st_name', 0x00000011) # 'common6'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x0)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2011-08-04 15:50:13 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx', 0x0004)
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000010)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000008)
|
2010-11-14 21:11:16 +00:00
|
|
|
// CHECK-NEXT: ),
|
|
|
|
|
2010-09-21 00:24:38 +00:00
|
|
|
// Test that without an explicit .local we produce a global.
|
|
|
|
.type common3,@object
|
|
|
|
.comm common3,4,4
|
|
|
|
|
2010-11-14 21:11:16 +00:00
|
|
|
// CHECK: ('st_name', 0x00000019) # 'common3'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x1)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2011-08-04 15:50:13 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx', 0xfff2)
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000004)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000004)
|
2010-09-21 00:24:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Test that without an explicit .local we produce a global, even if the first
|
|
|
|
// occurrence is not in a directive.
|
|
|
|
.globl foo
|
|
|
|
.type foo,@function
|
|
|
|
foo:
|
|
|
|
movsbl common4+3(%rip), %eax
|
|
|
|
|
|
|
|
|
|
|
|
.type common4,@object
|
|
|
|
.comm common4,40,16
|
|
|
|
|
2010-11-14 21:11:16 +00:00
|
|
|
// CHECK: ('st_name', 0x00000025) # 'common4'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x1)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2011-08-04 15:50:13 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx', 0xfff2)
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000010)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000028)
|
2010-11-14 19:40:55 +00:00
|
|
|
|
|
|
|
.comm common5,4,4
|
|
|
|
|
2011-08-04 14:27:46 +00:00
|
|
|
// CHECK: # Symbol 9
|
2010-11-14 21:11:16 +00:00
|
|
|
// CHECK-NEXT: (('st_name', 0x0000002d) # 'common5'
|
2011-08-04 15:10:35 +00:00
|
|
|
// CHECK-NEXT: ('st_bind', 0x1)
|
2011-08-04 15:24:00 +00:00
|
|
|
// CHECK-NEXT: ('st_type', 0x1)
|
2011-08-04 15:38:19 +00:00
|
|
|
// CHECK-NEXT: ('st_other', 0x00)
|
2011-08-04 15:50:13 +00:00
|
|
|
// CHECK-NEXT: ('st_shndx', 0xfff2)
|
2010-12-20 20:49:43 +00:00
|
|
|
// CHECK-NEXT: ('st_value', 0x0000000000000004)
|
|
|
|
// CHECK-NEXT: ('st_size', 0x0000000000000004)
|
2010-11-14 19:40:55 +00:00
|
|
|
// CHECK-NEXT: ),
|