Searched refs:jump_target (Results 1 – 7 of 7) sorted by relevance
973 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()
985 cf_node() : container_node(NT_OP, NST_CF_INST), jump_target(), in cf_node()990 cf_node *jump_target; variable997 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()
81 } else if (cf->jump_target) { in build()82 cf->bc.addr = cf->jump_target->bc.id; in build()
861 int jump_target = iterator.GetJumpTargetOffset(); in LivenessIsValid() local865 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()
65 void PatchJump(size_t jump_target, size_t jump_location);
345 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump() argument347 int delta = static_cast<int>(jump_target - jump_location); in PatchJump()
15121 Address jump_target = base_address + iterator.GetJumpTargetOffset(); in Disassemble() local15122 os << " (" << reinterpret_cast<void*>(jump_target) << " @ " in Disassemble()