Home
last modified time | relevance | path

Searched refs:EltVal (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp3123 auto EltVal = *reinterpret_cast<const uint8_t *>(EltPtr); in getElementAsAPInt() local
3124 return APInt(8, EltVal); in getElementAsAPInt()
3127 auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr); in getElementAsAPInt() local
3128 return APInt(16, EltVal); in getElementAsAPInt()
3131 auto EltVal = *reinterpret_cast<const uint32_t *>(EltPtr); in getElementAsAPInt() local
3132 return APInt(32, EltVal); in getElementAsAPInt()
3135 auto EltVal = *reinterpret_cast<const uint64_t *>(EltPtr); in getElementAsAPInt() local
3136 return APInt(64, EltVal); in getElementAsAPInt()
3148 auto EltVal = *reinterpret_cast<const uint16_t *>(EltPtr); in getElementAsAPFloat() local
3149 return APFloat(APFloat::IEEEhalf(), APInt(16, EltVal)); in getElementAsAPFloat()
[all …]
H A DCore.cpp4328 LLVMValueRef EltVal, LLVMValueRef Index, in LLVMBuildInsertElement() argument
4330 return wrap(unwrap(B)->CreateInsertElement(unwrap(VecVal), unwrap(EltVal), in LLVMBuildInsertElement()
4347 LLVMValueRef EltVal, unsigned Index, in LLVMBuildInsertValue() argument
4349 return wrap(unwrap(B)->CreateInsertValue(unwrap(AggVal), unwrap(EltVal), in LLVMBuildInsertValue()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSCCPSolver.cpp1455 ValueLatticeElement EltVal = getStructValueState(AggVal, i); in visitExtractValueInst() local
1456 mergeInValue(getValueState(&EVI), &EVI, EltVal); in visitExtractValueInst()
1485 ValueLatticeElement EltVal = getStructValueState(Aggr, i); in visitInsertValueInst() local
1486 mergeInValue(getStructValueState(&IVI, i), &IVI, EltVal); in visitInsertValueInst()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp6268 SDValue EltVal = getI32Imm(Elt >> 1, dl); in Select() local
6269 SDNode *Tmp = CurDAG->getMachineNode(Opc1, dl, VT, EltVal); in Select()
6280 SDValue EltVal = getI32Imm(Elt - 16, dl); in Select() local
6281 SDNode *Tmp1 = CurDAG->getMachineNode(Opc1, dl, VT, EltVal); in Select()
6282 EltVal = getI32Imm(-16, dl); in Select()
6283 SDNode *Tmp2 = CurDAG->getMachineNode(Opc1, dl, VT, EltVal); in Select()
6294 SDValue EltVal = getI32Imm(Elt + 16, dl); in Select() local
6295 SDNode *Tmp1 = CurDAG->getMachineNode(Opc1, dl, VT, EltVal); in Select()
6296 EltVal = getI32Imm(-16, dl); in Select()
6297 SDNode *Tmp2 = CurDAG->getMachineNode(Opc1, dl, VT, EltVal); in Select()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4827 LLVMValueRef EltVal,
4839 LLVMValueRef EltVal,
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMInstrInfo.td554 uint64_t EltVal = ARM_AM::decodeVMOVModImm(ConstVal->getZExtValue(), EltBits);
555 return (EltBits == N->getValueType(0).getScalarSizeInBits() && EltVal == 0x01);
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp22867 SDValue EltVal = StVal.getOperand(I); in replaceZeroVectorStore() local
22868 if (!isNullConstant(EltVal) && !isNullFPConstant(EltVal)) in replaceZeroVectorStore()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp20637 SDValue EltVal = DAG.getConstant(0, DL, Subtarget.getXLenVT()); in PerformDAGCombine() local
20640 SDValue Splat = DAG.getNode(ISD::SPLAT_VECTOR, DL, ScalTy, EltVal); in PerformDAGCombine()