mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
621386835e
Without this change, names start with 'L' will get created as temporary symbol in MCContext::createSymbol. Some other potential prefix considered: .L, does not work for AIX, as a function start with L will end up with .L as prefix for its function entry point. ..L could work, but it does not play well with the convention on AIX that anything start with '.' are considered as entry point. L. could work, but not sure if it's safe enough, as it's possible to have suffixes like .something append to a plain L, giving L.something which is not necessarily a temporary. That's why we picked L.. for now. Differential Revision: https://reviews.llvm.org/D80831
65 lines
2.4 KiB
LLVM
65 lines
2.4 KiB
LLVM
;; Test to make sure a symbol name that starts with an 'L' could be succesfully
|
|
;; consumed. Note that this could fail if PrivateGlobalPrefix returns
|
|
;; 'L'/'.L' instead of 'L..' because the resulting symbol gets created as
|
|
;; a temporary symbol.
|
|
|
|
; RUN: llc -verify-machineinstrs -mtriple powerpc-ibm-aix-xcoff -mcpu=pwr4 \
|
|
; RUN: -mattr=-altivec -filetype=obj -o %t.o < %s
|
|
; RUN: llvm-readobj --symbols %t.o | \
|
|
; RUN: FileCheck --check-prefix=XCOFF32 %s
|
|
|
|
; RUN: not --crash llc -verify-machineinstrs -mtriple powerpc64-ibm-aix-xcoff \
|
|
; RUN: -mcpu=pwr4 -mattr=-altivec -filetype=obj -o %t.o 2>&1 < %s | \
|
|
; RUN: FileCheck --check-prefix=XCOFF64 %s
|
|
; XCOFF64: LLVM ERROR: 64-bit XCOFF object files are not supported yet.
|
|
|
|
@La = external global i32, align 4
|
|
|
|
declare i32 @Lb(...)
|
|
|
|
define void @foo() {
|
|
entry:
|
|
store i32 1, i32* @La, align 4
|
|
call i32 bitcast (i32 (...)* @Lb to i32 ()*)()
|
|
ret void
|
|
}
|
|
|
|
; XCOFF32: Index: [[#IND:]]{{.*}}{{[[:space:]] *}}Name: .Lb
|
|
; XCOFF32-NEXT: Value (RelocatableAddress): 0x0
|
|
; XCOFF32-NEXT: Section: N_UNDEF
|
|
; XCOFF32-NEXT: Type: 0x0
|
|
; XCOFF32-NEXT: StorageClass: C_EXT (0x2)
|
|
; XCOFF32-NEXT: NumberOfAuxEntries: 1
|
|
; XCOFF32-NEXT: CSECT Auxiliary Entry {
|
|
; XCOFF32-NEXT: Index: [[#IND+1]]
|
|
; XCOFF32-NEXT: SectionLen: 0
|
|
; XCOFF32-NEXT: ParameterHashIndex: 0x0
|
|
; XCOFF32-NEXT: TypeChkSectNum: 0x0
|
|
; XCOFF32-NEXT: SymbolAlignmentLog2: 0
|
|
; XCOFF32-NEXT: SymbolType: XTY_ER (0x0)
|
|
; XCOFF32-NEXT: StorageMappingClass: XMC_PR (0x0)
|
|
; XCOFF32-NEXT: StabInfoIndex: 0x0
|
|
; XCOFF32-NEXT: StabSectNum: 0x0
|
|
; XCOFF32-NEXT: }
|
|
; XCOFF32-NEXT: }
|
|
; XCOFF32-NEXT: Symbol {
|
|
; XCOFF32-NEXT: Index: [[#IND+2]]
|
|
; XCOFF32-NEXT: Name: La
|
|
; XCOFF32-NEXT: Value (RelocatableAddress): 0x0
|
|
; XCOFF32-NEXT: Section: N_UNDEF
|
|
; XCOFF32-NEXT: Type: 0x0
|
|
; XCOFF32-NEXT: StorageClass: C_EXT (0x2)
|
|
; XCOFF32-NEXT: NumberOfAuxEntries: 1
|
|
; XCOFF32-NEXT: CSECT Auxiliary Entry {
|
|
; XCOFF32-NEXT: Index: [[#IND+3]]
|
|
; XCOFF32-NEXT: SectionLen: 0
|
|
; XCOFF32-NEXT: ParameterHashIndex: 0x0
|
|
; XCOFF32-NEXT: TypeChkSectNum: 0x0
|
|
; XCOFF32-NEXT: SymbolAlignmentLog2: 0
|
|
; XCOFF32-NEXT: SymbolType: XTY_ER (0x0)
|
|
; XCOFF32-NEXT: StorageMappingClass: XMC_UA (0x4)
|
|
; XCOFF32-NEXT: StabInfoIndex: 0x0
|
|
; XCOFF32-NEXT: StabSectNum: 0x0
|
|
; XCOFF32-NEXT: }
|
|
; XCOFF32-NEXT: }
|