Home
last modified time | relevance | path

Searched refs:unresolved_branches_ (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/arm64/
Dassembler-arm64.cc554 unresolved_branches_() { in Assembler()
573 DCHECK(unresolved_branches_.empty()); in Reset()
866 range = unresolved_branches_.equal_range(max_reachable_pc); in DeleteUnresolvedBranchInfoForLabelTraverse()
870 unresolved_branches_.erase(it); in DeleteUnresolvedBranchInfoForLabelTraverse()
883 if (unresolved_branches_.empty()) { in DeleteUnresolvedBranchInfoForLabel()
893 if (unresolved_branches_.empty()) { in DeleteUnresolvedBranchInfoForLabel()
988 DCHECK(unresolved_branches_.empty() || in EndBlockVeneerPool()
4885 static_cast<int>(unresolved_branches_.size() * kMaxVeneerCodeSize); in ShouldEmitVeneer()
4920 it = unresolved_branches_.begin(); in EmitVeneers()
4921 while (it != unresolved_branches_.end()) { in EmitVeneers()
[all …]
Dassembler-arm64.h3550 std::multimap<int, FarBranchInfo> unresolved_branches_;
3562 DCHECK(!unresolved_branches_.empty()); in unresolved_branches_first_limit()
3563 return unresolved_branches_.begin()->first; in unresolved_branches_first_limit()
Dmacro-assembler-arm64.cc877 unresolved_branches_.insert( in NeedExtraInstructionsOrRegisterBranch()
/external/vixl/src/aarch64/
Dmacro-assembler-aarch64.cc191 unresolved_branches_.Reset(); in Reset()
199 unresolved_branches_.GetFirstLimit()); in Release()
209 unresolved_branches_.insert(branch_info); in RegisterUnresolvedBranch()
231 unresolved_branches_.erase(branch_info); in DeleteUnresolvedBranchInfoForLabel()
252 unresolved_branches_.GetFirstLimit()); in CheckEmitFor()
280 for (BranchInfoSetIterator it(&unresolved_branches_); !it.Done();) { in Emit()
Dmacro-assembler-aarch64.h191 bool IsEmpty() const { return unresolved_branches_.IsEmpty(); } in IsEmpty()
262 return ShouldEmitVeneer(unresolved_branches_.GetFirstLimit(), amount); in ShouldEmitVeneers()
280 return static_cast<int>(unresolved_branches_.GetSize()); in GetNumberOfPotentialVeneers()
289 unresolved_branches_.GetSize() * kVeneerCodeSize; in GetMaxSize()
495 if (unresolved_branches_.IsEmpty()) { in GetNextCheckPoint()
498 return unresolved_branches_.GetFirstLimit(); in GetNextCheckPoint()
506 BranchInfoSet unresolved_branches_; variable