Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h358 Constant *getElementValue(Constant *C) const;
361 Constant *getElementValue(unsigned Idx) const;
1362 UndefValue *getElementValue(Constant *C) const;
1365 UndefValue *getElementValue(unsigned Idx) const;
1407 PoisonValue *getElementValue(Constant *C) const;
1410 PoisonValue *getElementValue(unsigned Idx) const;
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp427 ? CAZ->getElementValue(Elt) in getAggregateElement()
435 return Elt < PV->getNumElements() ? PV->getElementValue(Elt) : nullptr; in getAggregateElement()
438 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr; in getAggregateElement()
1066 Constant *ConstantAggregateZero::getElementValue(Constant *C) const { in getElementValue() function in ConstantAggregateZero
1072 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { in getElementValue() function in ConstantAggregateZero
1101 UndefValue *UndefValue::getElementValue(Constant *C) const { in getElementValue() function in UndefValue
1107 UndefValue *UndefValue::getElementValue(unsigned Idx) const { in getElementValue() function in UndefValue
1136 PoisonValue *PoisonValue::getElementValue(Constant *C) const { in getElementValue() function in PoisonValue
1142 PoisonValue *PoisonValue::getElementValue(unsigned Idx) const { in getElementValue() function in PoisonValue
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp3321 return translateCopy(C, *CAZ->getElementValue(0u), *EntryBuilder); in translate()
3324 Constant &Elt = *CAZ->getElementValue(I); in translate()