Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DConstant.cpp212 Constant *ConstantAggregateZero::getElementValue(Constant *C) const { in getElementValue() function in llvm::sandboxir::ConstantAggregateZero
214 Ctx.getValue(cast<llvm::ConstantAggregateZero>(Val)->getElementValue( in getElementValue()
217 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { in getElementValue() function in llvm::sandboxir::ConstantAggregateZero
219 cast<llvm::ConstantAggregateZero>(Val)->getElementValue(Idx))); in getElementValue()
248 UndefValue *UndefValue::getElementValue(Constant *C) const { in getElementValue() function in llvm::sandboxir::UndefValue
250 Ctx.getOrCreateConstant(cast<llvm::UndefValue>(Val)->getElementValue( in getElementValue()
254 UndefValue *UndefValue::getElementValue(unsigned Idx) const { in getElementValue() function in llvm::sandboxir::UndefValue
256 cast<llvm::UndefValue>(Val)->getElementValue(Idx))); in getElementValue()
274 PoisonValue *PoisonValue::getElementValue(Constant *C) const { in getElementValue() function in llvm::sandboxir::PoisonValue
276 Ctx.getOrCreateConstant(cast<llvm::PoisonValue>(Val)->getElementValue( in getElementValue()
[all …]
H A DContext.cpp327 getOrCreateValueInternal(CAZ->getElementValue(ElmIdx), CAZ); in getOrCreateValueInternal()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h382 LLVM_ABI Constant *getElementValue(Constant *C) const;
385 LLVM_ABI Constant *getElementValue(unsigned Idx) const;
1444 LLVM_ABI UndefValue *getElementValue(Constant *C) const;
1447 LLVM_ABI UndefValue *getElementValue(unsigned Idx) const;
1489 LLVM_ABI PoisonValue *getElementValue(Constant *C) const;
1492 LLVM_ABI PoisonValue *getElementValue(unsigned Idx) const;
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DConstant.h465 LLVM_ABI Constant *getElementValue(Constant *C) const;
467 LLVM_ABI Constant *getElementValue(unsigned Idx) const;
819 LLVM_ABI UndefValue *getElementValue(Constant *C) const;
822 LLVM_ABI UndefValue *getElementValue(unsigned Idx) const;
867 LLVM_ABI PoisonValue *getElementValue(Constant *C) const;
870 LLVM_ABI PoisonValue *getElementValue(unsigned Idx) const;
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp444 ? CAZ->getElementValue(Elt) in getAggregateElement()
466 return Elt < PV->getNumElements() ? PV->getElementValue(Elt) : nullptr; in getAggregateElement()
469 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr; in getAggregateElement()
1144 Constant *ConstantAggregateZero::getElementValue(Constant *C) const { in getElementValue() function in ConstantAggregateZero
1150 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { in getElementValue() function in ConstantAggregateZero
1179 UndefValue *UndefValue::getElementValue(Constant *C) const { in getElementValue() function in UndefValue
1185 UndefValue *UndefValue::getElementValue(unsigned Idx) const { in getElementValue() function in UndefValue
1214 PoisonValue *PoisonValue::getElementValue(Constant *C) const { in getElementValue() function in PoisonValue
1220 PoisonValue *PoisonValue::getElementValue(unsigned Idx) const { in getElementValue() function in PoisonValue
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3675 Constant &Elt = *CAZ->getElementValue(0u); in translate()