Lines Matching refs:ct
185 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
192 ct->ct |= TCG_CT_REG;
193 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
196 ct->ct |= TCG_CT_REG;
197 tcg_regset_set32(ct->u.regs, 0, 0xffffffff);
198 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R26);
199 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R25);
200 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R24);
201 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R23);
204 ct->ct |= TCG_CT_CONST_0;
207 ct->ct |= TCG_CT_CONST_S11;
210 ct->ct |= TCG_CT_CONST_S5;
213 ct->ct |= TCG_CT_CONST_MS11;
216 ct->ct |= TCG_CT_CONST_AND;
219 ct->ct |= TCG_CT_CONST_OR;
233 int ct = arg_ct->ct;
234 if (ct & TCG_CT_CONST) {
236 } else if (ct & TCG_CT_CONST_0) {
238 } else if (ct & TCG_CT_CONST_S5) {
240 } else if (ct & TCG_CT_CONST_S11) {
242 } else if (ct & TCG_CT_CONST_MS11) {
244 } else if (ct & TCG_CT_CONST_AND) {
246 } else if (ct & TCG_CT_CONST_OR) {