File: exclude-names.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 (58 lines) | stat: -rw-r--r-- 1,980 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
; RUN: opt -passes=metarenamer -rename-exclude-function-prefixes=my_func -rename-exclude-global-prefixes=my_global -rename-exclude-struct-prefixes=my_struct -rename-exclude-alias-prefixes=my_alias -S %s | FileCheck %s

; Check that excluded names don't get renamed while all the other ones do

; CHECK: %my_struct1 = type { ptr, i32 }
; CHECK: %my_struct2 = type { ptr, i32 }
; CHECK-NOT: %other_struct = type { ptr, i32 }
; CHECK: @my_global1 = global i32 42
; CHECK: @my_global2 = global i32 24
; CHECK-NOT: @other_global = global i32 24
; CHECK: @my_alias1 = alias i32, ptr @my_global1
; CHECK: @my_alias2 = alias i32, ptr @my_global2
; CHECK-NOT: @other_alias = alias i32, ptr @other_global
; CHECK: declare void @my_func1
; CHECK: declare void @my_func2
; CHECK-NOT: declare void @other_func

; CHECK: call void @my_func1
; CHECK: call void @my_func2
; CHECK-NOT: call void @other_func
; CHECK: load i32, ptr @my_global1
; CHECK: load i32, ptr @my_global2
; CHECK-NOT: load i32, ptr @other_global
; CHECK: load i32, ptr @my_alias1
; CHECK: load i32, ptr @my_alias2
; CHECK-NOT: load i32, ptr @other_alias
; CHECK: alloca %my_struct1
; CHECK: alloca %my_struct2
; CHECK-NOT: alloca %other_struct

%my_struct1 = type { ptr, i32 }
%my_struct2 = type { ptr, i32 }
%other_struct = type { ptr, i32 }
@my_global1 = global i32 42
@my_global2 = global i32 24
@other_global = global i32 24
@my_alias1 = alias i32, ptr @my_global1
@my_alias2 = alias i32, ptr @my_global2
@other_alias = alias i32, ptr @other_global
declare void @my_func1()
declare void @my_func2()
declare void @other_func()

define void @some_func() {
  call void @my_func1()
  call void @my_func2()
  call void @other_func()
  %a = load i32, ptr @my_global1
  %b = load i32, ptr @my_global2
  %c = load i32, ptr @other_global
  %d = load i32, ptr @my_alias1
  %e = load i32, ptr @my_alias2
  %f = load i32, ptr @other_alias
  %g = alloca %my_struct1
  %h = alloca %my_struct2
  %i = alloca %other_struct
  ret void
}