Searched refs:is_branch (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_info_opcodes.h | 64 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)
|
D | tgsi_info.h | 78 unsigned is_branch:1; member
|
D | tgsi_text.c | 1189 if (info->is_branch && *cur == ':') { in parse_instruction()
|
/third_party/mesa3d/src/panfrost/midgard/ |
D | midgard_opt_copy_prop.c | 64 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/ |
D | assembler-s390.cc | 507 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()
|
D | assembler-s390.h | 1379 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|
/third_party/node/deps/v8/src/codegen/ppc/ |
D | assembler-ppc.cc | 450 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()
|
D | assembler-ppc.h | 1331 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
|