[WebAssembly] Fix ADJCALLSTACKDOWN/UP use/defs
authorDerek Schuff <dschuff@google.com>
Fri, 11 Dec 2015 18:55:34 +0000 (18:55 +0000)
committerDerek Schuff <dschuff@google.com>
Fri, 11 Dec 2015 18:55:34 +0000 (18:55 +0000)
commit5a143063237a3c9ae050f377f8f0d02192dc9b2c
tree636abe8716be7a2d96740d5fbe13baa07c80c532
parenta6763e838602ca3ebc7b44013297303b59f2867f
[WebAssembly] Fix ADJCALLSTACKDOWN/UP use/defs

Summary:
ADJCALLSTACK{DOWN,UP} (aka CALLSEQ_{START,END}) MIs are supposed to use
and def the stack pointer. Since they do not, all the nodes are being
eliminated by DeadMachineInstructionElim, so they aren't in the IR when
PrologEpilogInserter/eliminateCallFramePseudo needs them.

This change fixes that, but since RegStackify will not stackify across
them (and it runs early, before PEI), change LowerCall to only emit them
when the call frame size is > 0. That makes the current code work the
same way and makes code handled by D15344 also work the same way. We can
expand the condition beyond NumBytes > 0 in the future if needed.

Reviewers: sunfish, jfb

Subscribers: jfb, dschuff, llvm-commits

Differential Revision: http://reviews.llvm.org/D15459

llvm-svn: 255356
llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td