Skip to content

Commit

Permalink
[ARM GlobalISel] Make arm_i32imm an IntImmLeaf
Browse files Browse the repository at this point in the history
This gets rid of some duplication in the TableGen definition, but it
forces us to keep both a pointer and a reference to the subtarget in the
ARMInstructionSelector. That is pretty ugly but it might be a reasonable
trade-off, since the TableGen descriptions should outlive the code in
the selector (or in the worst case we can update to use just the
reference when we get rid of DAGISel).

Differential Revision: https://reviews.llvm.org/D58031

llvm-svn: 355083
  • Loading branch information
rovka committed Feb 28, 2019
1 parent 5306a71 commit cf0ff63
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
18 changes: 3 additions & 15 deletions llvm/lib/Target/ARM/ARMInstrInfo.td
Expand Up @@ -717,23 +717,11 @@ def mod_imm_neg : Operand<i32>, PatLeaf<(imm), [{
}

/// arm_i32imm - True for +V6T2, or when isSOImmTwoParVal()
def arm_i32imm : PatLeaf<(imm), [{
def arm_i32imm : IntImmLeaf<i32, [{
if (Subtarget->useMovt())
return true;
return ARM_AM::isSOImmTwoPartVal((unsigned)N->getZExtValue());
}]> {
// Ideally this would be an IntImmLeaf, but then we wouldn't have access to
// the MachineFunction.
let GISelPredicateCode = [{
if (STI.useMovt())
return true;

const auto &MO = MI.getOperand(1);
if (!MO.isCImm())
return false;
return ARM_AM::isSOImmTwoPartVal(MO.getCImm()->getZExtValue());
}];
}
return ARM_AM::isSOImmTwoPartVal(Imm.getZExtValue());
}]>;

/// imm0_1 predicate - Immediate in the range [0,1].
def Imm0_1AsmOperand: ImmAsmOperand<0,1> { let Name = "Imm0_1"; }
Expand Down
5 changes: 5 additions & 0 deletions llvm/lib/Target/ARM/ARMInstructionSelector.cpp
Expand Up @@ -75,6 +75,11 @@ class ARMInstructionSelector : public InstructionSelector {
const ARMRegisterBankInfo &RBI;
const ARMSubtarget &STI;

// FIXME: This is necessary because DAGISel uses "Subtarget->" and GlobalISel
// uses "STI." in the code generated by TableGen. If we want to reuse some of
// the custom C++ predicates written for DAGISel, we need to have both around.
const ARMSubtarget *Subtarget = &STI;

// Store the opcodes that we might need, so we don't have to check what kind
// of subtarget (ARM vs Thumb) we have all the time.
struct OpcodeCache {
Expand Down

0 comments on commit cf0ff63

Please sign in to comment.