Lines Matching refs:inp_flags

747 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg,
1137 static sljit_s32 emit_op_mem(struct sljit_compiler *compiler, sljit_s32 inp_flags, sljit_s32 reg, in emit_op_mem() argument
1156 inst = data_transfer_insts[(inp_flags | INDEXED) & MEM_MASK]; in emit_op_mem()
1162 …return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg & REG_MASK) | B(offs_re… in emit_op_mem()
1165 inst = data_transfer_insts[inp_flags & MEM_MASK]; in emit_op_mem()
1172 inst = data_transfer_insts[(inp_flags | INDEXED) & MEM_MASK]; in emit_op_mem()
1173 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg) | B(tmp_reg)); in emit_op_mem()
1178 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg) | IMM(argw)); in emit_op_mem()
1184 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(tmp_reg) | IMM(argw)); in emit_op_mem()
1190 inst = data_transfer_insts[(inp_flags | INDEXED) & MEM_MASK]; in emit_op_mem()
1191 return push_inst(compiler, INST_CODE_AND_DST(inst, inp_flags, reg) | A(arg) | B(tmp_reg)); in emit_op_mem()
1739 sljit_s32 inp_flags = ((op & SLJIT_32) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_shift_into() local
1742 sljit_s32 inp_flags = WORD_DATA | LOAD_DATA; in sljit_emit_shift_into() local
1765 FAIL_IF(emit_op_mem(compiler, inp_flags, TMP_REG2, src2, src2w, TMP_REG2)); in sljit_emit_shift_into()
1770 FAIL_IF(emit_op_mem(compiler, inp_flags, TMP_REG1, src1, src1w, TMP_REG1)); in sljit_emit_shift_into()