Home
last modified time | relevance | path

Searched refs:ValAndVReg (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64GlobalISelUtils.cpp28 if (auto ValAndVReg = in getAArch64VectorSplat() local
30 return RegOrConstant(ValAndVReg->Value.getSExtValue()); in getAArch64VectorSplat()
H A DAArch64PostLegalizerLowering.cpp530 auto ValAndVReg = getConstantVRegValWithLookThrough(RHS, MRI); in tryAdjustICmpImmAndPred() local
531 if (!ValAndVReg) in tryAdjustICmpImmAndPred()
533 uint64_t C = ValAndVReg->Value.getZExtValue(); in tryAdjustICmpImmAndPred()
758 auto ValAndVReg = in getCmpOperandFoldingProfit() local
760 if (!ValAndVReg) in getCmpOperandFoldingProfit()
762 uint64_t Mask = ValAndVReg->Value.getZExtValue(); in getCmpOperandFoldingProfit()
H A DAArch64InstructionSelector.cpp602 auto ValAndVReg = in getImmedFromMO() local
604 if (!ValAndVReg) in getImmedFromMO()
606 Immed = ValAndVReg->Value.getSExtValue(); in getImmedFromMO()
2072 auto ValAndVReg = getConstantVRegValWithLookThrough(Src, MRI); in earlySelect() local
2073 if (!ValAndVReg) in earlySelect()
2080 ValAndVReg->Value)); in earlySelect()
4210 if (auto ValAndVReg = getConstantVRegValWithLookThrough(RHS.getReg(), MRI)) { in emitTST() local
4211 int64_t Imm = ValAndVReg->Value.getSExtValue(); in emitTST()
4555 auto ValAndVReg = getConstantVRegValWithLookThrough(RHS.getReg(), MRI); in tryFoldIntegerCompare() local
4556 if (!ValAndVReg || ValAndVReg->Value != 0) in tryFoldIntegerCompare()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp272 Optional<ValueAndVReg> ValAndVReg = in getConstantVRegVal() local
274 assert((!ValAndVReg || ValAndVReg->VReg == VReg) && in getConstantVRegVal()
276 if (!ValAndVReg) in getConstantVRegVal()
278 return ValAndVReg->Value; in getConstantVRegVal()
H A DCombinerHelper.cpp2691 auto ValAndVReg = getConstantVRegValWithLookThrough(MOP.getReg(), MRI); in matchConstantOp() local
2692 return ValAndVReg && ValAndVReg->Value == C; in matchConstantOp()