Home
last modified time | relevance | path

Searched refs:jump_target (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_bc_finalize.cpp973 if (c->jump_target->next == NULL) { in cf_peephole()
974 c->jump_target->insert_after(sh.create_cf(CF_OP_NOP)); in cf_peephole()
975 if (last_cf == c->jump_target) in cf_peephole()
976 last_cf = static_cast<cf_node*>(c->jump_target->next); in cf_peephole()
978 c->jump_target = static_cast<cf_node*>(c->jump_target->next); in cf_peephole()
992 } else if (c->is_cf_op(CF_OP_JUMP) && c->jump_target == c->next) { in cf_peephole()
Dsb_ir.h985 cf_node() : container_node(NT_OP, NST_CF_INST), jump_target(), in cf_node()
990 cf_node *jump_target; variable
997 void jump(cf_node *c) { jump_target = c; jump_after_target = false; } in jump()
998 void jump_after(cf_node *c) { jump_target = c; jump_after_target = true; } in jump_after()
Dsb_bc_builder.cpp81 } else if (cf->jump_target) { in build()
82 cf->bc.addr = cf->jump_target->bc.id; in build()
/external/v8/src/compiler/
Dbytecode-analysis.cc861 int jump_target = iterator.GetJumpTargetOffset(); in LivenessIsValid() local
865 GetLoopOffsetFor(jump_target) == loop_header) { in LivenessIsValid()
870 if (liveness_map_.GetLiveness(jump_target).in->AccumulatorIsLive()) { in LivenessIsValid()
871 invalid_offset = jump_target; in LivenessIsValid()
/external/v8/src/interpreter/
Dbytecode-array-writer.h65 void PatchJump(size_t jump_target, size_t jump_location);
Dbytecode-array-writer.cc345 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump() argument
347 int delta = static_cast<int>(jump_target - jump_location); in PatchJump()
/external/v8/src/
Dobjects.cc15121 Address jump_target = base_address + iterator.GetJumpTargetOffset(); in Disassemble() local
15122 os << " (" << reinterpret_cast<void*>(jump_target) << " @ " in Disassemble()