mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-25 15:01:07 +00:00
Run clang-format before making changes to StackMaps. NFC.
llvm-svn: 241754
This commit is contained in:
parent
3eb81c15a2
commit
ce43222043
@ -1,5 +1,4 @@
|
||||
//===------------------- StackMaps.h - StackMaps ----------------*- C++ -*-===//
|
||||
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
@ -42,10 +41,12 @@ class PatchPointOpers {
|
||||
public:
|
||||
/// Enumerate the meta operands.
|
||||
enum { IDPos, NBytesPos, TargetPos, NArgPos, CCPos, MetaEnd };
|
||||
|
||||
private:
|
||||
const MachineInstr *MI;
|
||||
bool HasDef;
|
||||
bool IsAnyReg;
|
||||
|
||||
public:
|
||||
explicit PatchPointOpers(const MachineInstr *MI);
|
||||
|
||||
@ -66,8 +67,8 @@ public:
|
||||
/// Get the operand index of the variable list of non-argument operands.
|
||||
/// These hold the "live state".
|
||||
unsigned getVarIdx() const {
|
||||
return getMetaIdx() + MetaEnd
|
||||
+ MI->getOperand(getMetaIdx(NArgPos)).getImm();
|
||||
return getMetaIdx() + MetaEnd +
|
||||
MI->getOperand(getMetaIdx(NArgPos)).getImm();
|
||||
}
|
||||
|
||||
/// Get the index at which stack map locations will be recorded.
|
||||
@ -98,15 +99,10 @@ private:
|
||||
|
||||
// These values are relative offests from the start of the statepoint meta
|
||||
// arguments (i.e. the end of the call arguments).
|
||||
enum {
|
||||
CCOffset = 1,
|
||||
FlagsOffset = 3,
|
||||
NumVMSArgsOffset = 5
|
||||
};
|
||||
enum { CCOffset = 1, FlagsOffset = 3, NumVMSArgsOffset = 5 };
|
||||
|
||||
public:
|
||||
explicit StatepointOpers(const MachineInstr *MI):
|
||||
MI(MI) { }
|
||||
explicit StatepointOpers(const MachineInstr *MI) : MI(MI) {}
|
||||
|
||||
/// Get starting index of non call related arguments
|
||||
/// (calling convention, statepoint flags, vm state and gc state).
|
||||
@ -134,15 +130,21 @@ private:
|
||||
class StackMaps {
|
||||
public:
|
||||
struct Location {
|
||||
enum LocationType { Unprocessed, Register, Direct, Indirect, Constant,
|
||||
ConstantIndex };
|
||||
enum LocationType {
|
||||
Unprocessed,
|
||||
Register,
|
||||
Direct,
|
||||
Indirect,
|
||||
Constant,
|
||||
ConstantIndex
|
||||
};
|
||||
LocationType LocType;
|
||||
unsigned Size;
|
||||
unsigned Reg;
|
||||
int64_t Offset;
|
||||
Location() : LocType(Unprocessed), Size(0), Reg(0), Offset(0) {}
|
||||
Location(LocationType LocType, unsigned Size, unsigned Reg, int64_t Offset)
|
||||
: LocType(LocType), Size(Size), Reg(Reg), Offset(Offset) {}
|
||||
: LocType(LocType), Size(Size), Reg(Reg), Offset(Offset) {}
|
||||
};
|
||||
|
||||
struct LiveOutReg {
|
||||
@ -152,12 +154,12 @@ public:
|
||||
|
||||
LiveOutReg() : Reg(0), RegNo(0), Size(0) {}
|
||||
LiveOutReg(unsigned short Reg, unsigned short RegNo, unsigned short Size)
|
||||
: Reg(Reg), RegNo(RegNo), Size(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; }
|
||||
bool operator<(const LiveOutReg &LO) const { return RegNo < LO.RegNo; }
|
||||
static bool IsInvalid(const LiveOutReg &LO) { return LO.Reg == 0; }
|
||||
};
|
||||
|
||||
@ -205,8 +207,8 @@ private:
|
||||
CallsiteInfo() : CSOffsetExpr(nullptr), ID(0) {}
|
||||
CallsiteInfo(const MCExpr *CSOffsetExpr, uint64_t ID,
|
||||
LocationVec &&Locations, LiveOutVec &&LiveOuts)
|
||||
: CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(std::move(Locations)),
|
||||
LiveOuts(std::move(LiveOuts)) {}
|
||||
: CSOffsetExpr(CSOffsetExpr), ID(ID), Locations(std::move(Locations)),
|
||||
LiveOuts(std::move(LiveOuts)) {}
|
||||
};
|
||||
|
||||
typedef std::vector<CallsiteInfo> CallsiteInfoList;
|
||||
@ -218,8 +220,8 @@ private:
|
||||
|
||||
MachineInstr::const_mop_iterator
|
||||
parseOperand(MachineInstr::const_mop_iterator MOI,
|
||||
MachineInstr::const_mop_iterator MOE,
|
||||
LocationVec &Locs, LiveOutVec &LiveOuts) const;
|
||||
MachineInstr::const_mop_iterator MOE, LocationVec &Locs,
|
||||
LiveOutVec &LiveOuts) const;
|
||||
|
||||
/// \brief Create a live-out register record for the given register @p Reg.
|
||||
LiveOutReg createLiveOutReg(unsigned Reg,
|
||||
@ -254,7 +256,6 @@ private:
|
||||
void print(raw_ostream &OS);
|
||||
void debug() { print(dbgs()); }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
@ -29,17 +29,17 @@ using namespace llvm;
|
||||
|
||||
#define DEBUG_TYPE "stackmaps"
|
||||
|
||||
static cl::opt<int> StackMapVersion("stackmap-version", cl::init(1),
|
||||
cl::desc("Specify the stackmap encoding version (default = 1)"));
|
||||
static cl::opt<int> StackMapVersion(
|
||||
"stackmap-version", cl::init(1),
|
||||
cl::desc("Specify the stackmap encoding version (default = 1)"));
|
||||
|
||||
const char *StackMaps::WSMP = "Stack Maps: ";
|
||||
|
||||
PatchPointOpers::PatchPointOpers(const MachineInstr *MI)
|
||||
: MI(MI),
|
||||
HasDef(MI->getOperand(0).isReg() && MI->getOperand(0).isDef() &&
|
||||
!MI->getOperand(0).isImplicit()),
|
||||
IsAnyReg(MI->getOperand(getMetaIdx(CCPos)).getImm() == CallingConv::AnyReg)
|
||||
{
|
||||
: MI(MI), HasDef(MI->getOperand(0).isReg() && MI->getOperand(0).isDef() &&
|
||||
!MI->getOperand(0).isImplicit()),
|
||||
IsAnyReg(MI->getOperand(getMetaIdx(CCPos)).getImm() ==
|
||||
CallingConv::AnyReg) {
|
||||
#ifndef NDEBUG
|
||||
unsigned CheckStartIdx = 0, e = MI->getNumOperands();
|
||||
while (CheckStartIdx < e && MI->getOperand(CheckStartIdx).isReg() &&
|
||||
@ -81,17 +81,18 @@ static unsigned getDwarfRegNum(unsigned Reg, const TargetRegisterInfo *TRI) {
|
||||
RegNo = TRI->getDwarfRegNum(*SR, false);
|
||||
|
||||
assert(RegNo >= 0 && "Invalid Dwarf register number.");
|
||||
return (unsigned) RegNo;
|
||||
return (unsigned)RegNo;
|
||||
}
|
||||
|
||||
MachineInstr::const_mop_iterator
|
||||
StackMaps::parseOperand(MachineInstr::const_mop_iterator MOI,
|
||||
MachineInstr::const_mop_iterator MOE,
|
||||
LocationVec &Locs, LiveOutVec &LiveOuts) const {
|
||||
MachineInstr::const_mop_iterator MOE, LocationVec &Locs,
|
||||
LiveOutVec &LiveOuts) const {
|
||||
const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo();
|
||||
if (MOI->isImm()) {
|
||||
switch (MOI->getImm()) {
|
||||
default: llvm_unreachable("Unrecognized operand type.");
|
||||
default:
|
||||
llvm_unreachable("Unrecognized operand type.");
|
||||
case StackMaps::DirectMemRefOp: {
|
||||
unsigned Size = AP.TM.getDataLayout()->getPointerSizeInBits();
|
||||
assert((Size % 8) == 0 && "Need pointer size in bytes.");
|
||||
@ -143,8 +144,7 @@ StackMaps::parseOperand(MachineInstr::const_mop_iterator MOI,
|
||||
if (SubRegIdx)
|
||||
Offset = TRI->getSubRegIdxOffset(SubRegIdx);
|
||||
|
||||
Locs.push_back(
|
||||
Location(Location::Register, RC->getSize(), RegNo, Offset));
|
||||
Locs.push_back(Location(Location::Register, RC->getSize(), RegNo, Offset));
|
||||
return ++MOI;
|
||||
}
|
||||
|
||||
@ -174,10 +174,10 @@ void StackMaps::print(raw_ostream &OS) {
|
||||
break;
|
||||
case Location::Register:
|
||||
OS << "Register ";
|
||||
if (TRI)
|
||||
OS << TRI->getName(Loc.Reg);
|
||||
else
|
||||
OS << Loc.Reg;
|
||||
if (TRI)
|
||||
OS << TRI->getName(Loc.Reg);
|
||||
else
|
||||
OS << Loc.Reg;
|
||||
break;
|
||||
case Location::Direct:
|
||||
OS << "Direct ";
|
||||
@ -249,8 +249,8 @@ StackMaps::parseRegisterLiveOutMask(const uint32_t *Mask) const {
|
||||
// in the list. Merge entries that refer to the same dwarf register and use
|
||||
// the maximum size that needs to be spilled.
|
||||
std::sort(LiveOuts.begin(), LiveOuts.end());
|
||||
for (LiveOutVec::iterator I = LiveOuts.begin(), E = LiveOuts.end();
|
||||
I != E; ++I) {
|
||||
for (LiveOutVec::iterator I = LiveOuts.begin(), E = LiveOuts.end(); I != E;
|
||||
++I) {
|
||||
for (LiveOutVec::iterator II = std::next(I); II != E; ++II) {
|
||||
if (I->RegNo != II->RegNo) {
|
||||
// Skip all the now invalid entries.
|
||||
@ -263,8 +263,9 @@ StackMaps::parseRegisterLiveOutMask(const uint32_t *Mask) const {
|
||||
II->MarkInvalid();
|
||||
}
|
||||
}
|
||||
LiveOuts.erase(std::remove_if(LiveOuts.begin(), LiveOuts.end(),
|
||||
LiveOutReg::IsInvalid), LiveOuts.end());
|
||||
LiveOuts.erase(
|
||||
std::remove_if(LiveOuts.begin(), LiveOuts.end(), LiveOutReg::IsInvalid),
|
||||
LiveOuts.end());
|
||||
return LiveOuts;
|
||||
}
|
||||
|
||||
@ -282,8 +283,8 @@ void StackMaps::recordStackMapOpers(const MachineInstr &MI, uint64_t ID,
|
||||
|
||||
if (recordResult) {
|
||||
assert(PatchPointOpers(&MI).hasDef() && "Stackmap has no return value.");
|
||||
parseOperand(MI.operands_begin(), std::next(MI.operands_begin()),
|
||||
Locations, LiveOuts);
|
||||
parseOperand(MI.operands_begin(), std::next(MI.operands_begin()), Locations,
|
||||
LiveOuts);
|
||||
}
|
||||
|
||||
// Parse operands.
|
||||
@ -292,8 +293,8 @@ void StackMaps::recordStackMapOpers(const MachineInstr &MI, uint64_t ID,
|
||||
}
|
||||
|
||||
// Move large constants into the constant pool.
|
||||
for (LocationVec::iterator I = Locations.begin(), E = Locations.end();
|
||||
I != E; ++I) {
|
||||
for (LocationVec::iterator I = Locations.begin(), E = Locations.end(); I != E;
|
||||
++I) {
|
||||
// Constants are encoded as sign-extended integers.
|
||||
// -1 is directly encoded as .long 0xFFFFFFFF with no constant pool.
|
||||
if (I->LocType == Location::Constant && !isInt<32>(I->Offset)) {
|
||||
@ -316,9 +317,8 @@ void StackMaps::recordStackMapOpers(const MachineInstr &MI, uint64_t ID,
|
||||
// Create an expression to calculate the offset of the callsite from function
|
||||
// entry.
|
||||
const MCExpr *CSOffsetExpr = MCBinaryExpr::createSub(
|
||||
MCSymbolRefExpr::create(MILabel, OutContext),
|
||||
MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext),
|
||||
OutContext);
|
||||
MCSymbolRefExpr::create(MILabel, OutContext),
|
||||
MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext);
|
||||
|
||||
CSInfos.emplace_back(CSOffsetExpr, ID, std::move(Locations),
|
||||
std::move(LiveOuts));
|
||||
@ -326,10 +326,10 @@ void StackMaps::recordStackMapOpers(const MachineInstr &MI, uint64_t ID,
|
||||
// Record the stack size of the current function.
|
||||
const MachineFrameInfo *MFI = AP.MF->getFrameInfo();
|
||||
const TargetRegisterInfo *RegInfo = AP.MF->getSubtarget().getRegisterInfo();
|
||||
const bool DynamicFrameSize = MFI->hasVarSizedObjects() ||
|
||||
RegInfo->needsStackRealignment(*(AP.MF));
|
||||
const bool DynamicFrameSize =
|
||||
MFI->hasVarSizedObjects() || RegInfo->needsStackRealignment(*(AP.MF));
|
||||
FnStackSize[AP.CurrentFnSym] =
|
||||
DynamicFrameSize ? UINT64_MAX : MFI->getStackSize();
|
||||
DynamicFrameSize ? UINT64_MAX : MFI->getStackSize();
|
||||
}
|
||||
|
||||
void StackMaps::recordStackMap(const MachineInstr &MI) {
|
||||
@ -347,7 +347,7 @@ void StackMaps::recordPatchPoint(const MachineInstr &MI) {
|
||||
int64_t ID = opers.getMetaOper(PatchPointOpers::IDPos).getImm();
|
||||
|
||||
MachineInstr::const_mop_iterator MOI =
|
||||
std::next(MI.operands_begin(), opers.getStackMapStartIdx());
|
||||
std::next(MI.operands_begin(), opers.getStackMapStartIdx());
|
||||
recordStackMapOpers(MI, ID, MOI, MI.operands_end(),
|
||||
opers.isAnyReg() && opers.hasDef());
|
||||
|
||||
@ -356,15 +356,14 @@ void StackMaps::recordPatchPoint(const MachineInstr &MI) {
|
||||
LocationVec &Locations = CSInfos.back().Locations;
|
||||
if (opers.isAnyReg()) {
|
||||
unsigned NArgs = opers.getMetaOper(PatchPointOpers::NArgPos).getImm();
|
||||
for (unsigned i = 0, e = (opers.hasDef() ? NArgs+1 : NArgs); i != e; ++i)
|
||||
for (unsigned i = 0, e = (opers.hasDef() ? NArgs + 1 : NArgs); i != e; ++i)
|
||||
assert(Locations[i].LocType == Location::Register &&
|
||||
"anyreg arg must be in reg.");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
void StackMaps::recordStatepoint(const MachineInstr &MI) {
|
||||
assert(MI.getOpcode() == TargetOpcode::STATEPOINT &&
|
||||
"expected statepoint");
|
||||
assert(MI.getOpcode() == TargetOpcode::STATEPOINT && "expected statepoint");
|
||||
|
||||
StatepointOpers opers(&MI);
|
||||
// Record all the deopt and gc operands (they're contiguous and run from the
|
||||
@ -387,8 +386,8 @@ void StackMaps::recordStatepoint(const MachineInstr &MI) {
|
||||
void StackMaps::emitStackmapHeader(MCStreamer &OS) {
|
||||
// Header.
|
||||
OS.EmitIntValue(StackMapVersion, 1); // Version.
|
||||
OS.EmitIntValue(0, 1); // Reserved.
|
||||
OS.EmitIntValue(0, 2); // Reserved.
|
||||
OS.EmitIntValue(0, 1); // Reserved.
|
||||
OS.EmitIntValue(0, 2); // Reserved.
|
||||
|
||||
// Num functions.
|
||||
DEBUG(dbgs() << WSMP << "#functions = " << FnStackSize.size() << '\n');
|
||||
@ -412,7 +411,7 @@ void StackMaps::emitFunctionFrameRecords(MCStreamer &OS) {
|
||||
DEBUG(dbgs() << WSMP << "functions:\n");
|
||||
for (auto const &FR : FnStackSize) {
|
||||
DEBUG(dbgs() << WSMP << "function addr: " << FR.first
|
||||
<< " frame size: " << FR.second);
|
||||
<< " frame size: " << FR.second);
|
||||
OS.EmitSymbolValue(FR.first, 8);
|
||||
OS.EmitIntValue(FR.second, 8);
|
||||
}
|
||||
@ -511,7 +510,7 @@ void StackMaps::emitCallsiteEntries(MCStreamer &OS) {
|
||||
|
||||
/// Serialize the stackmap data.
|
||||
void StackMaps::serializeToStackMapSection() {
|
||||
(void) WSMP;
|
||||
(void)WSMP;
|
||||
// Bail out if there's no stack map data.
|
||||
assert((!CSInfos.empty() || (CSInfos.empty() && ConstPool.empty())) &&
|
||||
"Expected empty constant pool too!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user