Home
last modified time | relevance | path

Searched refs:inst_bits (Results 1 – 2 of 2) sorted by relevance

/external/pcre/dist/sljit/
DsljitNativeARM_64.c522 sljit_ins inst_bits; in emit_op_imm() local
595 inst_bits = logical_imm(imm, LOGICAL_IMM_CHECK | ((flags & INT_OP) ? 16 : 32)); in emit_op_imm()
596 if (!inst_bits) in emit_op_imm()
599 return push_inst(compiler, (ANDI ^ inv_bits) | RD(dst) | RN(reg) | inst_bits); in emit_op_imm()
602 inst_bits = logical_imm(imm, LOGICAL_IMM_CHECK | ((flags & INT_OP) ? 16 : 32)); in emit_op_imm()
603 if (!inst_bits) in emit_op_imm()
606 inst_bits |= ORRI; in emit_op_imm()
608 inst_bits |= EORI; in emit_op_imm()
609 FAIL_IF(push_inst(compiler, (inst_bits ^ inv_bits) | RD(dst) | RN(reg))); in emit_op_imm()
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_ppc.c262 emit_instruction(struct ppc_function *p, uint32_t inst_bits) in emit_instruction() argument
284 p->store[p->num_inst++] = inst_bits; in emit_instruction()