Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h359 Constant *getElementValue(Constant *C) const;
362 Constant *getElementValue(unsigned Idx) const;
1378 UndefValue *getElementValue(Constant *C) const;
1381 UndefValue *getElementValue(unsigned Idx) const;
1423 PoisonValue *getElementValue(Constant *C) const;
1426 PoisonValue *getElementValue(unsigned Idx) const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp431 ? CAZ->getElementValue(Elt) in getAggregateElement()
439 return Elt < PV->getNumElements() ? PV->getElementValue(Elt) : nullptr; in getAggregateElement()
442 return Elt < UV->getNumElements() ? UV->getElementValue(Elt) : nullptr; in getAggregateElement()
1095 Constant *ConstantAggregateZero::getElementValue(Constant *C) const { in getElementValue() function in ConstantAggregateZero
1101 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const { in getElementValue() function in ConstantAggregateZero
1130 UndefValue *UndefValue::getElementValue(Constant *C) const { in getElementValue() function in UndefValue
1136 UndefValue *UndefValue::getElementValue(unsigned Idx) const { in getElementValue() function in UndefValue
1165 PoisonValue *PoisonValue::getElementValue(Constant *C) const { in getElementValue() function in PoisonValue
1171 PoisonValue *PoisonValue::getElementValue(unsigned Idx) const { in getElementValue() function in PoisonValue
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2945 return translateCopy(C, *CAZ->getElementValue(0u), *EntryBuilder.get()); in translate()
2948 Constant &Elt = *CAZ->getElementValue(I); in translate()