textual_ir.carbon 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. // ARGS: compile --phase=check --dump-sem-ir %s
  6. //
  7. // Check that the command-line flag to dump textual IR works.
  8. //
  9. // AUTOUPDATE
  10. fn Foo(n: i32) -> (i32, i32, f64) {
  11. return (n, 2, 3.4);
  12. }
  13. // CHECK:STDOUT: --- textual_ir.carbon
  14. // CHECK:STDOUT:
  15. // CHECK:STDOUT: constants {
  16. // CHECK:STDOUT: %.1: type = tuple_type (type, type, type) [template]
  17. // CHECK:STDOUT: %.2: type = tuple_type (i32, i32, f64) [template]
  18. // CHECK:STDOUT: %.3: type = ptr_type (i32, i32, f64) [template]
  19. // CHECK:STDOUT: %.4: i32 = int_literal 2 [template]
  20. // CHECK:STDOUT: %.5: f64 = real_literal 34e-1 [template]
  21. // CHECK:STDOUT: }
  22. // CHECK:STDOUT:
  23. // CHECK:STDOUT: file {
  24. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  25. // CHECK:STDOUT: .Foo = %Foo
  26. // CHECK:STDOUT: }
  27. // CHECK:STDOUT: %Foo: <function> = fn_decl @Foo [template] {
  28. // CHECK:STDOUT: %n.loc11_8.1: i32 = param n
  29. // CHECK:STDOUT: @Foo.%n: i32 = bind_name n, %n.loc11_8.1
  30. // CHECK:STDOUT: %.loc11_33.1: (type, type, type) = tuple_literal (i32, i32, f64)
  31. // CHECK:STDOUT: %.loc11_33.2: type = converted %.loc11_33.1, constants.%.2 [template = constants.%.2]
  32. // CHECK:STDOUT: @Foo.%return: ref (i32, i32, f64) = var <return slot>
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT: }
  35. // CHECK:STDOUT:
  36. // CHECK:STDOUT: fn @Foo(%n: i32) -> %return: (i32, i32, f64) {
  37. // CHECK:STDOUT: !entry:
  38. // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
  39. // CHECK:STDOUT: %.loc12_14: i32 = int_literal 2 [template = constants.%.4]
  40. // CHECK:STDOUT: %.loc12_17: f64 = real_literal 34e-1 [template = constants.%.5]
  41. // CHECK:STDOUT: %.loc12_20.1: (i32, i32, f64) = tuple_literal (%n.ref, %.loc12_14, %.loc12_17)
  42. // CHECK:STDOUT: %.loc12_20.2: ref i32 = tuple_access %return, element0
  43. // CHECK:STDOUT: %.loc12_20.3: init i32 = initialize_from %n.ref to %.loc12_20.2
  44. // CHECK:STDOUT: %.loc12_20.4: ref i32 = tuple_access %return, element1
  45. // CHECK:STDOUT: %.loc12_20.5: init i32 = initialize_from %.loc12_14 to %.loc12_20.4 [template = constants.%.4]
  46. // CHECK:STDOUT: %.loc12_20.6: ref f64 = tuple_access %return, element2
  47. // CHECK:STDOUT: %.loc12_20.7: init f64 = initialize_from %.loc12_17 to %.loc12_20.6 [template = constants.%.5]
  48. // CHECK:STDOUT: %.loc12_20.8: init (i32, i32, f64) = tuple_init (%.loc12_20.3, %.loc12_20.5, %.loc12_20.7) to %return
  49. // CHECK:STDOUT: %.loc12_20.9: init (i32, i32, f64) = converted %.loc12_20.1, %.loc12_20.8
  50. // CHECK:STDOUT: return %.loc12_20.9
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT: