• Home
  • Raw
  • Download

Lines Matching refs:VA

773     CCValAssign &VA = ValLocs[0];  in X86SelectRet()  local
776 if (VA.getLocInfo() != CCValAssign::Full) in X86SelectRet()
779 if (!VA.isRegLoc()) in X86SelectRet()
784 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) in X86SelectRet()
787 unsigned SrcReg = Reg + VA.getValNo(); in X86SelectRet()
789 EVT DstVT = VA.getValVT(); in X86SelectRet()
813 unsigned DstReg = VA.getLocReg(); in X86SelectRet()
822 RetRegs.push_back(VA.getLocReg()); in X86SelectRet()
2001 CCValAssign &VA = ArgLocs[i]; in DoSelectCall() local
2002 unsigned Arg = Args[VA.getValNo()]; in DoSelectCall()
2003 EVT ArgVT = ArgVTs[VA.getValNo()]; in DoSelectCall()
2006 switch (VA.getLocInfo()) { in DoSelectCall()
2009 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && in DoSelectCall()
2011 bool Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), in DoSelectCall()
2014 ArgVT = VA.getLocVT(); in DoSelectCall()
2018 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && in DoSelectCall()
2020 bool Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), in DoSelectCall()
2023 ArgVT = VA.getLocVT(); in DoSelectCall()
2027 assert(VA.getLocVT().isInteger() && !VA.getLocVT().isVector() && in DoSelectCall()
2029 bool Emitted = X86FastEmitExtend(ISD::ANY_EXTEND, VA.getLocVT(), in DoSelectCall()
2032 Emitted = X86FastEmitExtend(ISD::ZERO_EXTEND, VA.getLocVT(), in DoSelectCall()
2035 Emitted = X86FastEmitExtend(ISD::SIGN_EXTEND, VA.getLocVT(), in DoSelectCall()
2039 ArgVT = VA.getLocVT(); in DoSelectCall()
2043 unsigned BC = FastEmit_r(ArgVT.getSimpleVT(), VA.getLocVT(), in DoSelectCall()
2047 ArgVT = VA.getLocVT(); in DoSelectCall()
2060 if (VA.isRegLoc()) { in DoSelectCall()
2062 VA.getLocReg()).addReg(Arg); in DoSelectCall()
2063 RegArgs.push_back(VA.getLocReg()); in DoSelectCall()
2065 unsigned LocMemOffset = VA.getLocMemOffset(); in DoSelectCall()
2071 const Value *ArgVal = ArgVals[VA.getValNo()]; in DoSelectCall()
2072 ISD::ArgFlagsTy Flags = ArgFlags[VA.getValNo()]; in DoSelectCall()