forked from carbon-language/carbon-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
188 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
// TIP: To test this file alone, run: | ||
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/global/class_obj.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/global/class_obj.carbon | ||
class A {} | ||
|
||
var a: A = {}; | ||
|
||
// CHECK:STDOUT: ; ModuleID = 'class_obj.carbon' | ||
// CHECK:STDOUT: source_filename = "class_obj.carbon" | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 0, ptr @__global_init, ptr null }] | ||
// CHECK:STDOUT: @a = internal global {} | ||
// CHECK:STDOUT: @struct.loc12_14 = internal constant {} zeroinitializer | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define void @__global_init() { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 @a, ptr align 1 @struct.loc12_14, i64 0, i1 false) | ||
// CHECK:STDOUT: ret void | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) | ||
// CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #0 | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: attributes #0 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
// TIP: To test this file alone, run: | ||
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/global/class_with_fun.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/global/class_with_fun.carbon | ||
class A {} | ||
|
||
fn ret_a() -> A { | ||
return {}; | ||
} | ||
|
||
var a: A = {}; | ||
|
||
// CHECK:STDOUT: ; ModuleID = 'class_with_fun.carbon' | ||
// CHECK:STDOUT: source_filename = "class_with_fun.carbon" | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 0, ptr @__global_init, ptr null }] | ||
// CHECK:STDOUT: @a = internal global {} | ||
// CHECK:STDOUT: @struct.loc13_12 = internal constant {} zeroinitializer | ||
// CHECK:STDOUT: @struct.loc16_14 = internal constant {} zeroinitializer | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define void @ret_a(ptr sret({}) %return) { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 %return, ptr align 1 @struct.loc13_12, i64 0, i1 false) | ||
// CHECK:STDOUT: ret void | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define void @__global_init() { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 @a, ptr align 1 @struct.loc16_14, i64 0, i1 false) | ||
// CHECK:STDOUT: ret void | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite) | ||
// CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #0 | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: ; uselistorder directives | ||
// CHECK:STDOUT: uselistorder ptr @llvm.memcpy.p0.p0.i64, { 1, 0 } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: attributes #0 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
// TIP: To test this file alone, run: | ||
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/global/decl.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/global/decl.carbon | ||
var a: i32; | ||
|
||
// CHECK:STDOUT: ; ModuleID = 'decl.carbon' | ||
// CHECK:STDOUT: source_filename = "decl.carbon" | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: @a = internal global i32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
// TIP: To test this file alone, run: | ||
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/global/simple_init.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/global/simple_init.carbon | ||
var a: i32 = 0; | ||
|
||
// CHECK:STDOUT: ; ModuleID = 'simple_init.carbon' | ||
// CHECK:STDOUT: source_filename = "simple_init.carbon" | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 0, ptr @__global_init, ptr null }] | ||
// CHECK:STDOUT: @a = internal global i32 | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define void @__global_init() { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: store i32 0, ptr @a, align 4 | ||
// CHECK:STDOUT: ret void | ||
// CHECK:STDOUT: } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM | ||
// Exceptions. See /LICENSE for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
// AUTOUPDATE | ||
// TIP: To test this file alone, run: | ||
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/global/simple_with_fun.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/global/simple_with_fun.carbon | ||
|
||
fn test_a() -> i32 { | ||
return 0; | ||
} | ||
|
||
var a: i32 = test_a(); | ||
|
||
// CHECK:STDOUT: ; ModuleID = 'simple_with_fun.carbon' | ||
// CHECK:STDOUT: source_filename = "simple_with_fun.carbon" | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 0, ptr @__global_init, ptr null }] | ||
// CHECK:STDOUT: @a = internal global i32 | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define i32 @test_a() { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: ret i32 0 | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: define void @__global_init() { | ||
// CHECK:STDOUT: entry: | ||
// CHECK:STDOUT: %test_a.call = call i32 @test_a() | ||
// CHECK:STDOUT: store i32 %test_a.call, ptr @a, align 4 | ||
// CHECK:STDOUT: ret void | ||
// CHECK:STDOUT: } |