Home
last modified time | relevance | path

Searched refs:OpValue (Results 1 – 10 of 10) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Analysis/
H A DLocal.cpp49 uint64_t OpValue = OpC->getUniqueInteger().getZExtValue(); in emitGEPOffset() local
50 uint64_t Size = DL.getStructLayout(STy)->getElementOffset(OpValue); in emitGEPOffset()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp1108 llvm::Constant *OpValue, *PaddedOp; in constWithPadding() local
1110 OpValue = llvm::Constant::getNullValue(ElemTy); in constWithPadding()
1111 PaddedOp = constWithPadding(CGM, isPattern, OpValue); in constWithPadding()
1115 OpValue = constant->getAggregateElement(Op); in constWithPadding()
1116 PaddedOp = constWithPadding(CGM, isPattern, OpValue); in constWithPadding()
1334 auto *OpValue = cast<llvm::Constant>(constant->getOperand(Op)); in replaceUndef() local
1335 Values[Op] = replaceUndef(CGM, isPattern, OpValue); in replaceUndef()
H A DCGBuiltin.cpp16844 unsigned OpValue) -> Value * { in EmitPPCBuiltinExpr() argument
16889 ConstantInt::get(IsValueType64Bit ? Int64Ty : Int32Ty, OpValue)); in EmitPPCBuiltinExpr()
/src/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h440 void propagateIRFlags(Value *I, ArrayRef<Value *> VL, Value *OpValue = nullptr,
/src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp659 Value *OpValue = nullptr; member
683 InstructionsState(Value *OpValue, Instruction *MainOp, Instruction *AltOp) in InstructionsState()
684 : OpValue(OpValue), MainOp(MainOp), AltOp(AltOp) {} in InstructionsState()
696 return S.OpValue; in isOneOf()
2730 bool canReuseExtract(ArrayRef<Value *> VL, Value *OpValue,
3467 OpValue = OpVal; in init()
3574 Value *OpValue = nullptr; member
3717 if (BundleMember->Inst != BundleMember->OpValue) in schedule()
3872 void cancelScheduling(ArrayRef<Value *> VL, Value *OpValue);
6296 auto *VL0 = cast<Instruction>(S.OpValue); in getScalarsVectorizationState()
[all …]
/src/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1308 void llvm::propagateIRFlags(Value *I, ArrayRef<Value *> VL, Value *OpValue, in propagateIRFlags() argument
1313 auto *Intersection = (OpValue == nullptr) ? dyn_cast<Instruction>(VL[0]) in propagateIRFlags()
1314 : dyn_cast<Instruction>(OpValue); in propagateIRFlags()
1323 if (OpValue == nullptr || Opcode == Instr->getOpcode()) in propagateIRFlags()
/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1392 for (auto *OpValue : ClonedValue->operand_values()) { in rematerializeChain() local
1395 assert(!is_contained(ChainToBase, OpValue) && in rematerializeChain()
1399 assert(OpValue != RootOfChain && OpValue != AlternateLiveBase); in rematerializeChain()
/src/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp235 setOperand(OpValue, in setValue()
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h484 OpValue, enumerator
/src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp6210 SDValue OpValue = GetWidenedVector(N->getOperand(0)); in WidenVecRes_VECTOR_REVERSE() local
6211 assert(WidenVT == OpValue.getValueType() && "Unexpected widened vector type"); in WidenVecRes_VECTOR_REVERSE()
6213 SDValue ReverseVal = DAG.getNode(ISD::VECTOR_REVERSE, dl, WidenVT, OpValue); in WidenVecRes_VECTOR_REVERSE()