22#include "llvm/IR/IntrinsicsX86.h"
24#define GET_TARGET_REGBANK_IMPL
25#include "X86GenRegisterBank.inc"
29#define GET_TARGET_REGBANK_INFO_IMPL
30#include "X86GenRegisterBankInfo.def"
37 assert(&X86::GPRRegBank == &RBGPR &&
"Incorrect RegBanks inizalization.");
42 "Subclass not added?");
44 "GPRs should hold up to 64-bit");
55 case Intrinsic::x86_sse_rcp_ss:
56 case Intrinsic::x86_sse_rcp_ps:
57 case Intrinsic::x86_sse_rsqrt_ss:
58 case Intrinsic::x86_sse_rsqrt_ps:
59 case Intrinsic::x86_sse_min_ss:
60 case Intrinsic::x86_sse_min_ps:
61 case Intrinsic::x86_sse_max_ss:
62 case Intrinsic::x86_sse_max_ps:
71 unsigned Depth)
const {
72 unsigned Op =
MI.getOpcode();
82 if (
Op != TargetOpcode::COPY && !
MI.isPHI() &&
97 if (!
MI.isPHI() ||
Depth > MaxFPRSearchDepth)
102 onlyDefinesFP(*MRI.getVRegDef(Op.getReg()), MRI, TRI, Depth + 1);
109 unsigned Depth)
const {
110 switch (
MI.getOpcode()) {
111 case TargetOpcode::G_FPTOSI:
112 case TargetOpcode::G_FPTOUI:
113 case TargetOpcode::G_FCMP:
114 case TargetOpcode::G_LROUND:
115 case TargetOpcode::G_LLROUND:
116 case TargetOpcode::G_INTRINSIC_TRUNC:
117 case TargetOpcode::G_INTRINSIC_ROUND:
128 unsigned Depth)
const {
129 switch (
MI.getOpcode()) {
130 case TargetOpcode::G_SITOFP:
131 case TargetOpcode::G_UITOFP:
139X86GenRegisterBankInfo::PartialMappingIdx
141 const LLT &Ty,
bool isFP) {
144 bool HasSSE1 = ST->hasSSE1();
145 bool HasSSE2 = ST->hasSSE2();
169 return HasSSE1 ? PMI_FP32 : PMI_PSR32;
171 return HasSSE2 ? PMI_FP64 : PMI_PSR64;
195void X86RegisterBankInfo::getInstrPartialMappingIdxs(
199 unsigned NumOperands =
MI.getNumOperands();
200 for (
unsigned Idx = 0;
Idx < NumOperands; ++
Idx) {
201 auto &MO =
MI.getOperand(
Idx);
202 if (!MO.isReg() || !MO.getReg())
203 OpRegBankIdx[
Idx] = PMI_None;
210bool X86RegisterBankInfo::getInstrValueMapping(
215 unsigned NumOperands =
MI.getNumOperands();
216 for (
unsigned Idx = 0;
Idx < NumOperands; ++
Idx) {
217 if (!
MI.getOperand(
Idx).isReg())
219 if (!
MI.getOperand(
Idx).getReg())
223 if (!Mapping->isValid())
226 OpdsMapping[
Idx] = Mapping;
232X86RegisterBankInfo::getSameOperandsMapping(
const MachineInstr &
MI,
237 unsigned NumOperands =
MI.getNumOperands();
238 LLT Ty =
MRI.getType(
MI.getOperand(0).getReg());
240 if (NumOperands != 3 || (Ty !=
MRI.getType(
MI.getOperand(1).getReg())) ||
241 (Ty !=
MRI.getType(
MI.getOperand(2).getReg())))
254 unsigned Opc =
MI.getOpcode();
265 case TargetOpcode::G_ADD:
266 case TargetOpcode::G_SUB:
267 case TargetOpcode::G_MUL:
268 return getSameOperandsMapping(
MI,
false);
269 case TargetOpcode::G_FADD:
270 case TargetOpcode::G_FSUB:
271 case TargetOpcode::G_FMUL:
272 case TargetOpcode::G_FDIV:
273 return getSameOperandsMapping(
MI,
true);
274 case TargetOpcode::G_SHL:
275 case TargetOpcode::G_LSHR:
276 case TargetOpcode::G_ASHR: {
277 unsigned NumOperands =
MI.getNumOperands();
278 LLT Ty =
MRI.getType(
MI.getOperand(0).getReg());
287 unsigned NumOperands =
MI.getNumOperands();
291 case TargetOpcode::G_FPEXT:
292 case TargetOpcode::G_FPTRUNC:
293 case TargetOpcode::G_FCONSTANT:
296 getInstrPartialMappingIdxs(
MI,
MRI,
true, OpRegBankIdx);
298 case TargetOpcode::G_SITOFP:
299 case TargetOpcode::G_FPTOSI: {
302 auto &Op0 =
MI.getOperand(0);
303 auto &Op1 =
MI.getOperand(1);
304 const LLT Ty0 =
MRI.getType(Op0.getReg());
305 const LLT Ty1 =
MRI.getType(Op1.getReg());
307 bool FirstArgIsFP = Opc == TargetOpcode::G_SITOFP;
308 bool SecondArgIsFP = Opc == TargetOpcode::G_FPTOSI;
313 case TargetOpcode::G_FCMP: {
314 LLT Ty1 =
MRI.getType(
MI.getOperand(2).getReg());
315 LLT Ty2 =
MRI.getType(
MI.getOperand(3).getReg());
318 "Mismatched operand sizes for G_FCMP");
322 assert((
Size == 32 ||
Size == 64) &&
"Unsupported size for G_FCMP");
325 OpRegBankIdx = {PMI_GPR8,
326 PMI_None, FpRegBank, FpRegBank};
329 case TargetOpcode::G_TRUNC:
330 case TargetOpcode::G_ANYEXT: {
331 auto &Op0 =
MI.getOperand(0);
332 auto &Op1 =
MI.getOperand(1);
333 const LLT Ty0 =
MRI.getType(Op0.getReg());
334 const LLT Ty1 =
MRI.getType(Op1.getReg());
341 Opc == TargetOpcode::G_ANYEXT;
343 getInstrPartialMappingIdxs(
MI,
MRI, isFPTrunc || isFPAnyExt,
347 case TargetOpcode::G_LOAD: {
351 bool IsFP =
any_of(
MRI.use_nodbg_instructions(cast<GLoad>(
MI).getDstReg()),
357 return onlyUsesFP(UseMI, MRI, TRI);
359 getInstrPartialMappingIdxs(
MI,
MRI, IsFP, OpRegBankIdx);
362 case TargetOpcode::G_STORE: {
364 Register VReg = cast<GStore>(
MI).getValueReg();
369 getInstrPartialMappingIdxs(
MI,
MRI, IsFP, OpRegBankIdx);
375 getInstrPartialMappingIdxs(
MI,
MRI,
false, OpRegBankIdx);
381 if (!getInstrValueMapping(
MI, OpRegBankIdx, OpdsMapping))
401 switch (
MI.getOpcode()) {
402 case TargetOpcode::G_LOAD:
403 case TargetOpcode::G_STORE:
404 case TargetOpcode::G_IMPLICIT_DEF: {
410 unsigned NumOperands =
MI.getNumOperands();
414 getInstrPartialMappingIdxs(
MI,
MRI,
true, OpRegBankIdx);
418 if (!getInstrValueMapping(
MI, OpRegBankIdx, OpdsMapping))
unsigned const MachineRegisterInfo * MRI
MachineInstrBuilder & UseMI
MachineInstrBuilder MachineInstrBuilder & DefMI
static unsigned getIntrinsicID(const SDNode *N)
static bool isFPIntrinsic(const MachineRegisterInfo &MRI, const MachineInstr &MI)
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
Declares convenience wrapper classes for interpreting MachineInstr instances as specific generic oper...
unsigned const TargetRegisterInfo * TRI
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file declares the targeting of the RegisterBankInfo class for X86.
This class represents an Operation in the Expression.
constexpr bool isScalar() const
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr bool isPointer() const
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Helper class to build MachineInstr.
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Helper class that represents how the value of an instruction may be mapped and what is the related co...
bool isValid() const
Check whether this object is valid.
Helper class used to get/create the virtual registers that will be used to replace the MachineOperand...
virtual InstructionMappings getInstrAlternativeMappings(const MachineInstr &MI) const
Get the alternative mappings for MI.
const InstructionMapping & getInstructionMapping(unsigned ID, unsigned Cost, const ValueMapping *OperandsMapping, unsigned NumOperands) const
Method to get a uniquely generated InstructionMapping.
static void applyDefaultMapping(const OperandsMapper &OpdMapper)
Helper method to apply something that is like the default mapping.
const InstructionMapping & getInvalidInstructionMapping() const
Method to get a uniquely generated invalid InstructionMapping.
const RegisterBank & getRegBank(unsigned ID)
Get the register bank identified by ID.
unsigned getMaximumSize(unsigned RegBankID) const
Get the maximum size in bits that fits in the given register bank.
TypeSize getSizeInBits(Register Reg, const MachineRegisterInfo &MRI, const TargetRegisterInfo &TRI) const
Get the size in bits of Reg.
const ValueMapping * getOperandsMapping(Iterator Begin, Iterator End) const
Get the uniquely generated array of ValueMapping for the elements of between Begin and End.
static const unsigned DefaultMappingID
Identifier used when the related instruction mapping instance is generated by target independent code...
const InstructionMapping & getInstrMappingImpl(const MachineInstr &MI) const
Try to get the mapping of MI.
This class implements the register bank concept.
bool covers(const TargetRegisterClass &RC) const
Check whether this register bank covers RC.
unsigned getID() const
Get the identifier of this register bank.
Wrapper class representing virtual and physical registers.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
TargetSubtargetInfo - Generic base class for all target subtargets.
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
static PartialMappingIdx getPartialMappingIdx(const MachineInstr &MI, const LLT &Ty, bool isFP)
static const RegisterBankInfo::ValueMapping * getValueMapping(PartialMappingIdx Idx, unsigned NumOperands)
X86RegisterBankInfo(const TargetRegisterInfo &TRI)
InstructionMappings getInstrAlternativeMappings(const MachineInstr &MI) const override
Get the alternative mappings for MI.
const InstructionMapping & getInstrMapping(const MachineInstr &MI) const override
Get the mapping of the different operands of MI on the register bank.
void applyMappingImpl(MachineIRBuilder &Builder, const OperandsMapper &OpdMapper) const override
See RegisterBankInfo::applyMapping.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This is an optimization pass for GlobalISel generic memory operations.
bool isPreISelGenericOpcode(unsigned Opcode)
Check whether the given Opcode is a generic opcode that is not supposed to appear after ISel.
bool isPreISelGenericOptimizationHint(unsigned Opcode)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
bool isPreISelGenericFloatingPointOpcode(unsigned Opc)
Returns whether opcode Opc is a pre-isel generic floating-point opcode, having only floating-point op...