LLVM 20.0.0git
|
#include "StatepointLowering.h"
#include "SelectionDAGBuilder.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/SmallBitVector.h"
#include "llvm/ADT/SmallSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/CodeGen/FunctionLoweringInfo.h"
#include "llvm/CodeGen/GCMetadata.h"
#include "llvm/CodeGen/ISDOpcodes.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineMemOperand.h"
#include "llvm/CodeGen/RuntimeLibcallUtil.h"
#include "llvm/CodeGen/SelectionDAG.h"
#include "llvm/CodeGen/SelectionDAGNodes.h"
#include "llvm/CodeGen/StackMaps.h"
#include "llvm/CodeGen/TargetLowering.h"
#include "llvm/CodeGen/TargetOpcodes.h"
#include "llvm/CodeGenTypes/MachineValueType.h"
#include "llvm/IR/CallingConv.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/GCStrategy.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Statepoint.h"
#include "llvm/IR/Type.h"
#include "llvm/Support/Casting.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetOptions.h"
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <iterator>
#include <tuple>
#include <utility>
Go to the source code of this file.
Macros | |
#define | DEBUG_TYPE "statepoint-lowering" |
Typedefs | |
typedef FunctionLoweringInfo::StatepointRelocationRecord | RecordType |
Functions | |
STATISTIC (NumSlotsAllocatedForStatepoints, "Number of stack slots allocated for statepoints") | |
STATISTIC (NumOfStatepoints, "Number of statepoint nodes encountered") | |
STATISTIC (StatepointMaxSlotsRequired, "Maximum number of stack slots required for a singe statepoint") | |
static void | pushStackMapConstant (SmallVectorImpl< SDValue > &Ops, SelectionDAGBuilder &Builder, uint64_t Value) |
static std::optional< int > | findPreviousSpillSlot (const Value *Val, SelectionDAGBuilder &Builder, int LookUpDepth) |
Utility function for reservePreviousStackSlotForValue. | |
static bool | willLowerDirectly (SDValue Incoming) |
Return true if-and-only-if the given SDValue can be lowered as either a constant argument or a stack reference. | |
static void | reservePreviousStackSlotForValue (const Value *IncomingValue, SelectionDAGBuilder &Builder) |
Try to find existing copies of the incoming values in stack slots used for statepoint spilling. | |
static std::pair< SDValue, SDNode * > | lowerCallFromStatepointLoweringInfo (SelectionDAGBuilder::StatepointLoweringInfo &SI, SelectionDAGBuilder &Builder) |
Extract call from statepoint, lower it and return pointer to the call node. | |
static MachineMemOperand * | getMachineMemOperand (MachineFunction &MF, FrameIndexSDNode &FI) |
static std::tuple< SDValue, SDValue, MachineMemOperand * > | spillIncomingStatepointValue (SDValue Incoming, SDValue Chain, SelectionDAGBuilder &Builder) |
Spill a value incoming to the statepoint. | |
static void | lowerIncomingStatepointValue (SDValue Incoming, bool RequireSpillSlot, SmallVectorImpl< SDValue > &Ops, SmallVectorImpl< MachineMemOperand * > &MemRefs, SelectionDAGBuilder &Builder) |
Lower a single value incoming to a statepoint node. | |
static bool | isGCValue (const Value *V, SelectionDAGBuilder &Builder) |
Return true if value V represents the GC value. | |
static void | lowerStatepointMetaArgs (SmallVectorImpl< SDValue > &Ops, SmallVectorImpl< MachineMemOperand * > &MemRefs, SmallVectorImpl< SDValue > &GCPtrs, DenseMap< SDValue, int > &LowerAsVReg, SelectionDAGBuilder::StatepointLoweringInfo &SI, SelectionDAGBuilder &Builder) |
Lower deopt state and gc pointer arguments of the statepoint. | |
static std::pair< const GCResultInst *, const GCResultInst * > | getGCResultLocality (const GCStatepointInst &S) |
Return two gc.results if present. | |
Variables | |
static cl::opt< bool > | UseRegistersForDeoptValues ("use-registers-for-deopt-values", cl::Hidden, cl::init(false), cl::desc("Allow using registers for non pointer deopt args")) |
static cl::opt< bool > | UseRegistersForGCPointersInLandingPad ("use-registers-for-gc-values-in-landing-pad", cl::Hidden, cl::init(false), cl::desc("Allow using registers for gc pointer in landing pad")) |
static cl::opt< unsigned > | MaxRegistersForGCPointers ("max-registers-for-gc-values", cl::Hidden, cl::init(0), cl::desc("Max number of VRegs allowed to pass GC pointer meta args in")) |
#define DEBUG_TYPE "statepoint-lowering" |
Definition at line 57 of file StatepointLowering.cpp.
Definition at line 77 of file StatepointLowering.cpp.
|
static |
Utility function for reservePreviousStackSlotForValue.
Tries to find stack slot index to which we have spilled value for previous statepoints. LookUpDepth specifies maximum DFS depth this function is allowed to look.
Definition at line 161 of file StatepointLowering.cpp.
References assert(), findPreviousSpillSlot(), llvm::SelectionDAGBuilder::FuncInfo, llvm::FunctionLoweringInfo::StatepointRelocationRecord::Spill, and llvm::FunctionLoweringInfo::StatepointRelocationMaps.
Referenced by findPreviousSpillSlot(), and reservePreviousStackSlotForValue().
|
static |
Return two gc.results if present.
First result is a block local gc.result, second result is a non-block local gc.result. Corresponding entry will be nullptr if not present.
Definition at line 999 of file StatepointLowering.cpp.
References llvm::ilist_detail::node_parent_access< NodeTy, ParentTy >::getParent(), and llvm::Value::users().
Referenced by llvm::SelectionDAGBuilder::LowerStatepoint().
|
static |
Definition at line 359 of file StatepointLowering.cpp.
References llvm::MachinePointerInfo::getFixedStack(), llvm::MachineFunction::getFrameInfo(), llvm::FrameIndexSDNode::getIndex(), llvm::MachineFunction::getMachineMemOperand(), llvm::MachineMemOperand::MOLoad, llvm::MachineMemOperand::MOStore, and llvm::MachineMemOperand::MOVolatile.
Referenced by llvm::MachineFunction::getMachineMemOperand(), lowerIncomingStatepointValue(), lowerStatepointMetaArgs(), and spillIncomingStatepointValue().
|
static |
Return true if value V represents the GC value.
The behavior is conservative in case it is not sure that value is not GC the function returns true.
Definition at line 503 of file StatepointLowering.cpp.
References llvm::SelectionDAGBuilder::GFI.
Referenced by llvm::SelectionDAGBuilder::LowerStatepoint(), and lowerStatepointMetaArgs().
|
static |
Extract call from statepoint, lower it and return pointer to the call node.
Also update NodeMap so that getValue(statepoint) will reference lowered call result
Definition at line 319 of file StatepointLowering.cpp.
References assert(), llvm::ISD::CALLSEQ_END, llvm::ISD::CopyFromReg, llvm::ISD::EH_LABEL, llvm::SDValue::getNode(), llvm::SDNode::getOpcode(), llvm::SDNode::getOperand(), llvm::ISD::LOAD, and llvm::SelectionDAGBuilder::lowerInvokable().
Referenced by llvm::SelectionDAGBuilder::LowerAsSTATEPOINT().
|
static |
Lower a single value incoming to a statepoint node.
This value can be either a deopt value or a gc value, the handling is the same. We special case constants and allocas, then fall back to spilling if required.
Definition at line 425 of file StatepointLowering.cpp.
References assert(), llvm::CallingConv::C, llvm::SelectionDAGBuilder::DAG, llvm::SelectionDAGBuilder::getFrameIndexTy(), llvm::SelectionDAG::getMachineFunction(), getMachineMemOperand(), llvm::SelectionDAGBuilder::getRoot(), llvm::SelectionDAG::getTargetFrameIndex(), llvm_unreachable, llvm::SmallVectorTemplateBase< T, bool >::push_back(), pushStackMapConstant(), llvm::SelectionDAG::setRoot(), spillIncomingStatepointValue(), and willLowerDirectly().
Referenced by lowerStatepointMetaArgs().
|
static |
Lower deopt state and gc pointer arguments of the statepoint.
The actual lowering is described in lowerIncomingStatepointValue. This function is responsible for lowering everything in the right position and playing some tricks to avoid redundant stack manipulation where possible. On completion, 'Ops' will contain ready to use operands for machine code statepoint. The chain nodes will have already been created and the DAG root will be set to the last value spilled (if any were).
Definition at line 521 of file StatepointLowering.cpp.
References llvm::SmallVectorImpl< T >::append(), assert(), llvm::sampleprof::Base, llvm::SmallVectorTemplateCommon< T, typename >::begin(), llvm::SmallSet< T, N, C >::count(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::count(), llvm::SelectionDAGBuilder::DAG, llvm::dbgs(), llvm::DeoptLiveIn, llvm::SDValue::dump(), llvm::SmallVectorTemplateCommon< T, typename >::end(), llvm::SelectionDAGBuilder::FuncInfo, llvm::FunctionLoweringInfo::getArgumentFrameIndex(), llvm::SelectionDAGBuilder::getCurSDLoc(), llvm::SelectionDAG::getFrameIndex(), llvm::SelectionDAGBuilder::getFrameIndexTy(), llvm::SelectionDAG::getMachineFunction(), getMachineMemOperand(), llvm::SelectionDAG::getTargetConstant(), llvm::SelectionDAG::getTargetFrameIndex(), llvm::SelectionDAG::getTargetLoweringInfo(), llvm::SelectionDAGBuilder::getValue(), llvm::SDValue::getValueType(), llvm::SmallSet< T, N, C >::insert(), llvm::SetVector< T, Vector, Set, N >::insert(), isGCValue(), llvm::TargetLoweringBase::isTypeLegal(), llvm::EVT::isVector(), LLVM_DEBUG, lowerIncomingStatepointValue(), MaxRegistersForGCPointers, llvm::SmallVectorTemplateBase< T, bool >::push_back(), pushStackMapConstant(), reservePreviousStackSlotForValue(), llvm::DenseMapBase< DerivedT, KeyT, ValueT, KeyInfoT, BucketT >::size(), llvm::SetVector< T, Vector, Set, N >::size(), llvm::SmallVectorBase< Size_T >::size(), llvm::SetVector< T, Vector, Set, N >::takeVector(), UseRegistersForDeoptValues, UseRegistersForGCPointersInLandingPad, and willLowerDirectly().
Referenced by llvm::SelectionDAGBuilder::LowerAsSTATEPOINT().
|
static |
Definition at line 79 of file StatepointLowering.cpp.
References llvm::SelectionDAGBuilder::DAG, llvm::SelectionDAGBuilder::getCurSDLoc(), llvm::SelectionDAG::getTargetConstant(), and llvm::SmallVectorTemplateBase< T, bool >::push_back().
Referenced by llvm::SelectionDAGBuilder::LowerAsSTATEPOINT(), lowerIncomingStatepointValue(), and lowerStatepointMetaArgs().
|
static |
Try to find existing copies of the incoming values in stack slots used for statepoint spilling.
If we can find a spill slot for the incoming value, mark that slot as allocated, and reuse the same slot for this safepoint. This helps to avoid series of loads and stores that only serve to reshuffle values on the stack between calls.
Definition at line 269 of file StatepointLowering.cpp.
References assert(), llvm::SelectionDAGBuilder::DAG, llvm::find(), findPreviousSpillSlot(), llvm::SelectionDAGBuilder::FuncInfo, llvm::SelectionDAGBuilder::getFrameIndexTy(), llvm::StatepointLoweringState::getLocation(), llvm::SDValue::getNode(), llvm::SelectionDAG::getTargetFrameIndex(), llvm::SelectionDAGBuilder::getValue(), llvm::StatepointLoweringState::isStackSlotAllocated(), llvm::Offset, llvm::StatepointLoweringState::reserveStackSlot(), llvm::StatepointLoweringState::setLocation(), llvm::SelectionDAGBuilder::StatepointLowering, llvm::FunctionLoweringInfo::StatepointStackSlots, and willLowerDirectly().
Referenced by lowerStatepointMetaArgs().
|
static |
Spill a value incoming to the statepoint.
It might be either part of vmstate or gcstate. In both cases unconditionally spill it on the stack unless it is a null constant. Return pair with first element being frame index containing saved value and second element with outgoing chain from the emitted store
Definition at line 377 of file StatepointLowering.cpp.
References llvm::StatepointLoweringState::allocateStackSlot(), assert(), llvm::SelectionDAGBuilder::DAG, llvm::SelectionDAGBuilder::getCurSDLoc(), llvm::MachinePointerInfo::getFixedStack(), llvm::SelectionDAGBuilder::getFrameIndexTy(), llvm::MachineFunction::getFrameInfo(), llvm::StatepointLoweringState::getLocation(), llvm::SelectionDAG::getMachineFunction(), getMachineMemOperand(), llvm::SDValue::getNode(), llvm::MachineFrameInfo::getObjectAlign(), llvm::MachineFrameInfo::getObjectSize(), llvm::SelectionDAG::getStore(), llvm::SelectionDAG::getTargetFrameIndex(), llvm::MachineMemOperand::MOStore, llvm::StatepointLoweringState::setLocation(), and llvm::SelectionDAGBuilder::StatepointLowering.
Referenced by lowerIncomingStatepointValue().
STATISTIC | ( | NumOfStatepoints | , |
"Number of statepoint nodes encountered" | |||
) |
STATISTIC | ( | StatepointMaxSlotsRequired | , |
"Maximum number of stack slots required for a singe statepoint" | |||
) |
Return true if-and-only-if the given SDValue can be lowered as either a constant argument or a stack reference.
The key point is that the value doesn't need to be spilled or tracked as a vreg use.
Definition at line 248 of file StatepointLowering.cpp.
References llvm::isIntOrFPConstant().
Referenced by lowerIncomingStatepointValue(), lowerStatepointMetaArgs(), and reservePreviousStackSlotForValue().
|
static |
Referenced by lowerStatepointMetaArgs().
|
static |
Referenced by lowerStatepointMetaArgs().
|
static |
Referenced by lowerStatepointMetaArgs().