multifile_raw_and_textual_ir.carbon 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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: --include-diagnostic-kind compile --no-prelude-import --phase=check --dump-sem-ir --dump-raw-sem-ir %s
  6. //
  7. // Check that we can combine textual IR and raw IR dumping in one compile.
  8. //
  9. // AUTOUPDATE
  10. // TIP: To test this file alone, run:
  11. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/driver/testdata/compile/multifile_raw_and_textual_ir.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/driver/testdata/compile/multifile_raw_and_textual_ir.carbon
  14. // --- a.carbon
  15. package A;
  16. fn A() {}
  17. // --- b.carbon
  18. package B;
  19. import A;
  20. fn B() {
  21. A.A();
  22. }
  23. // CHECK:STDOUT: ---
  24. // CHECK:STDOUT: filename: a.carbon
  25. // CHECK:STDOUT: sem_ir:
  26. // CHECK:STDOUT: import_irs:
  27. // CHECK:STDOUT: ir0: {decl_id: inst<none>, is_export: false}
  28. // CHECK:STDOUT: import_ir_insts: {}
  29. // CHECK:STDOUT: name_scopes:
  30. // CHECK:STDOUT: name_scope0: {inst: inst12, parent_scope: name_scope<none>, has_error: false, extended_scopes: [], names: {name0: inst13}}
  31. // CHECK:STDOUT: entity_names: {}
  32. // CHECK:STDOUT: functions:
  33. // CHECK:STDOUT: function0: {name: name0, parent_scope: name_scope0, body: [inst_block5]}
  34. // CHECK:STDOUT: classes: {}
  35. // CHECK:STDOUT: generics: {}
  36. // CHECK:STDOUT: specifics: {}
  37. // CHECK:STDOUT: struct_type_fields:
  38. // CHECK:STDOUT: struct_type_fields0: {}
  39. // CHECK:STDOUT: types:
  40. // CHECK:STDOUT: 'type(TypeType)': {kind: copy, type: type(TypeType)}
  41. // CHECK:STDOUT: 'type(Error)': {kind: copy, type: type(Error)}
  42. // CHECK:STDOUT: 'type(inst(NamespaceType))': {kind: copy, type: type(inst(NamespaceType))}
  43. // CHECK:STDOUT: 'type(inst14)': {kind: none, type: type(inst15)}
  44. // CHECK:STDOUT: 'type(inst15)': {kind: none, type: type(inst15)}
  45. // CHECK:STDOUT: type_blocks:
  46. // CHECK:STDOUT: type_block0: {}
  47. // CHECK:STDOUT: insts:
  48. // CHECK:STDOUT: inst12: {kind: Namespace, arg0: name_scope0, arg1: inst<none>, type: type(inst(NamespaceType))}
  49. // CHECK:STDOUT: inst13: {kind: FunctionDecl, arg0: function0, arg1: inst_block_empty, type: type(inst14)}
  50. // CHECK:STDOUT: inst14: {kind: FunctionType, arg0: function0, arg1: specific<none>, type: type(TypeType)}
  51. // CHECK:STDOUT: inst15: {kind: TupleType, arg0: type_block0, type: type(TypeType)}
  52. // CHECK:STDOUT: inst16: {kind: StructValue, arg0: inst_block_empty, type: type(inst14)}
  53. // CHECK:STDOUT: inst17: {kind: Return}
  54. // CHECK:STDOUT: constant_values:
  55. // CHECK:STDOUT: inst12: template_constant(inst12)
  56. // CHECK:STDOUT: inst13: template_constant(inst16)
  57. // CHECK:STDOUT: inst14: template_constant(inst14)
  58. // CHECK:STDOUT: inst15: template_constant(inst15)
  59. // CHECK:STDOUT: inst16: template_constant(inst16)
  60. // CHECK:STDOUT: symbolic_constants: {}
  61. // CHECK:STDOUT: inst_blocks:
  62. // CHECK:STDOUT: inst_block_empty: {}
  63. // CHECK:STDOUT: exports:
  64. // CHECK:STDOUT: 0: inst13
  65. // CHECK:STDOUT: import_refs: {}
  66. // CHECK:STDOUT: global_init: {}
  67. // CHECK:STDOUT: inst_block4: {}
  68. // CHECK:STDOUT: inst_block5:
  69. // CHECK:STDOUT: 0: inst17
  70. // CHECK:STDOUT: inst_block6:
  71. // CHECK:STDOUT: 0: inst12
  72. // CHECK:STDOUT: 1: inst13
  73. // CHECK:STDOUT: ...
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: --- a.carbon
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: constants {
  78. // CHECK:STDOUT: %A.type: type = fn_type @A [template]
  79. // CHECK:STDOUT: %A: %A.type = struct_value () [template]
  80. // CHECK:STDOUT: }
  81. // CHECK:STDOUT:
  82. // CHECK:STDOUT: file {
  83. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  84. // CHECK:STDOUT: .A = %A.decl
  85. // CHECK:STDOUT: }
  86. // CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [template = constants.%A] {} {}
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: fn @A() {
  90. // CHECK:STDOUT: !entry:
  91. // CHECK:STDOUT: return
  92. // CHECK:STDOUT: }
  93. // CHECK:STDOUT:
  94. // CHECK:STDOUT: ---
  95. // CHECK:STDOUT: filename: b.carbon
  96. // CHECK:STDOUT: sem_ir:
  97. // CHECK:STDOUT: import_irs:
  98. // CHECK:STDOUT: ir0: {decl_id: inst<none>, is_export: false}
  99. // CHECK:STDOUT: ir1: {decl_id: inst13, is_export: false}
  100. // CHECK:STDOUT: import_ir_insts:
  101. // CHECK:STDOUT: import_ir_inst0: {ir_id: ir1, inst_id: inst13}
  102. // CHECK:STDOUT: import_ir_inst1: {ir_id: ir1, inst_id: inst13}
  103. // CHECK:STDOUT: name_scopes:
  104. // CHECK:STDOUT: name_scope0: {inst: inst12, parent_scope: name_scope<none>, has_error: false, extended_scopes: [], names: {name1: inst14, name0: inst15}}
  105. // CHECK:STDOUT: name_scope1: {inst: inst14, parent_scope: name_scope0, has_error: false, extended_scopes: [], names: {name1: inst20}}
  106. // CHECK:STDOUT: entity_names:
  107. // CHECK:STDOUT: entity_name0: {name: name1, parent_scope: name_scope1, index: comp_time_bind<none>}
  108. // CHECK:STDOUT: functions:
  109. // CHECK:STDOUT: function0: {name: name0, parent_scope: name_scope0, body: [inst_block5]}
  110. // CHECK:STDOUT: function1: {name: name1, parent_scope: name_scope1}
  111. // CHECK:STDOUT: classes: {}
  112. // CHECK:STDOUT: generics: {}
  113. // CHECK:STDOUT: specifics: {}
  114. // CHECK:STDOUT: struct_type_fields:
  115. // CHECK:STDOUT: struct_type_fields0: {}
  116. // CHECK:STDOUT: types:
  117. // CHECK:STDOUT: 'type(TypeType)': {kind: copy, type: type(TypeType)}
  118. // CHECK:STDOUT: 'type(Error)': {kind: copy, type: type(Error)}
  119. // CHECK:STDOUT: 'type(inst(NamespaceType))': {kind: copy, type: type(inst(NamespaceType))}
  120. // CHECK:STDOUT: 'type(inst16)': {kind: none, type: type(inst17)}
  121. // CHECK:STDOUT: 'type(inst17)': {kind: none, type: type(inst17)}
  122. // CHECK:STDOUT: 'type(inst22)': {kind: none, type: type(inst17)}
  123. // CHECK:STDOUT: type_blocks:
  124. // CHECK:STDOUT: type_block0: {}
  125. // CHECK:STDOUT: insts:
  126. // CHECK:STDOUT: inst12: {kind: Namespace, arg0: name_scope0, arg1: inst<none>, type: type(inst(NamespaceType))}
  127. // CHECK:STDOUT: inst13: {kind: ImportDecl, arg0: name1}
  128. // CHECK:STDOUT: inst14: {kind: Namespace, arg0: name_scope1, arg1: inst13, type: type(inst(NamespaceType))}
  129. // CHECK:STDOUT: inst15: {kind: FunctionDecl, arg0: function0, arg1: inst_block_empty, type: type(inst16)}
  130. // CHECK:STDOUT: inst16: {kind: FunctionType, arg0: function0, arg1: specific<none>, type: type(TypeType)}
  131. // CHECK:STDOUT: inst17: {kind: TupleType, arg0: type_block0, type: type(TypeType)}
  132. // CHECK:STDOUT: inst18: {kind: StructValue, arg0: inst_block_empty, type: type(inst16)}
  133. // CHECK:STDOUT: inst19: {kind: NameRef, arg0: name1, arg1: inst14, type: type(inst(NamespaceType))}
  134. // CHECK:STDOUT: inst20: {kind: ImportRefLoaded, arg0: import_ir_inst0, arg1: entity_name0, type: type(inst22)}
  135. // CHECK:STDOUT: inst21: {kind: FunctionDecl, arg0: function1, arg1: inst_block_empty, type: type(inst22)}
  136. // CHECK:STDOUT: inst22: {kind: FunctionType, arg0: function1, arg1: specific<none>, type: type(TypeType)}
  137. // CHECK:STDOUT: inst23: {kind: StructValue, arg0: inst_block_empty, type: type(inst22)}
  138. // CHECK:STDOUT: inst24: {kind: NameRef, arg0: name1, arg1: inst20, type: type(inst22)}
  139. // CHECK:STDOUT: inst25: {kind: Call, arg0: inst24, arg1: inst_block_empty, type: type(inst17)}
  140. // CHECK:STDOUT: inst26: {kind: Return}
  141. // CHECK:STDOUT: constant_values:
  142. // CHECK:STDOUT: inst12: template_constant(inst12)
  143. // CHECK:STDOUT: inst14: template_constant(inst14)
  144. // CHECK:STDOUT: inst15: template_constant(inst18)
  145. // CHECK:STDOUT: inst16: template_constant(inst16)
  146. // CHECK:STDOUT: inst17: template_constant(inst17)
  147. // CHECK:STDOUT: inst18: template_constant(inst18)
  148. // CHECK:STDOUT: inst19: template_constant(inst14)
  149. // CHECK:STDOUT: inst20: template_constant(inst23)
  150. // CHECK:STDOUT: inst21: template_constant(inst23)
  151. // CHECK:STDOUT: inst22: template_constant(inst22)
  152. // CHECK:STDOUT: inst23: template_constant(inst23)
  153. // CHECK:STDOUT: inst24: template_constant(inst23)
  154. // CHECK:STDOUT: symbolic_constants: {}
  155. // CHECK:STDOUT: inst_blocks:
  156. // CHECK:STDOUT: inst_block_empty: {}
  157. // CHECK:STDOUT: exports:
  158. // CHECK:STDOUT: 0: inst15
  159. // CHECK:STDOUT: import_refs:
  160. // CHECK:STDOUT: 0: inst14
  161. // CHECK:STDOUT: 1: inst20
  162. // CHECK:STDOUT: global_init: {}
  163. // CHECK:STDOUT: inst_block4: {}
  164. // CHECK:STDOUT: inst_block5:
  165. // CHECK:STDOUT: 0: inst19
  166. // CHECK:STDOUT: 1: inst24
  167. // CHECK:STDOUT: 2: inst25
  168. // CHECK:STDOUT: 3: inst26
  169. // CHECK:STDOUT: inst_block6:
  170. // CHECK:STDOUT: 0: inst12
  171. // CHECK:STDOUT: 1: inst13
  172. // CHECK:STDOUT: 2: inst15
  173. // CHECK:STDOUT: ...
  174. // CHECK:STDOUT:
  175. // CHECK:STDOUT: --- b.carbon
  176. // CHECK:STDOUT:
  177. // CHECK:STDOUT: constants {
  178. // CHECK:STDOUT: %B.type: type = fn_type @B [template]
  179. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  180. // CHECK:STDOUT: %B: %B.type = struct_value () [template]
  181. // CHECK:STDOUT: %A.type: type = fn_type @A [template]
  182. // CHECK:STDOUT: %A: %A.type = struct_value () [template]
  183. // CHECK:STDOUT: }
  184. // CHECK:STDOUT:
  185. // CHECK:STDOUT: imports {
  186. // CHECK:STDOUT: %A: <namespace> = namespace file.%A.import, [template] {
  187. // CHECK:STDOUT: .A = %A.A
  188. // CHECK:STDOUT: import A//default
  189. // CHECK:STDOUT: }
  190. // CHECK:STDOUT: %A.A: %A.type = import_ref A//default, A, loaded [template = constants.%A]
  191. // CHECK:STDOUT: }
  192. // CHECK:STDOUT:
  193. // CHECK:STDOUT: file {
  194. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  195. // CHECK:STDOUT: .A = imports.%A
  196. // CHECK:STDOUT: .B = %B.decl
  197. // CHECK:STDOUT: }
  198. // CHECK:STDOUT: %A.import = import A
  199. // CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [template = constants.%B] {} {}
  200. // CHECK:STDOUT: }
  201. // CHECK:STDOUT:
  202. // CHECK:STDOUT: fn @B() {
  203. // CHECK:STDOUT: !entry:
  204. // CHECK:STDOUT: %A.ref.loc6_3: <namespace> = name_ref A, imports.%A [template = imports.%A]
  205. // CHECK:STDOUT: %A.ref.loc6_4: %A.type = name_ref A, imports.%A.A [template = constants.%A]
  206. // CHECK:STDOUT: %A.call: init %empty_tuple.type = call %A.ref.loc6_4()
  207. // CHECK:STDOUT: return
  208. // CHECK:STDOUT: }
  209. // CHECK:STDOUT:
  210. // CHECK:STDOUT: fn @A() [from "a.carbon"];
  211. // CHECK:STDOUT: