mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
[Stackmap] Liveness Analysis Pass
This optional register liveness analysis pass can be enabled with either -enable-stackmap-liveness, -enable-patchpoint-liveness, or both. The pass traverses each basic block in a machine function. For each basic block the instructions are processed in reversed order and if a patchpoint or stackmap instruction is encountered the current live-out register set is encoded as a register mask and attached to the instruction. Later on during stackmap generation the live-out register mask is processed and also emitted as part of the stackmap. This information is optional and intended for optimization purposes only. This will enable a client of the stackmap to reason about the registers it can use and which registers need to be preserved. Reviewed by Andy git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -145,6 +145,14 @@ class MachineFrameInfo {
|
||||
/// to builtin \@llvm.returnaddress.
|
||||
bool ReturnAddressTaken;
|
||||
|
||||
/// HasStackMap - This boolean keeps track of whether there is a call
|
||||
/// to builtin \@llvm.experimental.stackmap.
|
||||
bool HasStackMap;
|
||||
|
||||
/// HasPatchPoint - This boolean keeps track of whether there is a call
|
||||
/// to builtin \@llvm.experimental.patchpoint.
|
||||
bool HasPatchPoint;
|
||||
|
||||
/// StackSize - The prolog/epilog code inserter calculates the final stack
|
||||
/// offsets for all of the fixed size objects, updating the Objects list
|
||||
/// above. It then updates StackSize to contain the number of bytes that need
|
||||
@@ -235,6 +243,8 @@ public:
|
||||
HasVarSizedObjects = false;
|
||||
FrameAddressTaken = false;
|
||||
ReturnAddressTaken = false;
|
||||
HasStackMap = false;
|
||||
HasPatchPoint = false;
|
||||
AdjustsStack = false;
|
||||
HasCalls = false;
|
||||
StackProtectorIdx = -1;
|
||||
@@ -280,6 +290,18 @@ public:
|
||||
bool isReturnAddressTaken() const { return ReturnAddressTaken; }
|
||||
void setReturnAddressIsTaken(bool s) { ReturnAddressTaken = s; }
|
||||
|
||||
/// hasStackMap - This method may be called any time after instruction
|
||||
/// selection is complete to determine if there is a call to builtin
|
||||
/// \@llvm.experimental.stackmap.
|
||||
bool hasStackMap() const { return HasStackMap; }
|
||||
void setHasStackMap(bool s = true) { HasStackMap = s; }
|
||||
|
||||
/// hasPatchPoint - This method may be called any time after instruction
|
||||
/// selection is complete to determine if there is a call to builtin
|
||||
/// \@llvm.experimental.patchpoint.
|
||||
bool hasPatchPoint() const { return HasPatchPoint; }
|
||||
void setHasPatchPoint(bool s = true) { HasPatchPoint = s; }
|
||||
|
||||
/// getObjectIndexBegin - Return the minimum frame object index.
|
||||
///
|
||||
int getObjectIndexBegin() const { return -NumFixedObjects; }
|
||||
|
@@ -426,6 +426,15 @@ public:
|
||||
OperandRecycler.deallocate(Cap, Array);
|
||||
}
|
||||
|
||||
/// \brief Allocate and initialize a register mask with @p NumRegister bits.
|
||||
uint32_t *allocateRegisterMask(unsigned NumRegister) {
|
||||
unsigned Size = (NumRegister + 31) / 32;
|
||||
uint32_t *Mask = Allocator.Allocate<uint32_t>(Size);
|
||||
for (unsigned i = 0; i != Size; ++i)
|
||||
Mask[i] = 0;
|
||||
return Mask;
|
||||
}
|
||||
|
||||
/// allocateMemRefsArray - Allocate an array to hold MachineMemOperand
|
||||
/// pointers. This array is owned by the MachineFunction.
|
||||
MachineInstr::mmo_iterator allocateMemRefsArray(unsigned long Num);
|
||||
|
@@ -56,6 +56,7 @@ public:
|
||||
MO_GlobalAddress, ///< Address of a global value
|
||||
MO_BlockAddress, ///< Address of a basic block
|
||||
MO_RegisterMask, ///< Mask of preserved registers.
|
||||
MO_RegisterLiveOut, ///< Mask of live-out registers.
|
||||
MO_Metadata, ///< Metadata reference (for debug info)
|
||||
MO_MCSymbol ///< MCSymbol reference (for debug/eh info)
|
||||
};
|
||||
@@ -153,7 +154,7 @@ private:
|
||||
const ConstantFP *CFP; // For MO_FPImmediate.
|
||||
const ConstantInt *CI; // For MO_CImmediate. Integers > 64bit.
|
||||
int64_t ImmVal; // For MO_Immediate.
|
||||
const uint32_t *RegMask; // For MO_RegisterMask.
|
||||
const uint32_t *RegMask; // For MO_RegisterMask and MO_RegisterLiveOut.
|
||||
const MDNode *MD; // For MO_Metadata.
|
||||
MCSymbol *Sym; // For MO_MCSymbol
|
||||
|
||||
@@ -246,6 +247,8 @@ public:
|
||||
bool isBlockAddress() const { return OpKind == MO_BlockAddress; }
|
||||
/// isRegMask - Tests if this is a MO_RegisterMask operand.
|
||||
bool isRegMask() const { return OpKind == MO_RegisterMask; }
|
||||
/// isRegLiveOut - Tests if this is a MO_RegisterLiveOut operand.
|
||||
bool isRegLiveOut() const { return OpKind == MO_RegisterLiveOut; }
|
||||
/// isMetadata - Tests if this is a MO_Metadata operand.
|
||||
bool isMetadata() const { return OpKind == MO_Metadata; }
|
||||
bool isMCSymbol() const { return OpKind == MO_MCSymbol; }
|
||||
@@ -476,6 +479,12 @@ public:
|
||||
return Contents.RegMask;
|
||||
}
|
||||
|
||||
/// getRegLiveOut - Returns a bit mask of live-out registers.
|
||||
const uint32_t *getRegLiveOut() const {
|
||||
assert(isRegLiveOut() && "Wrong MachineOperand accessor");
|
||||
return Contents.RegMask;
|
||||
}
|
||||
|
||||
const MDNode *getMetadata() const {
|
||||
assert(isMetadata() && "Wrong MachineOperand accessor");
|
||||
return Contents.MD;
|
||||
@@ -659,6 +668,12 @@ public:
|
||||
Op.Contents.RegMask = Mask;
|
||||
return Op;
|
||||
}
|
||||
static MachineOperand CreateRegLiveOut(const uint32_t *Mask) {
|
||||
assert(Mask && "Missing live-out register mask");
|
||||
MachineOperand Op(MachineOperand::MO_RegisterLiveOut);
|
||||
Op.Contents.RegMask = Mask;
|
||||
return Op;
|
||||
}
|
||||
static MachineOperand CreateMetadata(const MDNode *Meta) {
|
||||
MachineOperand Op(MachineOperand::MO_Metadata);
|
||||
Op.Contents.MD = Meta;
|
||||
|
@@ -568,6 +568,11 @@ namespace llvm {
|
||||
/// bundles (created earlier, e.g. during pre-RA scheduling).
|
||||
extern char &FinalizeMachineBundlesID;
|
||||
|
||||
/// StackMapLiveness - This pass analyses the register live-out set of
|
||||
/// stackmap/patchpoint intrinsics and attaches the calculated information to
|
||||
/// the intrinsic for later emission to the StackMap.
|
||||
extern char &StackMapLivenessID;
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
|
65
include/llvm/CodeGen/StackMapLivenessAnalysis.h
Normal file
65
include/llvm/CodeGen/StackMapLivenessAnalysis.h
Normal file
@@ -0,0 +1,65 @@
|
||||
//===--- StackMapLivenessAnalysis - StackMap Liveness Analysis --*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This pass calculates the liveness for each basic block in a function and
|
||||
// attaches the register live-out information to a stackmap or patchpoint
|
||||
// intrinsic if present.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CODEGEN_STACKMAP_LIVENESS_ANALYSIS_H
|
||||
#define LLVM_CODEGEN_STACKMAP_LIVENESS_ANALYSIS_H
|
||||
|
||||
#include "llvm/CodeGen/LivePhysRegs.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
|
||||
|
||||
namespace llvm {
|
||||
|
||||
/// \brief This pass calculates the liveness information for each basic block in
|
||||
/// a function and attaches the register live-out information to a stackmap or
|
||||
/// patchpoint intrinsic if present.
|
||||
///
|
||||
/// This is an optional pass that has to be explicitly enabled via the
|
||||
/// -enable-stackmap-liveness and/or -enable-patchpoint-liveness flag. The pass
|
||||
/// skips functions that don't have any stackmap or patchpoint intrinsics. The
|
||||
/// information provided by this pass is optional and not required by the
|
||||
/// aformentioned intrinsics to function.
|
||||
class StackMapLiveness : public MachineFunctionPass {
|
||||
MachineFunction *MF;
|
||||
const TargetRegisterInfo *TRI;
|
||||
LivePhysRegs LiveRegs;
|
||||
public:
|
||||
static char ID;
|
||||
|
||||
/// \brief Default construct and initialize the pass.
|
||||
StackMapLiveness();
|
||||
|
||||
/// \brief Tell the pass manager which passes we depend on and what
|
||||
/// information we preserve.
|
||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const;
|
||||
|
||||
/// \brief Calculate the liveness information for the given machine function.
|
||||
virtual bool runOnMachineFunction(MachineFunction &MF);
|
||||
|
||||
private:
|
||||
/// \brief Performs the actual liveness calculation for the function.
|
||||
bool calculateLiveness();
|
||||
|
||||
/// \brief Add the current register live set to the instruction.
|
||||
void addLiveOutSetToMI(MachineInstr &MI);
|
||||
|
||||
/// \brief Create a register mask and initialize it with the registers from
|
||||
/// the register live set.
|
||||
uint32_t *createRegisterMask() const;
|
||||
};
|
||||
|
||||
} // llvm namespace
|
||||
|
||||
#endif // LLVM_CODEGEN_STACKMAP_LIVENESS_ANALYSIS_H
|
@@ -93,6 +93,22 @@ public:
|
||||
: LocType(LocType), Size(Size), Reg(Reg), Offset(Offset) {}
|
||||
};
|
||||
|
||||
struct LiveOutReg {
|
||||
unsigned short Reg;
|
||||
unsigned short RegNo;
|
||||
unsigned short Size;
|
||||
|
||||
LiveOutReg() : Reg(0), RegNo(0), Size(0) {}
|
||||
LiveOutReg(unsigned short Reg, unsigned short RegNo, unsigned short Size)
|
||||
: Reg(Reg), RegNo(RegNo), Size(Size) {}
|
||||
|
||||
void MarkInvalid() { Reg = 0; }
|
||||
|
||||
// Only sort by the dwarf register number.
|
||||
bool operator< (const LiveOutReg &LO) const { return RegNo < LO.RegNo; }
|
||||
static bool IsInvalid(const LiveOutReg &LO) { return LO.Reg == 0; }
|
||||
};
|
||||
|
||||
// OpTypes are used to encode information about the following logical
|
||||
// operand (which may consist of several MachineOperands) for the
|
||||
// OpParser.
|
||||
@@ -115,15 +131,18 @@ public:
|
||||
|
||||
private:
|
||||
typedef SmallVector<Location, 8> LocationVec;
|
||||
typedef SmallVector<LiveOutReg, 8> LiveOutVec;
|
||||
|
||||
struct CallsiteInfo {
|
||||
const MCExpr *CSOffsetExpr;
|
||||
uint64_t ID;
|
||||
LocationVec Locations;
|
||||
LiveOutVec LiveOuts;
|
||||
CallsiteInfo() : CSOffsetExpr(0), ID(0) {}
|
||||
CallsiteInfo(const MCExpr *CSOffsetExpr, uint64_t ID,
|
||||
LocationVec Locations)
|
||||
: CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(Locations) {}
|
||||
LocationVec &Locations, LiveOutVec &LiveOuts)
|
||||
: CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(Locations),
|
||||
LiveOuts(LiveOuts) {}
|
||||
};
|
||||
|
||||
typedef std::vector<CallsiteInfo> CallsiteInfoList;
|
||||
@@ -154,8 +173,15 @@ private:
|
||||
|
||||
std::pair<Location, MachineInstr::const_mop_iterator>
|
||||
parseOperand(MachineInstr::const_mop_iterator MOI,
|
||||
MachineInstr::const_mop_iterator MOE);
|
||||
MachineInstr::const_mop_iterator MOE) const;
|
||||
|
||||
/// \brief Create a live-out register record for the given register @p Reg.
|
||||
LiveOutReg createLiveOutReg(unsigned Reg, const MCRegisterInfo &MCRI,
|
||||
const TargetRegisterInfo *TRI) const;
|
||||
|
||||
/// \brief Parse the register live-out mask and return a vector of live-out
|
||||
/// registers that need to be recorded in the stackmap.
|
||||
LiveOutVec parseRegisterLiveOutMask(const uint32_t *Mask) const;
|
||||
|
||||
/// This should be called by the MC lowering code _immediately_ before
|
||||
/// lowering the MI to an MCInst. It records where the operands for the
|
||||
|
@@ -266,6 +266,7 @@ void initializeLoopVectorizePass(PassRegistry&);
|
||||
void initializeSLPVectorizerPass(PassRegistry&);
|
||||
void initializeBBVectorizePass(PassRegistry&);
|
||||
void initializeMachineFunctionPrinterPassPass(PassRegistry&);
|
||||
void initializeStackMapLivenessPass(PassRegistry&);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user