Home
last modified time | relevance | path

Searched refs:inst2 (Results 1 – 11 of 11) sorted by relevance

/external/ltrace/sysdeps/linux-gnu/arm/
Dtrace.c433 unsigned short inst2; in thumb_get_next_pcs() local
434 if (proc_read_16(proc, pc + 2, &inst2) < 0) in thumb_get_next_pcs()
437 if ((inst1 & 0xf800) == 0xf000 && (inst2 & 0x8000) == 0x8000) { in thumb_get_next_pcs()
440 if ((inst2 & 0x1000) != 0 in thumb_get_next_pcs()
441 || (inst2 & 0xd001) == 0xc000) { in thumb_get_next_pcs()
445 const unsigned imm2 = BITS(inst2, 0, 10); in thumb_get_next_pcs()
446 const unsigned j1 = BIT(inst2, 13); in thumb_get_next_pcs()
447 const unsigned j2 = BIT(inst2, 11); in thumb_get_next_pcs()
456 if (BIT(inst2, 12) == 0) in thumb_get_next_pcs()
462 && (inst2 & 0xff00) == 0x3f00) { in thumb_get_next_pcs()
[all …]
/external/mesa3d/src/mesa/program/
Dprog_optimize.c531 struct prog_instruction *inst2 = prog->Instructions + j; in _mesa_remove_extra_move_use() local
534 if (_mesa_is_flow_control_opcode(inst2->Opcode)) in _mesa_remove_extra_move_use()
538 for (arg = 0; arg < _mesa_num_inst_src_regs(inst2->Opcode); arg++) { in _mesa_remove_extra_move_use()
541 if (inst2->SrcReg[arg].File != mov->DstReg.File || in _mesa_remove_extra_move_use()
542 inst2->SrcReg[arg].Index != mov->DstReg.Index || in _mesa_remove_extra_move_use()
543 inst2->SrcReg[arg].RelAddr || in _mesa_remove_extra_move_use()
544 inst2->SrcReg[arg].Abs) in _mesa_remove_extra_move_use()
546 read_mask = get_src_arg_mask(inst2, arg, NO_MASK); in _mesa_remove_extra_move_use()
551 if (is_swizzle_regular(inst2->SrcReg[arg].Swizzle) && in _mesa_remove_extra_move_use()
555 GET_SWZ(inst2->SrcReg[arg].Swizzle, comp); in _mesa_remove_extra_move_use()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr500_fragprog_emit.c309 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_1_MINUS_2A0; in emit_paired()
312 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_A1_MINUS_A0; in emit_paired()
315 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_A1_PLUS_A0; in emit_paired()
318 code->inst[ip].inst2 |= R500_ALPHA_SRCP_OP_1_MINUS_A0; in emit_paired()
332 code->inst[ip].inst2 |= R500_ALPHA_ADDR0(use_source(code, inst->Alpha.Src[0])); in emit_paired()
333 code->inst[ip].inst2 |= R500_ALPHA_ADDR1(use_source(code, inst->Alpha.Src[1])); in emit_paired()
334 code->inst[ip].inst2 |= R500_ALPHA_ADDR2(use_source(code, inst->Alpha.Src[2])); in emit_paired()
419 code->inst[ip].inst2 = R500_TEX_SRC_ADDR(inst->SrcReg[0].Index) in emit_tex()
474 s->Code->inst[newip].inst2 = R500_FC_OP_LOOP in emit_flowcontrol()
485 s->Code->inst[newip].inst2 = R500_FC_OP_BREAKLOOP in emit_flowcontrol()
[all …]
Dr500_fragprog.c408 fprintf(stderr,"\t2:ALPHA_ADDR 0x%08x:", code->inst[n].inst2); in r500FragmentProgramDump()
409 inst = code->inst[n].inst2; in r500FragmentProgramDump()
442 fprintf(stderr, "\t2:FC_INST 0x%08x:", code->inst[n].inst2); in r500FragmentProgramDump()
443 inst = code->inst[n].inst2; in r500FragmentProgramDump()
513 if(code->inst[n].inst2 & R500_FC_IGNORE_UNCOVERED){ in r500FragmentProgramDump()
526 inst = code->inst[n].inst2; in r500FragmentProgramDump()
Dradeon_code.h232 uint32_t inst2; member
/external/llvm/test/ExecutionEngine/RuntimeDyld/X86/
DMachO_i386_DynNoPIC_relocations.s21 # rtdyld-check: decode_operand(inst2, 0) = bling$stub - next_pc(inst2)
22 inst2: label
/external/e2fsprogs/misc/
Dfsck.c555 struct fsck_instance *inst, *inst2, *prev; in wait_one() local
629 for (inst2 = instance_list; inst2; inst2 = inst2->next) { in wait_one()
630 if (inst2->flags & FLAG_DONE) in wait_one()
632 if (strcmp(inst2->type, "ext2") && in wait_one()
633 strcmp(inst2->type, "ext3") && in wait_one()
634 strcmp(inst2->type, "ext4") && in wait_one()
635 strcmp(inst2->type, "ext4dev")) in wait_one()
642 if (inst2->start_time < time(0)+2) { in wait_one()
645 kill(inst2->pid, SIGUSR1); in wait_one()
649 kill(inst2->pid, SIGUSR1); in wait_one()
[all …]
/external/llvm/test/CodeGen/CPP/
Datomic.ll14 %inst2 = atomicrmw volatile sub i32* %addr, i32 %inc singlethread monotonic
16 ; CHECK: [[INST]]->setName("inst2");
76 %inst2 = cmpxchg weak i32* %addr, i32 %desired, i32 %new seq_cst monotonic
78 ; CHECK: [[INST]]->setName("inst2");
/external/mesa3d/src/gallium/drivers/i915/
Di915_fpc_translate.c470 struct i915_full_instruction inst2; in emit_simple_arith_swap2() local
475 inst2 = *inst; in emit_simple_arith_swap2()
476 inst2.Src[0] = inst->Src[1]; in emit_simple_arith_swap2()
477 inst2.Src[1] = inst->Src[0]; in emit_simple_arith_swap2()
479 emit_simple_arith(p, &inst2, opcode, numArgs, fs); in emit_simple_arith_swap2()
/external/pcre/dist/sljit/
DsljitNativeTILEGX_64.c630 struct jit_instr inst2 = inst_buf[2]; in update_buffer() local
666 inst_buf[2] = inst2; in update_buffer()
684 inst_buf[0] = inst2; in update_buffer()
704 inst_buf[2] = inst2; in update_buffer()
722 inst_buf[1] = inst2; in update_buffer()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_fs.c290 OUT_CB(code->inst[i].inst2); in r300_emit_fs_code_to_buffer()