Searched refs:hint (Results 1 - 8 of 8) sorted by last modified time

/art/compiler/dex/
H A Dlocal_value_numbering.cc591 const typename Set::value_type& entry, typename Set::iterator hint)>
641 ValueNameSet::iterator hint) {
652 escaped_refs_.emplace_hint(hint, entry);
657 const EscapedIFieldClobberSet::value_type& entry, EscapedIFieldClobberSet::iterator hint) {
660 escaped_ifield_clobber_set_.emplace_hint(hint, entry);
665 const EscapedIFieldClobberSet::value_type& entry, EscapedIFieldClobberSet::iterator hint) {
667 if (!(hint == escaped_ifield_clobber_set_.end() &&
668 hint->base == entry.base && hint->type == entry.type) &&
670 escaped_ifield_clobber_set_.emplace_hint(hint, entr
640 MergeEscapedRefs(const ValueNameSet::value_type& entry, ValueNameSet::iterator hint) argument
656 MergeEscapedIFieldTypeClobberSets( const EscapedIFieldClobberSet::value_type& entry, EscapedIFieldClobberSet::iterator hint) argument
664 MergeEscapedIFieldClobberSets( const EscapedIFieldClobberSet::value_type& entry, EscapedIFieldClobberSet::iterator hint) argument
674 MergeEscapedArrayClobberSets( const EscapedArrayClobberSet::value_type& entry, EscapedArrayClobberSet::iterator hint) argument
737 MergeSFieldValues(const SFieldToValueMap::value_type& entry, SFieldToValueMap::iterator hint) argument
775 MergeNonAliasingIFieldValues(const IFieldLocToValueMap::value_type& entry, IFieldLocToValueMap::iterator hint) argument
812 MergeAliasingValues(const typename Map::value_type& entry, typename Map::iterator hint) argument
[all...]
H A Dlocal_value_numbering.h350 const typename Set::value_type& entry, typename Set::iterator hint)>
355 void MergeEscapedRefs(const ValueNameSet::value_type& entry, ValueNameSet::iterator hint);
357 EscapedIFieldClobberSet::iterator hint);
359 EscapedIFieldClobberSet::iterator hint);
361 EscapedArrayClobberSet::iterator hint);
363 SFieldToValueMap::iterator hint);
365 IFieldLocToValueMap::iterator hint);
370 void MergeAliasingValues(const typename Map::value_type& entry, typename Map::iterator hint);
/art/compiler/optimizing/
H A Dregister_allocator.cc774 int hint = current->FindFirstRegisterHint(free_until, liveness_); local
775 if ((hint != kNoRegister)
776 // For simplicity, if the hint we are getting for a pair cannot be used,
778 && !(current->IsLowInterval() && IsBlocked(GetHighForLowRegister(hint)))) {
779 DCHECK(!IsBlocked(hint));
780 reg = hint;
H A Dssa_liveness_analysis.cc332 int hint = FindHintAtDefinition(); local
333 if (hint != kNoRegister && free_until[hint] > GetStart()) {
334 return hint;
341 // starts at. If one location is a register we return it as a hint. This
/art/compiler/utils/
H A Dswap_space.h163 pointer allocate(size_type n, SwapAllocator<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
/art/runtime/base/
H A Dallocator.h133 pointer allocate(size_type n, const_pointer hint = 0) {
134 UNUSED(hint);
H A Darena_containers.h157 pointer allocate(size_type n, ArenaAllocatorAdapter<void>::pointer hint = nullptr) {
158 UNUSED(hint);
H A Dscoped_arena_containers.h148 pointer allocate(size_type n, ScopedArenaAllocatorAdapter<void>::pointer hint = nullptr) {
149 UNUSED(hint);

Completed in 311 milliseconds