Home
last modified time | relevance | path

Searched refs:OpR (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp148 auto *OpR = cast<DefInit>(MIOI->getArg(j))->getDef(); in GetOperandInfo() local
149 OperandList.back().Rec = OpR; in GetOperandInfo()
154 Record *OpR = OperandList[j].Rec; in GetOperandInfo() local
157 if (OpR->isSubClassOf("RegisterOperand")) in GetOperandInfo()
158 OpR = OpR->getValueAsDef("RegClass"); in GetOperandInfo()
159 if (OpR->isSubClassOf("RegisterClass")) in GetOperandInfo()
160 Res += getQualifiedName(OpR) + "RegClassID, "; in GetOperandInfo()
161 else if (OpR->isSubClassOf("PointerLikeRegClass")) in GetOperandInfo()
162 Res += utostr(OpR->getValueAsInt("RegClassKind")) + ", "; in GetOperandInfo()
171 if (OpR->isSubClassOf("PointerLikeRegClass")) in GetOperandInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanAnalysis.cpp309 auto *OpR = Op->getDefiningRecipe(); in collectEphemeralRecipesForVPlan() local
310 if (!OpR || OpR->mayHaveSideEffects() || EphRecipes.contains(OpR)) in collectEphemeralRecipesForVPlan()
317 EphRecipes.insert(OpR); in collectEphemeralRecipesForVPlan()
318 Worklist.push_back(OpR); in collectEphemeralRecipesForVPlan()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp927 Value *OpR = InstR->getOperand(i); in cmpBasicBlocks() local
928 if (int Res = cmpValues(OpL, OpR)) in cmpBasicBlocks()
931 assert(cmpTypes(OpL->getType(), OpR->getType()) == 0); in cmpBasicBlocks()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp1394 const MachineOperand &OpR = secondRegMatch ? NOp0 : NOp1; in isLegalToPacketizeTogether() local
1395 if (OpR.isReg() && PI->modifiesRegister(OpR.getReg(), HRI)) { in isLegalToPacketizeTogether()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h2814 Value *OpL = nullptr, *OpR = nullptr;
2827 auto RHS = m_LShr(m_Neg(m_Value(OpR)), m_SpecificInt(ShiftWidth));
2830 return Signum.match(V) && OpL == OpR && Val.match(OpL);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2064 SDValue OpR = GetPromotedInteger(RHS); in SExtOrZExtPromotedOperands() local
2073 DAG.computeKnownBits(OpR).countMaxActiveBits(); in SExtOrZExtPromotedOperands()
2077 RHS = OpR; in SExtOrZExtPromotedOperands()
2093 unsigned OpREffectiveBits = DAG.ComputeMaxSignificantBits(OpR); in SExtOrZExtPromotedOperands()
2097 RHS = OpR; in SExtOrZExtPromotedOperands()