Home | History | Annotate | Download | only in TableGen

Lines Matching refs:MHS

986                                   Init *mhs, Init *rhs,
1002 mhs),
1006 if (!I) I = new TernOpInit(opc, lhs, mhs, rhs, Type);
1010 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
1058 static Init *ForeachHelper(Init *LHS, Init *MHS, Init *RHS, RecTy *Type,
1060 DagInit *MHSd = dyn_cast<DagInit>(MHS);
1061 ListInit *MHSl = dyn_cast<ListInit>(MHS);
1141 DefInit *MHSd = dyn_cast<DefInit>(MHS);
1142 VarInit *MHSv = dyn_cast<VarInit>(MHS);
1143 StringInit *MHSs = dyn_cast<StringInit>(MHS);
1186 Init *Result = ForeachHelper(LHS, MHS, RHS, getType(),
1200 return MHS;
1223 Init *mhs = MHS->resolveReferences(R, RV);
1224 return (TernOpInit::get(getOpcode(), lhs, mhs,
1228 return (TernOpInit::get(getOpcode(), lhs, MHS,
1234 Init *mhs = MHS->resolveReferences(R, RV);
1237 if (LHS != lhs || MHS != mhs || RHS != rhs)
1238 return (TernOpInit::get(getOpcode(), lhs, mhs, rhs,
1250 return Result + "(" + LHS->getAsString() + ", " + MHS->getAsString() + ", "