Searched defs:IntVT (Results 1 - 4 of 4) sorted by relevance

/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 DSelectionDAGBuilder.cpp179 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), ValueVT.getSizeInBits()); local
180 Val = getCopyFromParts(DAG, DL, Parts, NumParts, PartVT, IntVT, V);
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 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...]

Completed in 75 milliseconds