mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
2d21b25393
This patch changes GlobalAlias to point to an arbitrary ConstantExpr and it is up to MC (or the system assembler) to decide if that expression is valid or not. This reduces our ability to diagnose invalid uses and how early we can spot them, but it also lets us do things like @test5 = alias inttoptr(i32 sub (i32 ptrtoint (i32* @test2 to i32), i32 ptrtoint (i32* @bar to i32)) to i32*) An important implication of this patch is that the notion of aliased global doesn't exist any more. The alias has to encode the information needed to access it in its metadata (linkage, visibility, type, etc). Another consequence to notice is that getSection has to return a "const char *". It could return a NullTerminatedStringRef if there was such a thing, but when that was proposed the decision was to just uses "const char*" for that. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210062 91177308-0d34-0410-b5e6-96231b3b80d8
29 lines
922 B
LLVM
29 lines
922 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
|
|
@v1 = global i32 0
|
|
; CHECK: @v1 = global i32 0
|
|
|
|
@v2 = global [1 x i32] zeroinitializer
|
|
; CHECK: @v2 = global [1 x i32] zeroinitializer
|
|
|
|
@v3 = global [2 x i16] zeroinitializer
|
|
; CHECK: @v3 = global [2 x i16] zeroinitializer
|
|
|
|
@a1 = alias bitcast (i32* @v1 to i16*)
|
|
; CHECK: @a1 = alias bitcast (i32* @v1 to i16*)
|
|
|
|
@a2 = alias bitcast([1 x i32]* @v2 to i32*)
|
|
; CHECK: @a2 = alias getelementptr inbounds ([1 x i32]* @v2, i32 0, i32 0)
|
|
|
|
@a3 = alias addrspacecast (i32* @v1 to i32 addrspace(2)*)
|
|
; CHECK: @a3 = alias addrspacecast (i32* @v1 to i32 addrspace(2)*)
|
|
|
|
@a4 = alias bitcast (i32* @v1 to i16*)
|
|
; CHECK: @a4 = alias bitcast (i32* @v1 to i16*)
|
|
|
|
@a5 = thread_local(localdynamic) alias i32* @v1
|
|
; CHECK: @a5 = thread_local(localdynamic) alias i32* @v1
|
|
|
|
@a6 = alias getelementptr ([2 x i16]* @v3, i32 1, i32 1)
|
|
; CHECK: @a6 = alias getelementptr ([2 x i16]* @v3, i32 1, i32 1)
|