Lines Matching refs:TCGOp
2615 static TCGOp *tcg_op_alloc(TCGOpcode opc, unsigned nargs);
2622 TCGOp *op;
2936 TCGOp *op;
3508 static const TCGArgConstraint *opcode_args_ct(const TCGOp *op)
3539 static void remove_label_use(TCGOp *op, int idx)
3553 void tcg_op_remove(TCGContext *s, TCGOp *op)
3574 void tcg_remove_ops_after(TCGOp *op)
3579 TCGOp *last = tcg_last_op();
3587 static TCGOp *tcg_op_alloc(TCGOpcode opc, unsigned nargs)
3590 TCGOp *op = NULL;
3604 op = tcg_malloc(sizeof(TCGOp) + sizeof(TCGArg) * nargs);
3607 memset(op, 0, offsetof(TCGOp, link));
3618 TCGOp *tcg_emit_op(TCGOpcode opc, unsigned nargs)
3620 TCGOp *op = tcg_op_alloc(opc, nargs);
3630 TCGOp *tcg_op_insert_before(TCGContext *s, TCGOp *old_op,
3633 TCGOp *new_op = tcg_op_alloc(opc, nargs);
3640 TCGOp *tcg_op_insert_after(TCGContext *s, TCGOp *old_op,
3643 TCGOp *new_op = tcg_op_alloc(opc, nargs);
3655 TCGOp *op = u->op;
3678 TCGOp *op, *op_next, *op_prev;
3919 TCGOp *op, *ebb;
3998 TCGOp *op, *op_prev;
4386 TCGOp *op, *op_next;
4447 TCGOp *lop = tcg_op_insert_before(s, op, INDEX_op_ld,
4508 TCGOp *sop = tcg_op_insert_after(s, op, INDEX_op_st,
4542 TCGOp *sop = tcg_op_insert_after(s, op, INDEX_op_st,
5034 static void tcg_reg_alloc_mov(TCGContext *s, const TCGOp *op)
5134 static void tcg_reg_alloc_dup(TCGContext *s, const TCGOp *op)
5244 static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
5953 static bool tcg_reg_alloc_dup2(TCGContext *s, const TCGOp *op)
6109 static void tcg_reg_alloc_call(TCGContext *s, TCGOp *op)
6844 TCGOp *op;