Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h374 Constant *getElementValue(Constant *C) const;
377 Constant *getElementValue(unsigned Idx) const;
1411 UndefValue *getElementValue(Constant *C) const;
1414 UndefValue *getElementValue(unsigned Idx) const;
1456 PoisonValue *getElementValue(Constant *C) const;
1459 PoisonValue *getElementValue(unsigned Idx) const;
/src/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp441 ? CAZ->getElementValue(Elt) in getAggregateElement()
449 return Elt < PV->getNumElements() ? PV->getElementValue(Elt) : nullptr; in getAggregateElement()
452 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr; in getAggregateElement()
1123 Constant *ConstantAggregateZero::getElementValue(Constant *C) const { in getElementValue() function in ConstantAggregateZero
1129 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { in getElementValue() function in ConstantAggregateZero
1158 UndefValue *UndefValue::getElementValue(Constant *C) const { in getElementValue() function in UndefValue
1164 UndefValue *UndefValue::getElementValue(unsigned Idx) const { in getElementValue() function in UndefValue
1193 PoisonValue *PoisonValue::getElementValue(Constant *C) const { in getElementValue() function in PoisonValue
1199 PoisonValue *PoisonValue::getElementValue(unsigned Idx) const { in getElementValue() function in PoisonValue
/src/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3523 return translateCopy(C, *CAZ->getElementValue(0u), *EntryBuilder); in translate()
3526 Constant &Elt = *CAZ->getElementValue(I); in translate()