function_param.carbon 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. fn F(arr: [i32; 3], i: i32) -> i32 {
  7. return arr[i];
  8. }
  9. fn G() -> i32 {
  10. return F((1, 2, 3), 1);
  11. }
  12. // CHECK:STDOUT: ; ModuleID = 'function_param.carbon'
  13. // CHECK:STDOUT: source_filename = "function_param.carbon"
  14. // CHECK:STDOUT:
  15. // CHECK:STDOUT: @tuple = internal constant [3 x i32] [i32 1, i32 2, i32 3]
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: define i32 @F(ptr %arr, i32 %i) {
  18. // CHECK:STDOUT: entry:
  19. // CHECK:STDOUT: %.loc8_15.2.array.index = getelementptr inbounds [3 x i32], ptr %arr, i32 0, i32 %i
  20. // CHECK:STDOUT: %.loc8_15.3 = load i32, ptr %.loc8_15.2.array.index, align 4
  21. // CHECK:STDOUT: ret i32 %.loc8_15.3
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: define i32 @G() {
  25. // CHECK:STDOUT: entry:
  26. // CHECK:STDOUT: %.loc12_20.2.temp = alloca [3 x i32], align 4
  27. // CHECK:STDOUT: %.loc12_20.4.array.index = getelementptr inbounds [3 x i32], ptr %.loc12_20.2.temp, i32 0, i32 0
  28. // CHECK:STDOUT: %.loc12_20.7.array.index = getelementptr inbounds [3 x i32], ptr %.loc12_20.2.temp, i32 0, i32 1
  29. // CHECK:STDOUT: %.loc12_20.10.array.index = getelementptr inbounds [3 x i32], ptr %.loc12_20.2.temp, i32 0, i32 2
  30. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %.loc12_20.2.temp, ptr align 4 @tuple, i64 12, i1 false)
  31. // CHECK:STDOUT: %F.call = call i32 @F(ptr %.loc12_20.2.temp, i32 1)
  32. // CHECK:STDOUT: ret i32 %F.call
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  36. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias nocapture writeonly, ptr noalias nocapture readonly, i64, i1 immarg) #0
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: attributes #0 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }