2015-06-30 07:51:55 +08:00
|
|
|
// WebAssemblyFrameLowering.h - TargetFrameLowering for WebAssembly -*- C++ -*-/
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
2018-05-01 23:54:18 +08:00
|
|
|
/// This class implements WebAssembly-specific bits of
|
2015-06-30 07:51:55 +08:00
|
|
|
/// TargetFrameLowering class.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYFRAMELOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_WEBASSEMBLY_WEBASSEMBLYFRAMELOWERING_H
|
|
|
|
|
2017-11-04 06:32:11 +08:00
|
|
|
#include "llvm/CodeGen/TargetFrameLowering.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
|
|
|
|
namespace llvm {
|
2016-02-24 02:13:07 +08:00
|
|
|
class MachineFrameInfo;
|
2015-06-30 07:51:55 +08:00
|
|
|
|
|
|
|
class WebAssemblyFrameLowering final : public TargetFrameLowering {
|
2018-09-05 09:27:38 +08:00
|
|
|
public:
|
2016-02-24 02:17:46 +08:00
|
|
|
/// Size of the red zone for the user stack (leaf functions can use this much
|
2018-08-22 08:20:02 +08:00
|
|
|
/// space below the stack pointer without writing it back to __stack_pointer
|
|
|
|
/// global).
|
2016-02-24 02:17:46 +08:00
|
|
|
// TODO: (ABI) Revisit and decide how large it should be.
|
2016-02-24 02:13:07 +08:00
|
|
|
static const size_t RedZoneSize = 128;
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
WebAssemblyFrameLowering()
|
|
|
|
: TargetFrameLowering(StackGrowsDown, /*StackAlignment=*/16,
|
|
|
|
/*LocalAreaOffset=*/0,
|
|
|
|
/*TransientStackAlignment=*/16,
|
|
|
|
/*StackRealignable=*/true) {}
|
|
|
|
|
2018-09-05 09:27:38 +08:00
|
|
|
MachineBasicBlock::iterator
|
|
|
|
eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const override;
|
2015-06-30 07:51:55 +08:00
|
|
|
|
|
|
|
/// These methods insert prolog and epilog code into the function.
|
|
|
|
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
|
|
|
|
|
|
|
bool hasFP(const MachineFunction &MF) const override;
|
|
|
|
bool hasReservedCallFrame(const MachineFunction &MF) const override;
|
2016-02-24 02:13:07 +08:00
|
|
|
|
2018-08-22 05:23:07 +08:00
|
|
|
bool needsPrologForEH(const MachineFunction &MF) const;
|
|
|
|
|
|
|
|
/// Write SP back to __stack_pointer global.
|
|
|
|
void writeSPToGlobal(unsigned SrcReg, MachineFunction &MF,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator &InsertStore,
|
|
|
|
const DebugLoc &DL) const;
|
|
|
|
|
|
|
|
private:
|
2016-11-08 06:00:48 +08:00
|
|
|
bool hasBP(const MachineFunction &MF) const;
|
2018-08-23 05:13:49 +08:00
|
|
|
bool needsSPForLocalFrame(const MachineFunction &MF) const;
|
2018-08-23 02:53:48 +08:00
|
|
|
bool needsSP(const MachineFunction &MF) const;
|
|
|
|
bool needsSPWriteback(const MachineFunction &MF) const;
|
2015-06-30 07:51:55 +08:00
|
|
|
};
|
|
|
|
|
2018-09-05 09:27:38 +08:00
|
|
|
} // end namespace llvm
|
2015-06-30 07:51:55 +08:00
|
|
|
|
|
|
|
#endif
|