numeric_literals.carbon 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/basics/numeric_literals.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/basics/numeric_literals.carbon
  10. fn F() {
  11. // 8 and 9 trigger special behavior in APInt when mishandling signed versus
  12. // unsigned, so we pay extra attention to those.
  13. var ints: [i32; 4] = (
  14. 8,
  15. 9,
  16. 0x8,
  17. 0b1000,
  18. );
  19. var floats: [f64; 6] = (
  20. 0.9,
  21. 8.0,
  22. 80.0,
  23. 1.0e7,
  24. 1.0e8,
  25. 1.0e-8,
  26. );
  27. }
  28. // CHECK:STDOUT: ; ModuleID = 'numeric_literals.carbon'
  29. // CHECK:STDOUT: source_filename = "numeric_literals.carbon"
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: @array.712.loc14_3.2 = internal constant [4 x i32] [i32 8, i32 9, i32 8, i32 8]
  32. // CHECK:STDOUT: @array.a2f.loc20_3.2 = internal constant [6 x double] [double 9.000000e-01, double 8.000000e+00, double 8.000000e+01, double 1.000000e+07, double 1.000000e+08, double 1.000000e-08]
  33. // CHECK:STDOUT:
  34. // CHECK:STDOUT: define void @_CF.Main() !dbg !4 {
  35. // CHECK:STDOUT: entry:
  36. // CHECK:STDOUT: %ints.var = alloca [4 x i32], align 4, !dbg !7
  37. // CHECK:STDOUT: %floats.var = alloca [6 x double], align 8, !dbg !7
  38. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(i64 16, ptr %ints.var), !dbg !7
  39. // CHECK:STDOUT: %.loc19_3.3.array.index = getelementptr inbounds [4 x i32], ptr %ints.var, i32 0, i64 0, !dbg !8
  40. // CHECK:STDOUT: %.loc19_3.6.array.index = getelementptr inbounds [4 x i32], ptr %ints.var, i32 0, i64 1, !dbg !8
  41. // CHECK:STDOUT: %.loc19_3.9.array.index = getelementptr inbounds [4 x i32], ptr %ints.var, i32 0, i64 2, !dbg !8
  42. // CHECK:STDOUT: %.loc19_3.12.array.index = getelementptr inbounds [4 x i32], ptr %ints.var, i32 0, i64 3, !dbg !8
  43. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 4 %ints.var, ptr align 4 @array.712.loc14_3.2, i64 16, i1 false), !dbg !7
  44. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(i64 48, ptr %floats.var), !dbg !7
  45. // CHECK:STDOUT: %.loc27_3.2.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 0, !dbg !9
  46. // CHECK:STDOUT: %.loc27_3.4.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 1, !dbg !9
  47. // CHECK:STDOUT: %.loc27_3.6.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 2, !dbg !9
  48. // CHECK:STDOUT: %.loc27_3.8.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 3, !dbg !9
  49. // CHECK:STDOUT: %.loc27_3.10.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 4, !dbg !9
  50. // CHECK:STDOUT: %.loc27_3.12.array.index = getelementptr inbounds [6 x double], ptr %floats.var, i32 0, i64 5, !dbg !9
  51. // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 8 %floats.var, ptr align 8 @array.a2f.loc20_3.2, i64 48, i1 false), !dbg !10
  52. // CHECK:STDOUT: ret void, !dbg !11
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  56. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(i64 immarg, ptr captures(none)) #0
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
  59. // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #1
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: ; uselistorder directives
  62. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 1, 0 }
  63. // CHECK:STDOUT: uselistorder ptr @llvm.memcpy.p0.p0.i64, { 1, 0 }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: attributes #0 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  66. // CHECK:STDOUT: attributes #1 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
  67. // CHECK:STDOUT:
  68. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  69. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  72. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  73. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  74. // CHECK:STDOUT: !3 = !DIFile(filename: "numeric_literals.carbon", directory: "")
  75. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main", scope: null, file: !3, line: 11, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  76. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  77. // CHECK:STDOUT: !6 = !{}
  78. // CHECK:STDOUT: !7 = !DILocation(line: 14, column: 3, scope: !4)
  79. // CHECK:STDOUT: !8 = !DILocation(line: 14, column: 24, scope: !4)
  80. // CHECK:STDOUT: !9 = !DILocation(line: 20, column: 26, scope: !4)
  81. // CHECK:STDOUT: !10 = !DILocation(line: 20, column: 3, scope: !4)
  82. // CHECK:STDOUT: !11 = !DILocation(line: 11, column: 1, scope: !4)