thinlto-distributed-cfi.ll 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ; REQUIRES: x86-registered-target
  2. ; Backend test for distribute ThinLTO with CFI.
  3. ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t.o %s
  4. ; RUN: llvm-lto2 run -thinlto-distributed-indexes %t.o \
  5. ; RUN: -o %t2.index \
  6. ; RUN: -r=%t.o,test,px \
  7. ; RUN: -r=%t.o,_ZTV1B, \
  8. ; RUN: -r=%t.o,_ZN1B1fEi, \
  9. ; RUN: -r=%t.o,_ZTV1B,px
  10. ; Check that typeids are in the index.
  11. ; RUN: llvm-bcanalyzer -dump %t.o.thinlto.bc | FileCheck %s
  12. ; CHECK-LABEL: <GLOBALVAL_SUMMARY_BLOCK
  13. ; CHECK: <TYPE_ID op0=0 op1=6 op2=3 op3=0 op4=0 op5=0 op6=0 op7=0/>
  14. ; CHECK-LABEL: </GLOBALVAL_SUMMARY_BLOCK
  15. ; CHECK-LABEL: <STRTAB_BLOCK
  16. ; CHECK: blob data = '_ZTS1A'
  17. ; CHECK-LABEL: </STRTAB_BLOCK
  18. ; RUN: llvm-dis %t.o.thinlto.bc -o - | FileCheck %s --check-prefix=CHECK-DIS
  19. ; Round trip it through llvm-as
  20. ; RUN: llvm-dis %t.o.thinlto.bc -o - | llvm-as -o - | llvm-dis -o - | FileCheck %s --check-prefix=CHECK-DIS
  21. ; CHECK-DIS: ^0 = module: (path: "{{.*}}thinlto-distributed-cfi.ll.tmp.o", hash: ({{.*}}, {{.*}}, {{.*}}, {{.*}}, {{.*}}))
  22. ; CHECK-DIS: ^1 = gv: (guid: 8346051122425466633, summaries: (function: (module: ^0, flags: (linkage: external, notEligibleToImport: 0, live: 1, dsoLocal: 0, canAutoHide: 0), insts: 7, typeIdInfo: (typeTests: (^2)))))
  23. ; CHECK-DIS: ^2 = typeid: (name: "_ZTS1A", summary: (typeTestRes: (kind: single, sizeM1BitWidth: 0))) ; guid = 7004155349499253778
  24. ; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu \
  25. ; RUN: -emit-obj -fthinlto-index=%t.o.thinlto.bc \
  26. ; RUN: -emit-llvm -o - -x ir %t.o | FileCheck %s --check-prefixes=CHECK-IR
  27. ; Ensure that backend does not fail generating native code.
  28. ; RUN: %clang_cc1 -triple x86_64-grtev4-linux-gnu \
  29. ; RUN: -emit-obj -fthinlto-index=%t.o.thinlto.bc \
  30. ; RUN: -o %t.native.o -x ir %t.o
  31. target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
  32. target triple = "x86_64-grtev4-linux-gnu"
  33. %struct.B = type { %struct.A }
  34. %struct.A = type { i32 (...)** }
  35. @_ZTV1B = constant { [3 x i8*] } { [3 x i8*] [i8* undef, i8* undef, i8* undef] }, !type !0
  36. ; CHECK-IR-LABEL: define void @test
  37. define void @test(i8* %b) {
  38. entry:
  39. ; Ensure that traps are conditional. Invalid TYPE_ID can cause
  40. ; unconditional traps.
  41. ; CHECK-IR: br i1 {{.*}}, label %trap
  42. %0 = bitcast i8* %b to i8**
  43. %vtable2 = load i8*, i8** %0
  44. %1 = tail call i1 @llvm.type.test(i8* %vtable2, metadata !"_ZTS1A")
  45. br i1 %1, label %cont, label %trap
  46. trap:
  47. tail call void @llvm.trap()
  48. unreachable
  49. cont:
  50. ; CHECK-IR-LABEL: ret void
  51. ret void
  52. }
  53. ; CHECK-IR-LABEL: }
  54. declare i1 @llvm.type.test(i8*, metadata)
  55. declare void @llvm.trap()
  56. declare i32 @_ZN1B1fEi(%struct.B* %this, i32 %a)
  57. !0 = !{i64 16, !"_ZTS1A"}
  58. !1 = !{i64 16, !"_ZTS1B"}