mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +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
63 lines
2.1 KiB
LLVM
63 lines
2.1 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -fast-isel -mtriple=i686-unknown-unknown -O0 -mcpu=knl | FileCheck %s
|
|
|
|
; ModuleID = 'convert'
|
|
source_filename = "convert"
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define i8** @japi1_convert_690(i8**, i8***, i32) {
|
|
; CHECK-LABEL: japi1_convert_690:
|
|
; CHECK: # %bb.0: # %top
|
|
; CHECK-NEXT: pushl %ebx
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 8
|
|
; CHECK-NEXT: subl $16, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 24
|
|
; CHECK-NEXT: .cfi_offset %ebx, -8
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
; CHECK-NEXT: movl %eax, {{[0-9]+}}(%esp) # 4-byte Spill
|
|
; CHECK-NEXT: calll julia.gc_root_decl
|
|
; CHECK-NEXT: movl %eax, {{[0-9]+}}(%esp) # 4-byte Spill
|
|
; CHECK-NEXT: calll jl_get_ptls_states
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %ecx # 4-byte Reload
|
|
; CHECK-NEXT: movl 4(%ecx), %edx
|
|
; CHECK-NEXT: movb (%edx), %bl
|
|
; CHECK-NEXT: andb $1, %bl
|
|
; CHECK-NEXT: movzbl %bl, %edx
|
|
; CHECK-NEXT: movl %edx, (%esp)
|
|
; CHECK-NEXT: movl %eax, {{[0-9]+}}(%esp) # 4-byte Spill
|
|
; CHECK-NEXT: calll jl_box_int32
|
|
; CHECK-NEXT: movl {{[0-9]+}}(%esp), %ecx # 4-byte Reload
|
|
; CHECK-NEXT: movl %eax, (%ecx)
|
|
; CHECK-NEXT: addl $16, %esp
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 8
|
|
; CHECK-NEXT: popl %ebx
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 4
|
|
; CHECK-NEXT: retl
|
|
top:
|
|
%3 = alloca i8***
|
|
store volatile i8*** %1, i8**** %3
|
|
%4 = call i8*** @julia.gc_root_decl()
|
|
%5 = call i8**** @jl_get_ptls_states()
|
|
%6 = bitcast i8**** %5 to i8***
|
|
%7 = getelementptr i8**, i8*** %6, i64 3
|
|
%8 = bitcast i8*** %7 to i64**
|
|
%9 = load i64*, i64** %8
|
|
%10 = getelementptr i8**, i8*** %1, i64 1
|
|
%11 = load i8**, i8*** %10
|
|
%12 = bitcast i8** %11 to i8*
|
|
%13 = load i8, i8* %12
|
|
%14 = trunc i8 %13 to i1
|
|
%15 = zext i1 %14 to i8
|
|
%16 = zext i8 %15 to i32
|
|
%17 = call i8** @jl_box_int32(i32 signext %16)
|
|
store i8** %17, i8*** %4
|
|
ret i8** %17
|
|
}
|
|
|
|
declare i8**** @jl_get_ptls_states()
|
|
|
|
declare i8** @jl_box_int32(i32)
|
|
|
|
declare i8*** @julia.gc_root_decl()
|