mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
9686e666ef
This patch aims to provide correct dwarf unwind information in function epilogue for X86. It consists of two parts. The first part inserts CFI instructions that set appropriate cfa offset and cfa register in emitEpilogue() in X86FrameLowering. This part is X86 specific. The second part is platform independent and ensures that: * CFI instructions do not affect code generation (they are not counted as instructions when tail duplicating or tail merging) * Unwind information remains correct when a function is modified by different passes. This is done in a late pass by analyzing information about cfa offset and cfa register in BBs and inserting additional CFI directives where necessary. Added CFIInstrInserter pass: * analyzes each basic block to determine cfa offset and register are valid at its entry and exit * verifies that outgoing cfa offset and register of predecessor blocks match incoming values of their successors * inserts additional CFI directives at basic block beginning to correct the rule for calculating CFA Having CFI instructions in function epilogue can cause incorrect CFA calculation rule for some basic blocks. This can happen if, due to basic block reordering, or the existence of multiple epilogue blocks, some of the blocks have wrong cfa offset and register values set by the epilogue block above them. CFIInstrInserter is currently run only on X86, but can be used by any target that implements support for adding CFI instructions in epilogue. Patch by Violeta Vukobrat. Differential Revision: https://reviews.llvm.org/D42848 llvm-svn: 330706
43 lines
1.3 KiB
LLVM
43 lines
1.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -O2 -mtriple=x86_64-unknown-unknown | FileCheck %s
|
|
; Checks that a zeroing mov is inserted for the trunc/zext pair even when
|
|
; the source of the zext is an AssertZext node
|
|
; PR28540
|
|
|
|
define i64 @foo() {
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: movq $-1, %rax
|
|
; CHECK-NEXT: retq
|
|
ret i64 -1
|
|
}
|
|
|
|
define i64 @main() {
|
|
; CHECK-LABEL: main:
|
|
; CHECK: # %bb.0:
|
|
; CHECK-NEXT: pushq %rax
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 16
|
|
; CHECK-NEXT: callq foo
|
|
; CHECK-NEXT: movabsq $-4294967041, %rcx # imm = 0xFFFFFFFF000000FF
|
|
; CHECK-NEXT: andq %rax, %rcx
|
|
; CHECK-NEXT: movl %ecx, %ecx
|
|
; CHECK-NEXT: leaq (,%rcx,8), %rax
|
|
; CHECK-NEXT: subq %rcx, %rax
|
|
; CHECK-NEXT: shrq $32, %rax
|
|
; CHECK-NEXT: popq %rcx
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 8
|
|
; CHECK-NEXT: retq
|
|
%b = call i64 @foo()
|
|
%or = and i64 %b, 18446744069414584575 ; this is 0xffffffff000000ff
|
|
%trunc = trunc i64 %or to i32
|
|
br label %l
|
|
l:
|
|
%ext = zext i32 %trunc to i64
|
|
%mul = mul i64 %ext, 7
|
|
br label %m
|
|
m: ; keeps dag combine from seeing the multiply and the shift together
|
|
%shr = lshr i64 %mul, 32
|
|
trunc i64 %or to i32 ; keeps the and alive so it doesn't simplify
|
|
ret i64 %shr
|
|
}
|