Home
last modified time | relevance | path

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

/external/autotest/client/site_tests/hardware_PerfCounterVerification/src/
Dfind_loop_instructions.py112 def _FindLoopBranches(disassembly, is_branch): argument
118 if is_branch(mnemonic):
125 is_branch = ChooseIsBranchForChost(chost)
126 return _FindLoopBranches(disassembly, is_branch)
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.h77 unsigned is_branch:1; member
Dtgsi_text.c983 if (info->is_branch && *cur == ':') { in parse_instruction()
/external/v8/src/ppc/
Dassembler-ppc.cc416 void Assembler::target_at_put(int pos, int target_pos, bool* is_branch) { in target_at_put() argument
420 if (is_branch != nullptr) { in target_at_put()
421 *is_branch = (opcode == BX || opcode == BCX); in target_at_put()
521 bool is_branch = false; in bind_to() local
535 target_at_put(fixup_pos, pos, &is_branch); in bind_to()
540 if (!trampoline_emitted_ && is_branch) { in bind_to()
Dassembler-ppc.h1306 void target_at_put(int pos, int target_pos, bool* is_branch = nullptr);
/external/mesa3d/src/mesa/state_tracker/
Dst_glsl_to_tgsi.cpp3045 tgsi_get_opcode_info(inst->op)->is_branch || in simplify_cmp()