File: alias.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (37 lines) | stat: -rw-r--r-- 1,357 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; RUN: llvm-link %s %S/Inputs/alias.ll -S -o - | FileCheck --check-prefix=C1 %s
; RUN: llvm-link %S/Inputs/alias.ll %s -S -o - | FileCheck --check-prefix=C2 %s

; FIXME:
; The C1 direction is incorrect.
; When moving an alias to an existing module and we want to discard the aliasee
; (the C2 case), the IRMover knows to copy the aliasee as internal.
; When moving a replacement to an aliasee to a module that has an alias (C1),
; a replace all uses with blindly changes the alias.
; The C1 case doesn't happen when using a system linker with a plugin because
; the linker does full symbol resolution first.
; Given that this is a problem only with llvm-link and its 1 module at a time
; linking, it should probably learn to changes the aliases in the destination
; before using the IRMover.

@foo = weak global i32 0
; C1-DAG: @foo = alias i32, ptr @zed
; C2-DAG: @foo = alias i32, ptr @zed

@bar = alias i32, ptr @foo
; C1-DAG: @bar = alias i32, ptr @foo

; C2-DAG: @foo.1 = internal global i32 0
; C2-DAG: @bar = alias i32, ptr @foo.1

@foo2 = weak global i32 0
; C1-DAG: @foo2 = alias i16, ptr @zed
; C2-DAG: @foo2 = alias i16, ptr @zed

@bar2 = alias i32, ptr @foo2
; C1-DAG: @bar2 = alias i32, ptr @foo2

; C2-DAG: @foo2.2 = internal global i32 0
; C2-DAG: @bar2 = alias i32, ptr @foo2.2

; C1-DAG: @zed = global i32 42
; C2-DAG: @zed = global i32 42