Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:VT

421     /// Return true if this has more bits than VT.
422 bool bitsGT(MVT VT) const {
423 return getSizeInBits() > VT.getSizeInBits();
426 /// Return true if this has no less bits than VT.
427 bool bitsGE(MVT VT) const {
428 return getSizeInBits() >= VT.getSizeInBits();
431 /// Return true if this has less bits than VT.
432 bool bitsLT(MVT VT) const {
433 return getSizeInBits() < VT.getSizeInBits();
436 /// Return true if this has no more bits than VT.
437 bool bitsLE(MVT VT) const {
438 return getSizeInBits() <= VT.getSizeInBits();
478 static MVT getVectorVT(MVT VT, unsigned NumElements) {
479 switch (VT.SimpleTy) {
560 bool operator==(EVT VT) const {
561 return !(*this != VT);
563 bool operator!=(EVT VT) const {
564 if (V.SimpleTy != VT.V.SimpleTy)
567 return LLVMTy != VT.LLVMTy;
588 /// length, where each element is of type VT.
589 static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements) {
590 MVT M = MVT::getVectorVT(VT.V, NumElements);
593 return getExtendedVectorVT(Context, VT, NumElements);
607 "Simple vector VT not representable by simple integer vector VT!");
689 /// bitsEq - Return true if this has the same number of bits as VT.
690 bool bitsEq(EVT VT) const {
691 if (EVT::operator==(VT)) return true;
692 return getSizeInBits() == VT.getSizeInBits();
695 /// bitsGT - Return true if this has more bits than VT.
696 bool bitsGT(EVT VT) const {
697 if (EVT::operator==(VT)) return false;
698 return getSizeInBits() > VT.getSizeInBits();
701 /// bitsGE - Return true if this has no less bits than VT.
702 bool bitsGE(EVT VT) const {
703 if (EVT::operator==(VT)) return true;
704 return getSizeInBits() >= VT.getSizeInBits();
707 /// bitsLT - Return true if this has less bits than VT.
708 bool bitsLT(EVT VT) const {
709 if (EVT::operator==(VT)) return false;
710 return getSizeInBits() < VT.getSizeInBits();
713 /// bitsLE - Return true if this has no more bits than VT.
714 bool bitsLE(EVT VT) const {
715 if (EVT::operator==(VT)) return true;
716 return getSizeInBits() <= VT.getSizeInBits();
854 static EVT getExtendedVectorVT(LLVMContext &C, EVT VT,