Searched defs:branch (Results 1 - 4 of 4) sorted by relevance

/art/compiler/utils/mips/
H A Dassembler_mips.cc105 // existing instructions (branch placeholders) in the buffer.
107 for (auto& branch : branches_) {
108 EmitBranch(&branch);
775 LOG(FATAL) << "Unexpected branch condition " << cond;
839 LOG(FATAL) << "Unexpected branch condition " << cond;
1590 // Branch condition is always true, make the branch unconditional.
1644 LOG(FATAL) << "Unexpected branch condition " << cond;
1745 // bump up the distance by a value larger than the max byte size of a composite branch.
1806 // If the branch is still unresolved or already long, nothing to do.
1810 // Promote the short branch t
1868 Branch* branch = GetBranch(branch_id); local
1885 const Branch* branch = GetBranch(branch_id); local
1897 const Branch* branch = GetBranch(branch_id); local
1915 const Branch* branch = GetBranch(last_branch_id_); local
1999 Branch& branch = branches_[--i]; local
2029 EmitBranch(MipsAssembler::Branch* branch) argument
[all...]
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc71 // existing instructions (branch placeholders) in the buffer.
73 for (auto& branch : branches_) {
74 EmitBranch(&branch);
696 LOG(FATAL) << "Unexpected branch condition " << cond;
1273 // Branch condition is always true, make the branch unconditional.
1327 LOG(FATAL) << "Unexpected branch condition " << cond;
1420 // bump up the distance by a value larger than the max byte size of a composite branch.
1471 // If the branch is still unresolved or already long, nothing to do.
1475 // Promote the short branch to long if the offset size is too small
1533 Branch* branch local
1550 const Branch* branch = GetBranch(branch_id); local
1562 const Branch* branch = GetBranch(branch_id); local
1580 const Branch* branch = GetBranch(last_branch_id_); local
1667 Branch& branch = branches_[--i]; local
1689 EmitBranch(Mips64Assembler::Branch* branch) argument
[all...]
/art/compiler/optimizing/
H A Dcode_generator_x86.cc1354 static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) { argument
1356 // are set only strictly before `branch`. We can't use the eflags on long/FP
1359 cond->GetNext() == branch &&
1391 // - opposite condition true => branch to false_target
1393 // - condition true => branch to true_target
1395 // - condition true => branch to true_target
1396 // - branch to false_target
1420 // its condition as the branch condition.
1449 // If neither branch falls through (case 3), the conditional branch t
[all...]
H A Dcode_generator_x86_64.cc1398 static bool AreEflagsSetFrom(HInstruction* cond, HInstruction* branch) { argument
1400 // are set only strictly before `branch`. We can't use the eflags on long
1403 cond->GetNext() == branch &&
1434 // - opposite condition true => branch to false_target
1436 // - condition true => branch to true_target
1438 // - condition true => branch to true_target
1439 // - branch to false_target
1463 // comparison and its condition as the branch condition.
1492 // If neither branch falls through (case 3), the conditional branch t
[all...]

Completed in 154 milliseconds