File: excess-embed-data.c

package info (click to toggle)
llvm-toolchain-21 1%3A21.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,235,796 kB
  • sloc: cpp: 7,617,614; ansic: 1,433,901; asm: 1,058,726; python: 252,096; f90: 94,671; objc: 70,753; lisp: 42,813; pascal: 18,401; sh: 10,032; ml: 5,111; perl: 4,720; awk: 3,523; makefile: 3,401; javascript: 2,272; xml: 892; fortran: 770
file content (55 lines) | stat: -rw-r--r-- 1,816 bytes parent folder | download | duplicates (4)
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
// RUN: %clang_cc1 -std=c23 -emit-llvm -triple x86_64 %s -o - | FileCheck %s

struct S {
  int arr[3];
};

struct S1 {
  struct S s;
};

// CHECK: @[[BConst:.*]] = private unnamed_addr constant [2 x i32] [i32 47, i32 47]
// CHECK: @[[DConst:.*]] = private unnamed_addr constant [2 x i8] c"//"
// CHECK: @[[SConst:.*]] = private unnamed_addr constant %struct.S { [3 x i32] [i32 47, i32 47, i32 32] }
// CHECK: @[[S1Const:.*]] = private unnamed_addr constant %struct.S1 { %struct.S { [3 x i32] [i32 47, i32 47, i32 32] } }

void cases(int x) {
  int a[3] = {x, x,
#embed __FILE__
  };

  int b[2] = {
#embed __FILE__
  };

  char d[2] = {
#embed __FILE__
  };

  struct S s = {
#embed __FILE__
  , x
  };

  struct S1 s1 = {
#embed __FILE__
  , x
  };
}
// CHECK: define dso_local void @cases(i32 noundef %[[X:.*]])
// CHECK:  %[[A:.*]] = alloca [3 x i32]
// CHECK:  %[[B:.*]] = alloca [2 x i32]
// CHECK:  %[[D:.*]] = alloca [2 x i8]
// CHECK:  %[[S:.*]] = alloca %struct.S
// CHECK:  %[[S1:.*]] = alloca %struct.S1
// CHECK:  %[[LX:.*]] = load i32, ptr %[[X]].addr
// CHECK:  store i32 %[[LX]], ptr %[[A]]
// CHECK:  %[[GEP1:.*]] = getelementptr inbounds i32, ptr %[[A]], i64 1
// CHECK:  %[[LX1:.*]] = load i32, ptr %[[X]].addr
// CHECK:  store i32 %1, ptr %arrayinit.element
// CHECK:  %[[GEP1:.*]] = getelementptr inbounds i32, ptr %[[A]], i64 2
// CHECK:  store i32 47, ptr %[[GEP1]]
// CHECK:  call void @llvm.memcpy.p0.p0.i64(ptr align 4 %[[B]], ptr align 4 @[[BConst]], i64 8, i1 false)
// CHECK:  call void @llvm.memcpy.p0.p0.i64(ptr align 1 %[[D]], ptr align 1 @[[DConst]], i64 2, i1 false)
// CHECK:  call void @llvm.memcpy.p0.p0.i64(ptr align 4 %[[S]], ptr align 4 @[[SConst]], i64 12, i1 false)
// CHECK:  call void @llvm.memcpy.p0.p0.i64(ptr align 4 %[[S1]], ptr align 4 @[[S1Const]], i64 12, i1 false)