mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
b6710ff7c7
ARM symbol variants are written with parens instead of @ like this: .word __GLOBAL_I_a(target1) This commit adds support for parsing these symbol variants in expressions. We introduce a new flag to MCAsmInfo that indicates the parser should use parens to parse the symbol variant. The expression parser is modified to look for symbol variants using parens instead of @ when the corresponding MCAsmInfo flag is true. The MCAsmInfo parens flag is enabled only for ARM on ELF. By adding this flag to MCAsmInfo, we are able to get rid of redundant ARM-specific symbol variants and use the generic variants instead (e.g. VK_GOT instead of VK_ARM_GOT). We use the new UseParensForSymbolVariant attribute in MCAsmInfo to correctly print the symbol variants for arm. To achive this we need to keep a handle to the MCAsmInfo in the MCSymbolRefExpr class that we can check when printing the symbol variant. Updated Tests: Changed case of symbol variant to match the generic kind. test/CodeGen/ARM/tls-models.ll test/CodeGen/ARM/tls1.ll test/CodeGen/ARM/tls2.ll test/CodeGen/Thumb2/tls1.ll test/CodeGen/Thumb2/tls2.ll PR18080 llvm-svn: 196424
24 lines
552 B
ArmAsm
24 lines
552 B
ArmAsm
@ RUN: not llvm-mc < %s -triple armv7-none-linux-gnueabi 2>&1 | FileCheck %s
|
|
|
|
@ check for invalid variant
|
|
f1:
|
|
bl bar(blargh)
|
|
@CHECK: error: invalid variant 'blargh'
|
|
@CHECK: bl bar(blargh)
|
|
@CHECK: ^
|
|
|
|
@ check for missing closed paren
|
|
f2:
|
|
.word bar(got
|
|
@CHECK: error: unexpected token in variant, expected ')'
|
|
@CHECK: .word bar(got
|
|
@CHECK: ^
|
|
|
|
@ check for invalid symbol before variant end
|
|
f3:
|
|
.word bar(got+2)
|
|
|
|
@CHECK: error: unexpected token in variant, expected ')'
|
|
@CHECK: .word bar(got+2)
|
|
@CHECK: ^
|