Home
last modified time | relevance | path

Searched refs:inst1 (Results 1 – 12 of 12) sorted by relevance

/external/ltrace/sysdeps/linux-gnu/arm/
Dtrace.c385 thumb_insn_size (unsigned short inst1) in thumb_insn_size() argument
387 if ((inst1 & 0xe000) == 0xe000 && (inst1 & 0x1800) != 0) in thumb_insn_size()
397 uint16_t inst1; in thumb_get_next_pcs() local
399 if (proc_read_16(proc, pc, &inst1) < 0 in thumb_get_next_pcs()
411 if ((inst1 & 0xff00) == 0xbd00) { /* pop {rlist, pc} */ in thumb_get_next_pcs()
414 const unsigned offset = bitcount(BITS(inst1, 0, 7)) * 4; in thumb_get_next_pcs()
423 } else if ((inst1 & 0xf000) == 0xd000) { /* conditional branch */ in thumb_get_next_pcs()
424 const unsigned long cond = BITS(inst1, 8, 11); in thumb_get_next_pcs()
426 next_pcs[nr++] = pc + (SBITS(inst1, 0, 7) << 1); in thumb_get_next_pcs()
430 } else if ((inst1 & 0xf800) == 0xe000) { /* unconditional branch */ in thumb_get_next_pcs()
[all …]
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
DCOFF_x86_64.s15 .global inst1 symbol
23 # rtdyld-check: decode_operand(inst1, 4) = __real400921f9f01b866e - next_pc(inst1)
24 inst1: label
DMachO_i386_DynNoPIC_relocations.s15 # rtdyld-check: decode_operand(inst1, 4) = x$non_lazy_ptr - tmp0$pb + 8
16 inst1: label
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog_emit.c293 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_1_MINUS_2RGB0; in emit_paired()
296 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_RGB1_MINUS_RGB0; in emit_paired()
299 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_RGB1_PLUS_RGB0; in emit_paired()
302 code->inst[ip].inst1 |= R500_RGB_SRCP_OP_1_MINUS_RGB0; in emit_paired()
328 code->inst[ip].inst1 |= R500_RGB_ADDR0(use_source(code, inst->RGB.Src[0])); in emit_paired()
329 code->inst[ip].inst1 |= R500_RGB_ADDR1(use_source(code, inst->RGB.Src[1])); in emit_paired()
330 code->inst[ip].inst1 |= R500_RGB_ADDR2(use_source(code, inst->RGB.Src[2])); in emit_paired()
386 code->inst[ip].inst1 = R500_TEX_ID(inst->TexSrcUnit) in emit_tex()
390 code->inst[ip].inst1 |= R500_TEX_UNSCALED; in emit_tex()
394 code->inst[ip].inst1 |= R500_TEX_INST_TEXKILL; in emit_tex()
[all …]
Dr500_fragprog.c399 fprintf(stderr,"\t1:RGB_ADDR 0x%08x:", code->inst[n].inst1); in r500FragmentProgramDump()
400 inst = code->inst[n].inst1; in r500FragmentProgramDump()
522 inst = code->inst[n].inst1; in r500FragmentProgramDump()
Dradeon_code.h231 uint32_t inst1; member
/external/llvm/test/CodeGen/CPP/
Datomic.ll9 %inst1 = atomicrmw add i32* %addr, i32 %inc seq_cst
11 ; CHECK: [[INST]]->setName("inst1");
70 %inst1 = cmpxchg volatile i32* %addr, i32 %desired, i32 %new singlethread acq_rel acquire
72 ; CHECK: [[INST]]->setName("inst1");
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.h82 MCInst const &inst1);
DHexagonMCInstrInfo.cpp115 MCInst const &inst1) { in deriveDuplex() argument
121 MCInst *SubInst1 = new (Context) MCInst(deriveSubInst(inst1)); in deriveDuplex()
/external/pcre/dist/sljit/
DsljitNativeTILEGX_64.c629 struct jit_instr inst1 = inst_buf[1]; in update_buffer() local
665 inst_buf[1] = inst1; in update_buffer()
687 inst_buf[0] = inst1; in update_buffer()
703 inst_buf[1] = inst1; in update_buffer()
721 inst_buf[0] = inst1; in update_buffer()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_fs.c289 OUT_CB(code->inst[i].inst1); in r300_emit_fs_code_to_buffer()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_shader.c295 unsigned inst0, inst1; in r600_alu_from_byte_stream() local
310 inst1 = bytes[bytes_read++]; in r600_alu_from_byte_stream()
311 alu.inst = inst0 | (inst1 << 8); in r600_alu_from_byte_stream()