Home
last modified time | relevance | path

Searched refs:is_branch (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info_opcodes.h64 OPCODE(0, 0, NONE, CAL, .is_branch = 1)
75 OPCODE(0, 1, NONE, IF, .is_branch = 1, .post_indent = 1)
76 OPCODE(0, 1, NONE, UIF, .is_branch = 1, .post_indent = 1)
78 OPCODE(0, 0, NONE, ELSE, .is_branch = 1, .pre_dedent = 1, .post_indent = 1)
100 OPCODE(0, 0, NONE, BGNLOOP, .is_branch = 1, .post_indent = 1)
102 OPCODE(0, 0, NONE, ENDLOOP, .is_branch = 1, .pre_dedent = 1)
Dtgsi_info.h78 unsigned is_branch:1; member
Dtgsi_text.c1189 if (info->is_branch && *cur == ':') { in parse_instruction()
/third_party/mesa3d/src/panfrost/midgard/
Dmidgard_opt_copy_prop.c64 bool is_branch = q->compact_branch; in midgard_opt_copy_prop() local
66 if (!(is_tex || is_ldst || is_branch)) continue; in midgard_opt_copy_prop()
/third_party/node/deps/v8/src/codegen/s390/
Dassembler-s390.cc507 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument
511 if (is_branch != nullptr) { in target_at_put()
512 *is_branch = in target_at_put()
572 bool is_branch = false; in bind_to() local
581 target_at_put(fixup_pos, pos, &is_branch); in bind_to()
Dassembler-s390.h1379 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
/third_party/node/deps/v8/src/codegen/ppc/
Dassembler-ppc.cc450 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument
454 if (is_branch != nullptr) { in target_at_put()
455 *is_branch = (opcode == BX || opcode == BCX); in target_at_put()
560 bool is_branch = false; in bind_to() local
574 target_at_put(fixup_pos, pos, &is_branch); in bind_to()
579 if (!trampoline_emitted_ && is_branch) { in bind_to()
Dassembler-ppc.h1331 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);