Skip to content

Commit 3ecab8e

Browse files
committed
Reapply r372285 "GlobalISel: Don't materialize immarg arguments to intrinsics"
This reverts r372314, reapplying r372285 and the commits which depend on it (r372286-r372293, and r372296-r372297) This was missing one switch to getTargetConstant in an untested case. llvm-svn: 372338
1 parent e0900f2 commit 3ecab8e

File tree

79 files changed

+5010
-1365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+5010
-1365
lines changed

llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h

+5
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ enum {
220220
/// - OpIdx - Operand index
221221
GIM_CheckIsMBB,
222222

223+
/// Check the specified operand is an Imm
224+
/// - InsnID - Instruction ID
225+
/// - OpIdx - Operand index
226+
GIM_CheckIsImm,
227+
223228
/// Check if the specified operand is safe to fold into the current
224229
/// instruction.
225230
/// - InsnID - Instruction ID

llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h

+13-1
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,19 @@ bool InstructionSelector::executeMatchTable(
690690
}
691691
break;
692692
}
693-
693+
case GIM_CheckIsImm: {
694+
int64_t InsnID = MatchTable[CurrentIdx++];
695+
int64_t OpIdx = MatchTable[CurrentIdx++];
696+
DEBUG_WITH_TYPE(TgtInstructionSelector::getName(),
697+
dbgs() << CurrentIdx << ": GIM_CheckIsImm(MIs[" << InsnID
698+
<< "]->getOperand(" << OpIdx << "))\n");
699+
assert(State.MIs[InsnID] != nullptr && "Used insn before defined");
700+
if (!State.MIs[InsnID]->getOperand(OpIdx).isImm()) {
701+
if (handleReject() == RejectAndGiveUp)
702+
return false;
703+
}
704+
break;
705+
}
694706
case GIM_CheckIsSafeToFold: {
695707
int64_t InsnID = MatchTable[CurrentIdx++];
696708
DEBUG_WITH_TYPE(TgtInstructionSelector::getName(),

llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h

+3
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,9 @@ namespace llvm {
374374
/// Returns a mask for which lanes get read/written by the given (register)
375375
/// machine operand.
376376
LaneBitmask getLaneMaskForMO(const MachineOperand &MO) const;
377+
378+
/// Returns true if the def register in \p MO has no uses.
379+
bool deadDefHasNoUse(const MachineOperand &MO);
377380
};
378381

379382
/// Creates a new SUnit and return a ptr to it.

llvm/include/llvm/Target/TargetSelectionDAG.td

+5
Original file line numberDiff line numberDiff line change
@@ -848,6 +848,11 @@ class ImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm,
848848
bit IsAPFloat = 0;
849849
}
850850

851+
// Convenience wrapper for ImmLeaf to use timm/TargetConstant instead
852+
// of imm/Constant.
853+
class TImmLeaf<ValueType vt, code pred, SDNodeXForm xform = NOOP_SDNodeXForm,
854+
SDNode ImmNode = timm> : ImmLeaf<vt, pred, xform, ImmNode>;
855+
851856
// An ImmLeaf except that Imm is an APInt. This is useful when you need to
852857
// zero-extend the immediate instead of sign-extend it.
853858
//

llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp

+21-6
Original file line numberDiff line numberDiff line change
@@ -1617,14 +1617,29 @@ bool IRTranslator::translateCall(const User &U, MachineIRBuilder &MIRBuilder) {
16171617
if (isa<FPMathOperator>(CI))
16181618
MIB->copyIRFlags(CI);
16191619

1620-
for (auto &Arg : CI.arg_operands()) {
1620+
for (auto &Arg : enumerate(CI.arg_operands())) {
16211621
// Some intrinsics take metadata parameters. Reject them.
1622-
if (isa<MetadataAsValue>(Arg))
1622+
if (isa<MetadataAsValue>(Arg.value()))
16231623
return false;
1624-
ArrayRef<Register> VRegs = getOrCreateVRegs(*Arg);
1625-
if (VRegs.size() > 1)
1626-
return false;
1627-
MIB.addUse(VRegs[0]);
1624+
1625+
// If this is required to be an immediate, don't materialize it in a
1626+
// register.
1627+
if (CI.paramHasAttr(Arg.index(), Attribute::ImmArg)) {
1628+
if (ConstantInt *CI = dyn_cast<ConstantInt>(Arg.value())) {
1629+
// imm arguments are more convenient than cimm (and realistically
1630+
// probably sufficient), so use them.
1631+
assert(CI->getBitWidth() <= 64 &&
1632+
"large intrinsic immediates not handled");
1633+
MIB.addImm(CI->getSExtValue());
1634+
} else {
1635+
MIB.addFPImm(cast<ConstantFP>(Arg.value()));
1636+
}
1637+
} else {
1638+
ArrayRef<Register> VRegs = getOrCreateVRegs(*Arg.value());
1639+
if (VRegs.size() > 1)
1640+
return false;
1641+
MIB.addUse(VRegs[0]);
1642+
}
16281643
}
16291644

16301645
// Add a MachineMemOperand if it is a target mem intrinsic.

llvm/lib/CodeGen/ScheduleDAGInstrs.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,13 @@ LaneBitmask ScheduleDAGInstrs::getLaneMaskForMO(const MachineOperand &MO) const
373373
return TRI->getSubRegIndexLaneMask(SubReg);
374374
}
375375

376+
bool ScheduleDAGInstrs::deadDefHasNoUse(const MachineOperand &MO) {
377+
auto RegUse = CurrentVRegUses.find(MO.getReg());
378+
if (RegUse == CurrentVRegUses.end())
379+
return true;
380+
return (RegUse->LaneMask & getLaneMaskForMO(MO)).none();
381+
}
382+
376383
/// Adds register output and data dependencies from this SUnit to instructions
377384
/// that occur later in the same scheduling region if they read from or write to
378385
/// the virtual register defined at OperIdx.
@@ -402,8 +409,7 @@ void ScheduleDAGInstrs::addVRegDefDeps(SUnit *SU, unsigned OperIdx) {
402409
}
403410

404411
if (MO.isDead()) {
405-
assert(CurrentVRegUses.find(Reg) == CurrentVRegUses.end() &&
406-
"Dead defs should have no uses");
412+
assert(deadDefHasNoUse(MO) && "Dead defs should have no uses");
407413
} else {
408414
// Add data dependence to all uses we found so far.
409415
const TargetSubtargetInfo &ST = MF.getSubtarget();

llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp

+16-2
Original file line numberDiff line numberDiff line change
@@ -4768,8 +4768,22 @@ void SelectionDAGBuilder::visitTargetIntrinsic(const CallInst &I,
47684768

47694769
// Add all operands of the call to the operand list.
47704770
for (unsigned i = 0, e = I.getNumArgOperands(); i != e; ++i) {
4771-
SDValue Op = getValue(I.getArgOperand(i));
4772-
Ops.push_back(Op);
4771+
const Value *Arg = I.getArgOperand(i);
4772+
if (!I.paramHasAttr(i, Attribute::ImmArg)) {
4773+
Ops.push_back(getValue(Arg));
4774+
continue;
4775+
}
4776+
4777+
// Use TargetConstant instead of a regular constant for immarg.
4778+
EVT VT = TLI.getValueType(*DL, Arg->getType(), true);
4779+
if (const ConstantInt *CI = dyn_cast<ConstantInt>(Arg)) {
4780+
assert(CI->getBitWidth() <= 64 &&
4781+
"large intrinsic immediates not handled");
4782+
Ops.push_back(DAG.getTargetConstant(*CI, SDLoc(), VT));
4783+
} else {
4784+
Ops.push_back(
4785+
DAG.getTargetConstantFP(*cast<ConstantFP>(Arg), SDLoc(), VT));
4786+
}
47734787
}
47744788

47754789
SmallVector<EVT, 4> ValueVTs;

llvm/lib/Target/AArch64/AArch64InstrFormats.td

+2-2
Original file line numberDiff line numberDiff line change
@@ -685,11 +685,11 @@ def logical_imm64_not : Operand<i64> {
685685

686686
// iXX_imm0_65535 predicates - True if the immediate is in the range [0,65535].
687687
let ParserMatchClass = AsmImmRange<0, 65535>, PrintMethod = "printImmHex" in {
688-
def i32_imm0_65535 : Operand<i32>, ImmLeaf<i32, [{
688+
def i32_imm0_65535 : Operand<i32>, TImmLeaf<i32, [{
689689
return ((uint32_t)Imm) < 65536;
690690
}]>;
691691

692-
def i64_imm0_65535 : Operand<i64>, ImmLeaf<i64, [{
692+
def i64_imm0_65535 : Operand<i64>, TImmLeaf<i64, [{
693693
return ((uint64_t)Imm) < 65536;
694694
}]>;
695695
}

llvm/lib/Target/AArch64/AArch64InstrInfo.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def MOVbaseTLS : Pseudo<(outs GPR64:$dst), (ins),
798798
let Uses = [ X9 ], Defs = [ X16, X17, LR, NZCV ] in {
799799
def HWASAN_CHECK_MEMACCESS : Pseudo<
800800
(outs), (ins GPR64noip:$ptr, i32imm:$accessinfo),
801-
[(int_hwasan_check_memaccess X9, GPR64noip:$ptr, (i32 imm:$accessinfo))]>,
801+
[(int_hwasan_check_memaccess X9, GPR64noip:$ptr, (i32 timm:$accessinfo))]>,
802802
Sched<[]>;
803803
}
804804

0 commit comments

Comments
 (0)