invoke.ll 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. ; RUN: opt -safe-stack -S -mtriple=i386-pc-linux-gnu < %s -o - | FileCheck %s
  2. ; RUN: opt -safe-stack -S -mtriple=x86_64-pc-linux-gnu < %s -o - | FileCheck %s
  3. @.str = private unnamed_addr constant [4 x i8] c"%s\0A\00", align 1
  4. ; Addr-of a variable passed into an invoke instruction.
  5. ; safestack attribute
  6. ; Requires protector and stack restore after landing pad.
  7. define i32 @foo() uwtable safestack personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
  8. entry:
  9. ; CHECK: %[[SP:.*]] = load i8*, i8** @__safestack_unsafe_stack_ptr
  10. ; CHECK: %[[STATICTOP:.*]] = getelementptr i8, i8* %[[SP]], i32 -16
  11. %a = alloca i32, align 4
  12. %exn.slot = alloca i8*
  13. %ehselector.slot = alloca i32
  14. store i32 0, i32* %a, align 4
  15. invoke void @_Z3exceptPi(i32* %a)
  16. to label %invoke.cont unwind label %lpad
  17. invoke.cont:
  18. ret i32 0
  19. lpad:
  20. ; CHECK: landingpad
  21. ; CHECK-NEXT: catch
  22. %0 = landingpad { i8*, i32 }
  23. catch i8* null
  24. ; CHECK-NEXT: store i8* %[[STATICTOP]], i8** @__safestack_unsafe_stack_ptr
  25. ret i32 0
  26. }
  27. declare void @_Z3exceptPi(i32*)
  28. declare i32 @__gxx_personality_v0(...)