Commit 9a9b6492 authored by Pengfei Wang's avatar Pengfei Wang Committed by Reid Kleckner
Browse files

[WinEH] Allocate space in funclets stack to save XMM CSRs



Summary:
This is an alternate approach to D63396

Currently funclets reuse the same stack slots that are used in the
parent function for saving callee-saved xmm registers. If the parent
function modifies a callee-saved xmm register before an excpetion is
thrown, the catch handler will overwrite the original saved value.

This patch allocates space in funclets stack for saving callee-saved xmm
registers and uses RSP instead RBP to access memory.

Signed-off-by: default avatarPengfei Wang <pengfei.wang@intel.com>

Reviewers: rnk, RKSimon, craig.topper, annita.zhang, LuoYuanke, andrew.w.kaylor

Subscribers: hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D66596



Signed-off-by: default avatarPengfei Wang <pengfei.wang@intel.com>
llvm-svn: 370005
(cherry picked from commit 564fb58a)
parent 2d75b245
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment