Searched refs:IntVT (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h274 for (unsigned IntVT = MVT::FIRST_INTEGER_VALUETYPE;
275 IntVT <= MVT::LAST_INTEGER_VALUETYPE; ++IntVT) {
276 EVT HalfVT = EVT((MVT::SimpleValueType)IntVT);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp315 EVT IntVT = ValueVTs[0]; local
317 if (TLI->getNumRegisters(PN->getContext(), IntVT) != 1)
319 IntVT = TLI->getTypeToTransformTo(PN->getContext(), IntVT);
320 unsigned BitWidth = IntVT.getSizeInBits();
H A DFastISel.cpp211 EVT IntVT = TLI.getPointerTy(); local
214 uint32_t IntBitWidth = IntVT.getSizeInBits();
224 Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP,
1026 EVT IntVT = EVT::getIntegerVT(I->getContext(), VT.getSizeInBits());
1027 if (!TLI.isTypeLegal(IntVT))
1030 unsigned IntReg = FastEmit_r(VT.getSimpleVT(), IntVT.getSimpleVT(),
1035 unsigned IntResultReg = FastEmit_ri_(IntVT.getSimpleVT(), ISD::XOR,
1038 IntVT.getSimpleVT());
1042 ResultReg = FastEmit_r(IntVT.getSimpleVT(), VT.getSimpleVT(),
H A DLegalizeDAG.cpp3167 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(),
3169 SDValue ExponentMask = DAG.getConstant(0x7F800000, IntVT);
3170 SDValue ExponentLoBit = DAG.getConstant(23, IntVT);
3171 SDValue Bias = DAG.getConstant(127, IntVT);
3173 IntVT);
3174 SDValue SignLowBit = DAG.getConstant(VT.getSizeInBits() - 1, IntVT);
3175 SDValue MantissaMask = DAG.getConstant(0x007FFFFF, IntVT);
3177 SDValue Bits = DAG.getNode(ISD::BITCAST, dl, IntVT, Node->getOperand(0));
3179 SDValue ExponentBits = DAG.getNode(ISD::SRL, dl, IntVT,
3180 DAG.getNode(ISD::AND, dl, IntVT, Bit
[all...]
H A DDAGCombiner.cpp6378 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits()); local
6379 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
6380 SrcEltVT = IntVT;
7254 EVT IntVT = Int.getValueType(); local
7255 if (IntVT.isInteger() && !IntVT.isVector()) {
7256 Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
7257 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
7346 EVT IntVT local
[all...]
H A DSelectionDAGBuilder.cpp179 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); local
180 Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp20407 MVT IntVT = is64BitFP ? MVT::i64 : MVT::i32;
20421 IntVT = MVT::i32;
20424 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, IntVT, OnesOrZeroesF);
20425 SDValue ANDed = DAG.getNode(ISD::AND, DL, IntVT, OnesOrZeroesI,
20426 DAG.getConstant(1, IntVT));

Completed in 883 milliseconds