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.cpp133 auto *OpR = cast<DefInit>(MIOI->getArg(j))->getDef(); in GetOperandInfo() local
134 OperandList.back().Rec = OpR; in GetOperandInfo()
140 const Record *OpR = OpInfo.Rec; in GetOperandInfo() local
143 if (OpR->isSubClassOf("RegisterOperand")) in GetOperandInfo()
144 OpR = OpR->getValueAsDef("RegClass"); in GetOperandInfo()
145 if (OpR->isSubClassOf("RegisterClass")) in GetOperandInfo()
146 Res += getQualifiedName(OpR) + "RegClassID, "; in GetOperandInfo()
147 else if (OpR->isSubClassOf("PointerLikeRegClass")) in GetOperandInfo()
148 Res += utostr(OpR->getValueAsInt("RegClassKind")) + ", "; in GetOperandInfo()
157 if (OpR->isSubClassOf("PointerLikeRegClass")) in GetOperandInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanAnalysis.cpp337 auto *OpR = Op->getDefiningRecipe(); in collectEphemeralRecipesForVPlan() local
338 if (!OpR || OpR->mayHaveSideEffects() || EphRecipes.contains(OpR)) in collectEphemeralRecipesForVPlan()
345 EphRecipes.insert(OpR); in collectEphemeralRecipesForVPlan()
346 Worklist.push_back(OpR); in collectEphemeralRecipesForVPlan()
H A DVPlanRecipes.cpp303 VPRecipeBase *OpR = Op->getDefiningRecipe(); in computeCost() local
308 OpR = Op->getDefiningRecipe(); in computeCost()
346 if (isa<VPWidenCastRecipe>(OpR)) { in computeCost()
347 InputTypeA = Ctx.Types.inferScalarType(OpR->getOperand(0)); in computeCost()
348 ExtAType = GetExtendKind(OpR); in computeCost()
349 } else if (isa<VPReductionPHIRecipe>(OpR)) { in computeCost()
356 } else if (auto Widen = dyn_cast<VPWidenRecipe>(OpR)) { in computeCost()
358 } else if (auto Reduction = dyn_cast<VPPartialReductionRecipe>(OpR)) { in computeCost()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp941 Value *OpR = InstR->getOperand(i); in cmpBasicBlocks() local
942 if (int Res = cmpValues(OpL, OpR)) in cmpBasicBlocks()
945 assert(cmpTypes(OpL->getType(), OpR->getType()) == 0); in cmpBasicBlocks()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp1385 const MachineOperand &OpR = secondRegMatch ? NOp0 : NOp1; in isLegalToPacketizeTogether() local
1386 if (OpR.isReg() && PI->modifiesRegister(OpR.getReg(), HRI)) { in isLegalToPacketizeTogether()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2129 SDValue OpR = GetPromotedInteger(RHS); in SExtOrZExtPromotedOperands() local
2138 DAG.computeKnownBits(OpR).countMaxActiveBits(); in SExtOrZExtPromotedOperands()
2142 RHS = OpR; in SExtOrZExtPromotedOperands()
2158 unsigned OpREffectiveBits = DAG.ComputeMaxSignificantBits(OpR); in SExtOrZExtPromotedOperands()
2162 RHS = OpR; in SExtOrZExtPromotedOperands()