2012-02-18 20:03:15 +08:00
|
|
|
//===-- PPCFrameLowering.h - Define frame lowering for PowerPC --*- C++ -*-===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-15 06:16:36 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-15 06:16:36 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
2005-10-16 13:39:50 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2004-08-15 06:16:36 +08:00
|
|
|
|
2014-08-14 00:26:38 +08:00
|
|
|
#ifndef LLVM_LIB_TARGET_POWERPC_PPCFRAMELOWERING_H
|
|
|
|
#define LLVM_LIB_TARGET_POWERPC_PPCFRAMELOWERING_H
|
2004-08-15 06:16:36 +08:00
|
|
|
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPC.h"
|
2012-12-04 15:12:27 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2011-01-10 20:39:04 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
2004-08-15 06:16:36 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2014-06-13 04:54:11 +08:00
|
|
|
class PPCSubtarget;
|
2004-08-15 06:16:36 +08:00
|
|
|
|
2011-01-10 20:39:04 +08:00
|
|
|
class PPCFrameLowering: public TargetFrameLowering {
|
2010-11-15 08:06:54 +08:00
|
|
|
const PPCSubtarget &Subtarget;
|
2015-02-13 08:39:27 +08:00
|
|
|
const unsigned ReturnSaveOffset;
|
2015-02-13 08:39:36 +08:00
|
|
|
const unsigned TOCSaveOffset;
|
2015-02-13 08:39:38 +08:00
|
|
|
const unsigned FramePointerSaveOffset;
|
2015-02-14 06:22:57 +08:00
|
|
|
const unsigned LinkageSize;
|
2015-02-14 06:48:53 +08:00
|
|
|
const unsigned BasePointerSaveOffset;
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-08-15 06:16:36 +08:00
|
|
|
public:
|
2014-06-13 04:54:11 +08:00
|
|
|
PPCFrameLowering(const PPCSubtarget &STI);
|
2004-08-15 06:16:36 +08:00
|
|
|
|
2013-03-15 13:06:04 +08:00
|
|
|
unsigned determineFrameLayout(MachineFunction &MF,
|
|
|
|
bool UpdateMF = true,
|
|
|
|
bool UseEstimate = false) const;
|
2010-11-15 08:06:54 +08:00
|
|
|
|
|
|
|
/// emitProlog/emitEpilog - These methods insert prolog and epilog code into
|
|
|
|
/// the function.
|
[ShrinkWrap] Add (a simplified version) of shrink-wrapping.
This patch introduces a new pass that computes the safe point to insert the
prologue and epilogue of the function.
The interest is to find safe points that are cheaper than the entry and exits
blocks.
As an example and to avoid regressions to be introduce, this patch also
implements the required bits to enable the shrink-wrapping pass for AArch64.
** Context **
Currently we insert the prologue and epilogue of the method/function in the
entry and exits blocks. Although this is correct, we can do a better job when
those are not immediately required and insert them at less frequently executed
places.
The job of the shrink-wrapping pass is to identify such places.
** Motivating example **
Let us consider the following function that perform a call only in one branch of
a if:
define i32 @f(i32 %a, i32 %b) {
%tmp = alloca i32, align 4
%tmp2 = icmp slt i32 %a, %b
br i1 %tmp2, label %true, label %false
true:
store i32 %a, i32* %tmp, align 4
%tmp4 = call i32 @doSomething(i32 0, i32* %tmp)
br label %false
false:
%tmp.0 = phi i32 [ %tmp4, %true ], [ %a, %0 ]
ret i32 %tmp.0
}
On AArch64 this code generates (removing the cfi directives to ease
readabilities):
_f: ; @f
; BB#0:
stp x29, x30, [sp, #-16]!
mov x29, sp
sub sp, sp, #16 ; =16
cmp w0, w1
b.ge LBB0_2
; BB#1: ; %true
stur w0, [x29, #-4]
sub x1, x29, #4 ; =4
mov w0, wzr
bl _doSomething
LBB0_2: ; %false
mov sp, x29
ldp x29, x30, [sp], #16
ret
With shrink-wrapping we could generate:
_f: ; @f
; BB#0:
cmp w0, w1
b.ge LBB0_2
; BB#1: ; %true
stp x29, x30, [sp, #-16]!
mov x29, sp
sub sp, sp, #16 ; =16
stur w0, [x29, #-4]
sub x1, x29, #4 ; =4
mov w0, wzr
bl _doSomething
add sp, x29, #16 ; =16
ldp x29, x30, [sp], #16
LBB0_2: ; %false
ret
Therefore, we would pay the overhead of setting up/destroying the frame only if
we actually do the call.
** Proposed Solution **
This patch introduces a new machine pass that perform the shrink-wrapping
analysis (See the comments at the beginning of ShrinkWrap.cpp for more details).
It then stores the safe save and restore point into the MachineFrameInfo
attached to the MachineFunction.
This information is then used by the PrologEpilogInserter (PEI) to place the
related code at the right place. This pass runs right before the PEI.
Unlike the original paper of Chow from PLDI’88, this implementation of
shrink-wrapping does not use expensive data-flow analysis and does not need hack
to properly avoid frequently executed point. Instead, it relies on dominance and
loop properties.
The pass is off by default and each target can opt-in by setting the
EnableShrinkWrap boolean to true in their derived class of TargetPassConfig.
This setting can also be overwritten on the command line by using
-enable-shrink-wrap.
Before you try out the pass for your target, make sure you properly fix your
emitProlog/emitEpilog/adjustForXXX method to cope with basic blocks that are not
necessarily the entry block.
** Design Decisions **
1. ShrinkWrap is its own pass right now. It could frankly be merged into PEI but
for debugging and clarity I thought it was best to have its own file.
2. Right now, we only support one save point and one restore point. At some
point we can expand this to several save point and restore point, the impacted
component would then be:
- The pass itself: New algorithm needed.
- MachineFrameInfo: Hold a list or set of Save/Restore point instead of one
pointer.
- PEI: Should loop over the save point and restore point.
Anyhow, at least for this first iteration, I do not believe this is interesting
to support the complex cases. We should revisit that when we motivating
examples.
Differential Revision: http://reviews.llvm.org/D9210
<rdar://problem/3201744>
llvm-svn: 236507
2015-05-06 01:38:16 +08:00
|
|
|
void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2014-04-29 15:57:37 +08:00
|
|
|
void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const override;
|
2010-11-15 08:06:54 +08:00
|
|
|
|
2014-04-29 15:57:37 +08:00
|
|
|
bool hasFP(const MachineFunction &MF) const override;
|
2010-12-19 03:53:14 +08:00
|
|
|
bool needsFP(const MachineFunction &MF) const;
|
2013-03-22 03:03:19 +08:00
|
|
|
void replaceFPWithRealFP(MachineFunction &MF) const;
|
2010-11-19 05:19:35 +08:00
|
|
|
|
2010-11-28 07:05:25 +08:00
|
|
|
void processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
|
2014-04-29 15:57:37 +08:00
|
|
|
RegScavenger *RS = nullptr) const override;
|
2013-03-15 04:33:40 +08:00
|
|
|
void processFunctionBeforeFrameFinalized(MachineFunction &MF,
|
2014-04-29 15:57:37 +08:00
|
|
|
RegScavenger *RS = nullptr) const override;
|
2013-03-15 13:06:04 +08:00
|
|
|
void addScavengingSpillSlot(MachineFunction &MF, RegScavenger *RS) const;
|
2010-11-28 07:05:25 +08:00
|
|
|
|
2012-09-12 22:47:47 +08:00
|
|
|
bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
2014-04-29 15:57:37 +08:00
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2012-09-12 22:47:47 +08:00
|
|
|
|
2013-02-22 04:05:00 +08:00
|
|
|
void eliminateCallFramePseudoInstr(MachineFunction &MF,
|
2014-04-29 15:57:37 +08:00
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) const override;
|
2013-02-22 04:05:00 +08:00
|
|
|
|
2012-09-12 22:47:47 +08:00
|
|
|
bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
2014-04-29 15:57:37 +08:00
|
|
|
MachineBasicBlock::iterator MI,
|
|
|
|
const std::vector<CalleeSavedInfo> &CSI,
|
|
|
|
const TargetRegisterInfo *TRI) const override;
|
2012-09-12 22:47:47 +08:00
|
|
|
|
2010-11-15 08:06:54 +08:00
|
|
|
/// targetHandlesStackFrameRounding - Returns true if the target is
|
|
|
|
/// responsible for rounding up the stack frame (probably at emitPrologue
|
|
|
|
/// time).
|
2014-04-29 15:57:37 +08:00
|
|
|
bool targetHandlesStackFrameRounding() const override { return true; }
|
2010-11-15 08:06:54 +08:00
|
|
|
|
2006-12-07 01:42:06 +08:00
|
|
|
/// getReturnSaveOffset - Return the previous frame offset to save the
|
|
|
|
/// return address.
|
2015-02-13 08:39:27 +08:00
|
|
|
unsigned getReturnSaveOffset() const { return ReturnSaveOffset; }
|
2006-12-07 01:42:06 +08:00
|
|
|
|
[PowerPC] Simplify and improve loading into TOC register
During an indirect function call sequence on the 64-bit SVR4 ABI,
generate code must load and then restore the TOC register.
This does not use a regular LOAD instruction since the TOC
register r2 is marked as reserved. Instead, the are two
special instruction patterns:
let RST = 2, DS = 2 in
def LDinto_toc: DSForm_1a<58, 0, (outs), (ins g8rc:$reg),
"ld 2, 8($reg)", IIC_LdStLD,
[(PPCload_toc i64:$reg)]>, isPPC64;
let RST = 2, DS = 10, RA = 1 in
def LDtoc_restore : DSForm_1a<58, 0, (outs), (ins),
"ld 2, 40(1)", IIC_LdStLD,
[(PPCtoc_restore)]>, isPPC64;
Note that these not only restrict the destination of the
load to r2, but they also restrict the *source* of the
load to particular address combinations. The latter is
a problem when we want to support the ELFv2 ABI, since
there the TOC save slot is no longer at 40(1).
This patch replaces those two instructions with a single
instruction pattern that only hard-codes r2 as destination,
but supports generic addresses as source. This will allow
supporting the ELFv2 ABI, and also helps generate more
efficient code for calls to absolute addresses (allowing
simplification of the ppc64-calls.ll test case).
llvm-svn: 211193
2014-06-19 01:52:49 +08:00
|
|
|
/// getTOCSaveOffset - Return the previous frame offset to save the
|
|
|
|
/// TOC register -- 64-bit SVR4 ABI only.
|
2015-02-13 08:39:36 +08:00
|
|
|
unsigned getTOCSaveOffset() const { return TOCSaveOffset; }
|
[PowerPC] Simplify and improve loading into TOC register
During an indirect function call sequence on the 64-bit SVR4 ABI,
generate code must load and then restore the TOC register.
This does not use a regular LOAD instruction since the TOC
register r2 is marked as reserved. Instead, the are two
special instruction patterns:
let RST = 2, DS = 2 in
def LDinto_toc: DSForm_1a<58, 0, (outs), (ins g8rc:$reg),
"ld 2, 8($reg)", IIC_LdStLD,
[(PPCload_toc i64:$reg)]>, isPPC64;
let RST = 2, DS = 10, RA = 1 in
def LDtoc_restore : DSForm_1a<58, 0, (outs), (ins),
"ld 2, 40(1)", IIC_LdStLD,
[(PPCtoc_restore)]>, isPPC64;
Note that these not only restrict the destination of the
load to r2, but they also restrict the *source* of the
load to particular address combinations. The latter is
a problem when we want to support the ELFv2 ABI, since
there the TOC save slot is no longer at 40(1).
This patch replaces those two instructions with a single
instruction pattern that only hard-codes r2 as destination,
but supports generic addresses as source. This will allow
supporting the ELFv2 ABI, and also helps generate more
efficient code for calls to absolute addresses (allowing
simplification of the ppc64-calls.ll test case).
llvm-svn: 211193
2014-06-19 01:52:49 +08:00
|
|
|
|
2006-11-17 06:43:37 +08:00
|
|
|
/// getFramePointerSaveOffset - Return the previous frame offset to save the
|
|
|
|
/// frame pointer.
|
2015-02-13 08:39:38 +08:00
|
|
|
unsigned getFramePointerSaveOffset() const { return FramePointerSaveOffset; }
|
2010-11-15 08:06:05 +08:00
|
|
|
|
2013-07-17 08:45:52 +08:00
|
|
|
/// getBasePointerSaveOffset - Return the previous frame offset to save the
|
|
|
|
/// base pointer.
|
2015-02-14 06:48:53 +08:00
|
|
|
unsigned getBasePointerSaveOffset() const { return BasePointerSaveOffset; }
|
2013-07-17 08:45:52 +08:00
|
|
|
|
2006-11-17 06:43:37 +08:00
|
|
|
/// getLinkageSize - Return the size of the PowerPC ABI linkage area.
|
|
|
|
///
|
2015-02-14 06:22:57 +08:00
|
|
|
unsigned getLinkageSize() const { return LinkageSize; }
|
2006-11-17 06:43:37 +08:00
|
|
|
|
2009-09-28 01:58:47 +08:00
|
|
|
const SpillSlot *
|
2014-06-13 04:54:11 +08:00
|
|
|
getCalleeSavedSpillSlots(unsigned &NumEntries) const override;
|
2004-08-15 06:16:36 +08:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|