basic.carbon 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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(b: bool, n: i32, m: i32) -> i32 {
  7. var x: [i32; 1] = (0,);
  8. return if b then x[m] else x[n];
  9. }
  10. // CHECK:STDOUT: --- basic.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %F: type = fn_type @F [template]
  14. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  15. // CHECK:STDOUT: %struct: F = struct_value () [template]
  16. // CHECK:STDOUT: %.2: i32 = int_literal 1 [template]
  17. // CHECK:STDOUT: %.3: type = array_type %.2, i32 [template]
  18. // CHECK:STDOUT: %.4: type = ptr_type [i32; 1] [template]
  19. // CHECK:STDOUT: %.5: i32 = int_literal 0 [template]
  20. // CHECK:STDOUT: %.6: type = tuple_type (i32) [template]
  21. // CHECK:STDOUT: %array: [i32; 1] = tuple_value (%.5) [template]
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: file {
  25. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  26. // CHECK:STDOUT: .Core = %Core
  27. // CHECK:STDOUT: .F = %F.decl
  28. // CHECK:STDOUT: }
  29. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  30. // CHECK:STDOUT: %F.decl: F = fn_decl @F [template = constants.%struct] {
  31. // CHECK:STDOUT: %b.loc7_6.1: bool = param b
  32. // CHECK:STDOUT: @F.%b: bool = bind_name b, %b.loc7_6.1
  33. // CHECK:STDOUT: %n.loc7_15.1: i32 = param n
  34. // CHECK:STDOUT: @F.%n: i32 = bind_name n, %n.loc7_15.1
  35. // CHECK:STDOUT: %m.loc7_23.1: i32 = param m
  36. // CHECK:STDOUT: @F.%m: i32 = bind_name m, %m.loc7_23.1
  37. // CHECK:STDOUT: @F.%return: ref i32 = var <return slot>
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT:
  41. // CHECK:STDOUT: fn @F(%b: bool, %n: i32, %m: i32) -> i32 {
  42. // CHECK:STDOUT: !entry:
  43. // CHECK:STDOUT: %.loc8_16: i32 = int_literal 1 [template = constants.%.2]
  44. // CHECK:STDOUT: %.loc8_17: type = array_type %.loc8_16, i32 [template = constants.%.3]
  45. // CHECK:STDOUT: %x.var: ref [i32; 1] = var x
  46. // CHECK:STDOUT: %x: ref [i32; 1] = bind_name x, %x.var
  47. // CHECK:STDOUT: %.loc8_22: i32 = int_literal 0 [template = constants.%.5]
  48. // CHECK:STDOUT: %.loc8_24.1: (i32,) = tuple_literal (%.loc8_22)
  49. // CHECK:STDOUT: %.loc8_24.2: i32 = int_literal 0 [template = constants.%.5]
  50. // CHECK:STDOUT: %.loc8_24.3: ref i32 = array_index %x.var, %.loc8_24.2
  51. // CHECK:STDOUT: %.loc8_24.4: init i32 = initialize_from %.loc8_22 to %.loc8_24.3 [template = constants.%.5]
  52. // CHECK:STDOUT: %.loc8_24.5: init [i32; 1] = array_init (%.loc8_24.4) to %x.var [template = constants.%array]
  53. // CHECK:STDOUT: %.loc8_25: init [i32; 1] = converted %.loc8_24.1, %.loc8_24.5 [template = constants.%array]
  54. // CHECK:STDOUT: assign %x.var, %.loc8_25
  55. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b
  56. // CHECK:STDOUT: if %b.ref br !if.expr.then else br !if.expr.else
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: !if.expr.then:
  59. // CHECK:STDOUT: %x.ref.loc9_20: ref [i32; 1] = name_ref x, %x
  60. // CHECK:STDOUT: %m.ref: i32 = name_ref m, %m
  61. // CHECK:STDOUT: %.loc9_23.1: ref i32 = array_index %x.ref.loc9_20, %m.ref
  62. // CHECK:STDOUT: %.loc9_23.2: i32 = bind_value %.loc9_23.1
  63. // CHECK:STDOUT: br !if.expr.result(%.loc9_23.2)
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: !if.expr.else:
  66. // CHECK:STDOUT: %x.ref.loc9_30: ref [i32; 1] = name_ref x, %x
  67. // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
  68. // CHECK:STDOUT: %.loc9_33.1: ref i32 = array_index %x.ref.loc9_30, %n.ref
  69. // CHECK:STDOUT: %.loc9_33.2: i32 = bind_value %.loc9_33.1
  70. // CHECK:STDOUT: br !if.expr.result(%.loc9_33.2)
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: !if.expr.result:
  73. // CHECK:STDOUT: %.loc9_10: i32 = block_arg !if.expr.result
  74. // CHECK:STDOUT: return %.loc9_10
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT: