Searched refs:jump_target (Results 1 – 9 of 9) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_bc_finalize.cpp | 980 if (c->jump_target->next == NULL) { in cf_peephole() 981 c->jump_target->insert_after(sh.create_cf(CF_OP_NOP)); in cf_peephole() 982 if (last_cf == c->jump_target) in cf_peephole() 983 last_cf = static_cast<cf_node*>(c->jump_target->next); in cf_peephole() 985 c->jump_target = static_cast<cf_node*>(c->jump_target->next); in cf_peephole() 999 } else if (c->is_cf_op(CF_OP_JUMP) && c->jump_target == c->next) { in cf_peephole()
|
D | sb_ir.h | 996 cf_node() : container_node(NT_OP, NST_CF_INST), jump_target(), in cf_node() 1001 cf_node *jump_target; variable 1008 void jump(cf_node *c) { jump_target = c; jump_after_target = false; } in jump() 1009 void jump_after(cf_node *c) { jump_target = c; jump_after_target = true; } in jump_after()
|
D | sb_bc_builder.cpp | 81 } else if (cf->jump_target) { in build() 82 cf->bc.addr = cf->jump_target->bc.id; in build()
|
/third_party/node/deps/v8/src/compiler/ |
D | bytecode-analysis.cc | 1033 int jump_target = iterator.GetJumpTargetOffset(); in LivenessIsValid() local 1037 GetLoopOffsetFor(jump_target) == loop_header) { in LivenessIsValid() 1042 if (liveness_map().GetLiveness(jump_target).in->AccumulatorIsLive()) { in LivenessIsValid() 1043 invalid_offset = jump_target; in LivenessIsValid()
|
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-array-writer.h | 92 void PatchJump(size_t jump_target, size_t jump_location);
|
D | bytecode-array-writer.cc | 429 void BytecodeArrayWriter::PatchJump(size_t jump_target, size_t jump_location) { in PatchJump() argument 431 int delta = static_cast<int>(jump_target - jump_location); in PatchJump()
|
/third_party/node/deps/v8/src/objects/ |
D | code.cc | 639 Address jump_target = base_address + iterator.GetJumpTargetOffset(); in Disassemble() local 640 os << " (" << reinterpret_cast<void*>(jump_target) << " @ " in Disassemble()
|
/third_party/jerryscript/jerry-core/vm/ |
D | vm.c | 3830 uint32_t jump_target = *stack_top_p; in vm_loop() local 3835 jump_target)) in vm_loop() 3839 stack_top_p[-2] = jump_target; in vm_loop() 3843 byte_code_p = frame_ctx_p->byte_code_start_p + jump_target; in vm_loop()
|
/third_party/vixl/test/aarch64/ |
D | test-assembler-aarch64.cc | 7088 Label jump_target, jump_call_target, call_target, done; in BtiHelper() local 7092 __ Adr(x0, &jump_target); in BtiHelper() 7095 __ Bind(&jump_target, EmitBTI_j); in BtiHelper() 7243 Label jump_target; in TEST() local 7244 __ Adr(x0, &jump_target); in TEST() 7247 __ Bind(&jump_target, EmitBTI_c); in TEST()
|