Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Ret

81     CCValAssign Ret;
82 Ret.ValNo = ValNo;
83 Ret.Loc = RegNo;
84 Ret.isMem = false;
85 Ret.isCustom = false;
86 Ret.HTP = HTP;
87 Ret.ValVT = ValVT;
88 Ret.LocVT = LocVT;
89 return Ret;
95 CCValAssign Ret;
96 Ret = getReg(ValNo, ValVT, RegNo, LocVT, HTP);
97 Ret.isCustom = true;
98 return Ret;
104 CCValAssign Ret;
105 Ret.ValNo = ValNo;
106 Ret.Loc = Offset;
107 Ret.isMem = true;
108 Ret.isCustom = false;
109 Ret.HTP = HTP;
110 Ret.ValVT = ValVT;
111 Ret.LocVT = LocVT;
112 return Ret;
118 CCValAssign Ret;
119 Ret = getMem(ValNo, ValVT, Offset, LocVT, HTP);
120 Ret.isCustom = true;
121 return Ret;