2
0

memorymarkers.ll 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ; RUN: llvm-as -disable-output < %s
  2. %"struct.std::pair<int,int>" = type { i32, i32 }
  3. declare void @_Z3barRKi(i32*)
  4. declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind
  5. declare void @llvm.lifetime.end(i64, i8* nocapture) nounwind
  6. declare {}* @llvm.invariant.start(i64, i8* nocapture) readonly nounwind
  7. declare void @llvm.invariant.end({}*, i64, i8* nocapture) nounwind
  8. define i32 @_Z4foo2v() nounwind {
  9. entry:
  10. %x = alloca %"struct.std::pair<int,int>"
  11. %y = bitcast %"struct.std::pair<int,int>"* %x to i8*
  12. ;; Constructor starts here (this isn't needed since it is immediately
  13. ;; preceded by an alloca, but shown for completeness).
  14. call void @llvm.lifetime.start(i64 8, i8* %y)
  15. %0 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 0
  16. store i32 4, i32* %0, align 8
  17. %1 = getelementptr %"struct.std::pair<int,int>", %"struct.std::pair<int,int>"* %x, i32 0, i32 1
  18. store i32 5, i32* %1, align 4
  19. ;; Constructor has finished here.
  20. %inv = call {}* @llvm.invariant.start(i64 8, i8* %y)
  21. call void @_Z3barRKi(i32* %0) nounwind
  22. %2 = load i32, i32* %0, align 8
  23. ;; Destructor is run here.
  24. call void @llvm.invariant.end({}* %inv, i64 8, i8* %y)
  25. ;; Destructor is done here.
  26. call void @llvm.lifetime.end(i64 8, i8* %y)
  27. ret i32 %2
  28. }