2017-06-07 00:22:41 +02:00
|
|
|
//===- TargetFrameLoweringImpl.cpp - Implement target frame interface ------==//
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2005-04-22 00:55:34 +02:00
|
|
|
//
|
2004-03-12 00:52:43 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Implements the layout of a stack frame on the target machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-07-14 19:17:13 +02:00
|
|
|
#include "llvm/ADT/BitVector.h"
|
2010-11-20 17:14:57 +01:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2015-07-14 19:17:13 +02:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2017-11-17 02:07:10 +01:00
|
|
|
#include "llvm/CodeGen/TargetFrameLowering.h"
|
|
|
|
#include "llvm/CodeGen/TargetRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/TargetSubtargetInfo.h"
|
2017-06-07 00:22:41 +02:00
|
|
|
#include "llvm/IR/Attributes.h"
|
HHVM calling conventions.
HHVM calling convention, hhvmcc, is used by HHVM JIT for
functions in translated cache. We currently support LLVM back end to
generate code for X86-64 and may support other architectures in the
future.
In HHVM calling convention any GP register could be used to pass and
return values, with the exception of R12 which is reserved for
thread-local area and is callee-saved. Other than R12, we always
pass RBX and RBP as args, which are our virtual machine's stack pointer
and frame pointer respectively.
When we enter translation cache via hhvmcc function, we expect
the stack to be aligned at 16 bytes, i.e. skewed by 8 bytes as opposed
to standard ABI alignment. This affects stack object alignment and stack
adjustments for function calls.
One extra calling convention, hhvm_ccc, is used to call C++ helpers from
HHVM's translation cache. It is almost identical to standard C calling
convention with an exception of first argument which is passed in RBP
(before we use RDI, RSI, etc.)
Differential Revision: http://reviews.llvm.org/D12681
llvm-svn: 248832
2015-09-30 00:09:16 +02:00
|
|
|
#include "llvm/IR/CallingConv.h"
|
2015-05-23 03:14:08 +02:00
|
|
|
#include "llvm/IR/Function.h"
|
2017-06-07 00:22:41 +02:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
|
2004-03-12 00:52:43 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
2017-06-07 00:22:41 +02:00
|
|
|
TargetFrameLowering::~TargetFrameLowering() = default;
|
2010-11-19 00:25:52 +01:00
|
|
|
|
2018-04-07 12:57:03 +02:00
|
|
|
bool TargetFrameLowering::enableCalleeSaveSkip(const MachineFunction &MF) const {
|
|
|
|
assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) &&
|
|
|
|
MF.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
|
|
|
|
!MF.getFunction().hasFnAttribute(Attribute::UWTable));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-15 04:32:35 +02:00
|
|
|
/// Returns the displacement from the frame register to the stack
|
|
|
|
/// frame of the specified index, along with the frame register used
|
|
|
|
/// (in output arg FrameReg). This is the default implementation which
|
|
|
|
/// is overridden for some targets.
|
2011-01-10 13:39:04 +01:00
|
|
|
int TargetFrameLowering::getFrameIndexReference(const MachineFunction &MF,
|
|
|
|
int FI, unsigned &FrameReg) const {
|
2016-07-28 20:40:00 +02:00
|
|
|
const MachineFrameInfo &MFI = MF.getFrameInfo();
|
2014-08-05 04:39:49 +02:00
|
|
|
const TargetRegisterInfo *RI = MF.getSubtarget().getRegisterInfo();
|
2010-11-20 16:59:32 +01:00
|
|
|
|
|
|
|
// By default, assume all frame indices are referenced via whatever
|
|
|
|
// getFrameRegister() says. The target can override this if it's doing
|
|
|
|
// something different.
|
|
|
|
FrameReg = RI->getFrameRegister(MF);
|
2015-08-15 04:32:35 +02:00
|
|
|
|
2016-07-28 20:40:00 +02:00
|
|
|
return MFI.getObjectOffset(FI) + MFI.getStackSize() -
|
|
|
|
getOffsetOfLocalArea() + MFI.getOffsetAdjustment();
|
2010-11-20 16:59:32 +01:00
|
|
|
}
|
2015-02-01 17:56:04 +01:00
|
|
|
|
|
|
|
bool TargetFrameLowering::needsFrameIndexResolution(
|
|
|
|
const MachineFunction &MF) const {
|
2016-07-28 20:40:00 +02:00
|
|
|
return MF.getFrameInfo().hasStackObjects();
|
2015-02-01 17:56:04 +01:00
|
|
|
}
|
2015-07-14 19:17:13 +02:00
|
|
|
|
|
|
|
void TargetFrameLowering::determineCalleeSaves(MachineFunction &MF,
|
|
|
|
BitVector &SavedRegs,
|
|
|
|
RegScavenger *RS) const {
|
|
|
|
const TargetRegisterInfo &TRI = *MF.getSubtarget().getRegisterInfo();
|
|
|
|
|
2016-04-08 14:04:32 +02:00
|
|
|
// Resize before the early returns. Some backends expect that
|
|
|
|
// SavedRegs.size() == TRI.getNumRegs() after this call even if there are no
|
|
|
|
// saved registers.
|
|
|
|
SavedRegs.resize(TRI.getNumRegs());
|
|
|
|
|
2016-07-14 01:39:34 +02:00
|
|
|
// When interprocedural register allocation is enabled caller saved registers
|
|
|
|
// are preferred over callee saved registers.
|
2016-07-14 01:39:46 +02:00
|
|
|
if (MF.getTarget().Options.EnableIPRA && isSafeForNoCSROpt(MF.getFunction()))
|
2016-07-14 01:39:34 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Get the callee saved register list...
|
2017-03-14 10:09:26 +01:00
|
|
|
const MCPhysReg *CSRegs = MF.getRegInfo().getCalleeSavedRegs();
|
2016-07-14 01:39:34 +02:00
|
|
|
|
2015-07-14 19:17:13 +02:00
|
|
|
// Early exit if there are no callee saved registers.
|
|
|
|
if (!CSRegs || CSRegs[0] == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// In Naked functions we aren't going to save any registers.
|
2017-12-15 23:22:58 +01:00
|
|
|
if (MF.getFunction().hasFnAttribute(Attribute::Naked))
|
2015-07-14 19:17:13 +02:00
|
|
|
return;
|
|
|
|
|
2018-04-07 12:57:03 +02:00
|
|
|
// Noreturn+nounwind functions never restore CSR, so no saves are needed.
|
|
|
|
// Purely noreturn functions may still return through throws, so those must
|
|
|
|
// save CSR for caller exception handlers.
|
|
|
|
//
|
|
|
|
// If the function uses longjmp to break out of its current path of
|
|
|
|
// execution we do not need the CSR spills either: setjmp stores all CSRs
|
|
|
|
// it was called with into the jmp_buf, which longjmp then restores.
|
|
|
|
if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) &&
|
|
|
|
MF.getFunction().hasFnAttribute(Attribute::NoUnwind) &&
|
|
|
|
!MF.getFunction().hasFnAttribute(Attribute::UWTable) &&
|
|
|
|
enableCalleeSaveSkip(MF))
|
|
|
|
return;
|
|
|
|
|
2015-07-14 19:17:13 +02:00
|
|
|
// Functions which call __builtin_unwind_init get all their registers saved.
|
2016-12-01 20:32:15 +01:00
|
|
|
bool CallsUnwindInit = MF.callsUnwindInit();
|
2015-07-14 19:17:13 +02:00
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
|
|
for (unsigned i = 0; CSRegs[i]; ++i) {
|
|
|
|
unsigned Reg = CSRegs[i];
|
|
|
|
if (CallsUnwindInit || MRI.isPhysRegModified(Reg))
|
|
|
|
SavedRegs.set(Reg);
|
|
|
|
}
|
|
|
|
}
|
HHVM calling conventions.
HHVM calling convention, hhvmcc, is used by HHVM JIT for
functions in translated cache. We currently support LLVM back end to
generate code for X86-64 and may support other architectures in the
future.
In HHVM calling convention any GP register could be used to pass and
return values, with the exception of R12 which is reserved for
thread-local area and is callee-saved. Other than R12, we always
pass RBX and RBP as args, which are our virtual machine's stack pointer
and frame pointer respectively.
When we enter translation cache via hhvmcc function, we expect
the stack to be aligned at 16 bytes, i.e. skewed by 8 bytes as opposed
to standard ABI alignment. This affects stack object alignment and stack
adjustments for function calls.
One extra calling convention, hhvm_ccc, is used to call C++ helpers from
HHVM's translation cache. It is almost identical to standard C calling
convention with an exception of first argument which is passed in RBP
(before we use RDI, RSI, etc.)
Differential Revision: http://reviews.llvm.org/D12681
llvm-svn: 248832
2015-09-30 00:09:16 +02:00
|
|
|
|
|
|
|
unsigned TargetFrameLowering::getStackAlignmentSkew(
|
|
|
|
const MachineFunction &MF) const {
|
|
|
|
// When HHVM function is called, the stack is skewed as the return address
|
|
|
|
// is removed from the stack before we enter the function.
|
2017-12-15 23:22:58 +01:00
|
|
|
if (LLVM_UNLIKELY(MF.getFunction().getCallingConv() == CallingConv::HHVM))
|
2018-03-14 01:36:23 +01:00
|
|
|
return MF.getTarget().getAllocaPointerSize();
|
HHVM calling conventions.
HHVM calling convention, hhvmcc, is used by HHVM JIT for
functions in translated cache. We currently support LLVM back end to
generate code for X86-64 and may support other architectures in the
future.
In HHVM calling convention any GP register could be used to pass and
return values, with the exception of R12 which is reserved for
thread-local area and is callee-saved. Other than R12, we always
pass RBX and RBP as args, which are our virtual machine's stack pointer
and frame pointer respectively.
When we enter translation cache via hhvmcc function, we expect
the stack to be aligned at 16 bytes, i.e. skewed by 8 bytes as opposed
to standard ABI alignment. This affects stack object alignment and stack
adjustments for function calls.
One extra calling convention, hhvm_ccc, is used to call C++ helpers from
HHVM's translation cache. It is almost identical to standard C calling
convention with an exception of first argument which is passed in RBP
(before we use RDI, RSI, etc.)
Differential Revision: http://reviews.llvm.org/D12681
llvm-svn: 248832
2015-09-30 00:09:16 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-04-24 12:32:08 +02:00
|
|
|
|
|
|
|
int TargetFrameLowering::getInitialCFAOffset(const MachineFunction &MF) const {
|
|
|
|
llvm_unreachable("getInitialCFAOffset() not implemented!");
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned TargetFrameLowering::getInitialCFARegister(const MachineFunction &MF)
|
|
|
|
const {
|
|
|
|
llvm_unreachable("getInitialCFARegister() not implemented!");
|
|
|
|
}
|