1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Linker/visibility.ll
David Blaikie 65b92c4f37 [opaque pointer type] Add textual IR support for explicit type parameter for global aliases
update.py:
import fileinput
import sys
import re

alias_match_prefix = r"(.*(?:=|:|^)\s*(?:external |)(?:(?:private|internal|linkonce|linkonce_odr|weak|weak_odr|common|appending|extern_weak|available_externally) )?(?:default |hidden |protected )?(?:dllimport |dllexport )?(?:unnamed_addr |)(?:thread_local(?:\([a-z]*\))? )?alias"
plain = re.compile(alias_match_prefix + r" (.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|addrspacecast|\[\[[a-zA-Z]|\{\{).*$)")
cast  = re.compile(alias_match_prefix + r") ((?:bitcast|inttoptr|addrspacecast)\s*\(.* to (.*?)(| addrspace\(\d+\) *)\*\)\s*(?:;.*)?$)")
gep   = re.compile(alias_match_prefix + r") ((?:getelementptr)\s*(?:inbounds)?\s*\((?P<type>.*), (?P=type)(?:\s*addrspace\(\d+\)\s*)?\* .*\)\s*(?:;.*)?$)")

def conv(line):
  m = re.match(cast, line)
  if m:
    return m.group(1) + " " + m.group(3) + ", " + m.group(2)
  m = re.match(gep, line)
  if m:
    return m.group(1) + " " + m.group(3) + ", " + m.group(2)
  m = re.match(plain, line)
  if m:
    return m.group(1) + ", " + m.group(2) + m.group(3) + "*" + m.group(4) + "\n"
  return line

for line in sys.stdin:
  sys.stdout.write(conv(line))

apply.sh:
for name in "$@"
do
  python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name"
  rm -f "$name.tmp"
done

The actual commands:
From llvm/src:
find test/ -name *.ll | xargs ./apply.sh
From llvm/src/tools/clang:
find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}"
From llvm/src/tools/polly:
find test/ -name *.ll | xargs ./apply.sh

llvm-svn: 247378
2015-09-11 03:22:04 +00:00

52 lines
1.0 KiB
LLVM

; RUN: llvm-link %s %p/Inputs/visibility.ll -S | FileCheck %s
; RUN: llvm-link %p/Inputs/visibility.ll %s -S | FileCheck %s
; The values in this file are strong, the ones in Inputs/visibility.ll are weak,
; but we should still get the visibility from them.
$c1 = comdat any
; Variables
; CHECK-DAG: @v1 = hidden global i32 0
@v1 = global i32 0
; CHECK-DAG: @v2 = protected global i32 0
@v2 = global i32 0
; CHECK-DAG: @v3 = hidden global i32 0
@v3 = protected global i32 0
; CHECK-DAG: @v4 = hidden global i32 1, comdat($c1)
@v4 = global i32 1, comdat($c1)
; Aliases
; CHECK: @a1 = hidden alias i32, i32* @v1
@a1 = alias i32, i32* @v1
; CHECK: @a2 = protected alias i32, i32* @v2
@a2 = alias i32, i32* @v2
; CHECK: @a3 = hidden alias i32, i32* @v3
@a3 = protected alias i32, i32* @v3
; Functions
; CHECK: define hidden void @f1()
define void @f1() {
entry:
ret void
}
; CHECK: define protected void @f2()
define void @f2() {
entry:
ret void
}
; CHECK: define hidden void @f3()
define protected void @f3() {
entry:
ret void
}