Home | History | Annotate | Download | only in MSP430

Lines Matching refs:VA

323     CCValAssign &VA = ArgLocs[i];
324 if (VA.isRegLoc()) {
326 EVT RegVT = VA.getLocVT();
339 RegInfo.addLiveIn(VA.getLocReg(), VReg);
345 if (VA.getLocInfo() == CCValAssign::SExt)
347 DAG.getValueType(VA.getValVT()));
348 else if (VA.getLocInfo() == CCValAssign::ZExt)
350 DAG.getValueType(VA.getValVT()));
352 if (VA.getLocInfo() != CCValAssign::Full)
353 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
359 assert(VA.isMemLoc());
361 unsigned ObjSize = VA.getLocVT().getSizeInBits()/8;
364 << EVT(VA.getLocVT()).getEVTString()
368 int FI = MFI->CreateFixedObject(ObjSize, VA.getLocMemOffset(), true);
373 InVals.push_back(DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
417 CCValAssign &VA = RVLocs[i];
418 assert(VA.isRegLoc() && "Can only return in registers!");
420 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
470 CCValAssign &VA = ArgLocs[i];
475 switch (VA.getLocInfo()) {
479 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
482 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
485 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
491 if (VA.isRegLoc()) {
492 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
494 assert(VA.isMemLoc());
501 DAG.getIntPtrConstant(VA.getLocMemOffset()));