blob: f34b76a278e74fc08cc6ba5354c4c7ad3f4c78d0 [file] [log] [blame]
Hans Wennborgce69d772013-10-18 20:46:28 +00001; Check how tricky symbols are printed in the asm output.
2; RUN: llc -mtriple=i686-pc-win32 %s -o - | FileCheck %s --check-prefix=ASM
3
4; Check that we can roundtrip these names through our assembler.
5; RUN: llc -mtriple=i686-pc-win32 %s -o - | llvm-mc -triple i686-pc-win32 -filetype=obj | llvm-readobj -t | FileCheck %s --check-prefix=READOBJ
6
7
8@"\01??__E_Generic_object@?$_Error_objects@H@std@@YAXXZ" = global i32 0
9@"\01__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4" = global i32 0
10@"\01@foo.bar" = global i32 0
11
12define weak i32 @"\01??_B?$num_put@_WV?$back_insert_iterator@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@std@@@std@@51"() section ".text" {
David Blaikiea79ac142015-02-27 21:17:42 +000013 %a = load i32, i32* @"\01??__E_Generic_object@?$_Error_objects@H@std@@YAXXZ"
14 %b = load i32, i32* @"\01__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4"
15 %c = load i32, i32* @"\01@foo.bar"
Hans Wennborgce69d772013-10-18 20:46:28 +000016 %x = add i32 %a, %b
17 %y = add i32 %x, %c
18 ret i32 %y
19}
20
21; Check that these symbols are not quoted. They occur in output that gets passed to GAS.
22; ASM: .globl __ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4
23; ASM-NOT: .globl "__ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4"
24; ASM: .globl @foo.bar
25; ASM-NOT: .globl "@foo.bar"
26
27; READOBJ: Symbol
Rafael Espindola2d30ae22013-11-27 01:18:37 +000028; READOBJ: Name: .text
29; READOBJ: Section: .text
Hans Wennborgce69d772013-10-18 20:46:28 +000030; READOBJ: Symbol
31; READOBJ: Name: ??_B?$num_put@_WV?$back_insert_iterator@V?$basic_string@_WU?$char_traits@_W@std@@V?$allocator@_W@2@@std@@@std@@@std@@51
Rafael Espindola2d30ae22013-11-27 01:18:37 +000032; READOBJ: Section: .text
Hans Wennborgce69d772013-10-18 20:46:28 +000033; READOBJ: Symbol
34; READOBJ: Name: ??__E_Generic_object@?$_Error_objects@H@std@@YAXXZ
35; READOBJ: Symbol
36; READOBJ: Name: __ZL16ExceptionHandlerP19_EXCEPTION_POINTERS@4
37; READOBJ: Symbol
38; READOBJ: Name: @foo.bar