Home
last modified time | relevance | path

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

/freebsd/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()
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h440 void propagateIRFlags(Value *I, ArrayRef<Value *> VL, Value *OpValue = nullptr,
/freebsd/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()
690 /// alternate) opcode as \p OpValue, the key is \p Op. Otherwise the key is \p
691 /// OpValue.
696 return S.OpValue; in isOneOf()
2730 bool canReuseExtract(ArrayRef<Value *> VL, Value *OpValue,
3062 /// alternate) opcode as \p OpValue, the key is \p Op. Otherwise the key is
3063 /// \p OpValue
3574 Value *OpValue = nullptr; global() member
7502 canReuseExtract(ArrayRef<Value * > VL,Value * OpValue,SmallVectorImpl<unsigned> & CurrentOrder,bool ResizeAllowed) const canReuseExtract() argument
14579 cancelScheduling(ArrayRef<Value * > VL,Value * OpValue) cancelScheduling() argument
[all...]
/freebsd/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()
/freebsd/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()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp235 setOperand(OpValue, in setValue()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h484 OpValue, enumerator
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp6210 SDValue OpValue = GetWidenedVector(N->getOperand(0)); in WidenVecRes_VECTOR_REVERSE()
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()
6206 SDValue OpValue = GetWidenedVector(N->getOperand(0)); WidenVecRes_VECTOR_REVERSE() local