Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-array-writer.h59 void PatchJump(size_t jump_target, size_t jump_location); in NON_EXPORTED_BASE()
Dbytecode-array-writer.cc251 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump() argument
253 int delta = static_cast<int>(jump_target - jump_location); in PatchJump()
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ir.h977 cf_node() : container_node(NT_OP, NST_CF_INST), jump_target(), in cf_node()
982 cf_node *jump_target; variable
989 void jump(cf_node *c) { jump_target = c; jump_after_target = false; } in jump()
990 void jump_after(cf_node *c) { jump_target = c; jump_after_target = true; } in jump_after()
Dsb_bc_finalize.cpp936 c->jump_target = static_cast<cf_node*>(c->jump_target->next); in cf_peephole()
950 } else if (c->is_cf_op(CF_OP_JUMP) && c->jump_target == c->next) { in cf_peephole()
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/
Dobjects.cc14696 const void* jump_target = base_address + iterator.GetJumpTargetOffset(); in Disassemble() local
14697 os << " (" << jump_target << " @ " << iterator.GetJumpTargetOffset() in Disassemble()