OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CoversSlow
(Results
1 - 2
of
2
) sorted by null
/art/compiler/optimizing/
register_allocator.cc
713
// Since `position` is not the current scan position, we need to use
CoversSlow
.
722
} else if (!interval->
CoversSlow
(position)) {
727
DCHECK(!interval->GetHighInterval()->
CoversSlow
(position));
769
DCHECK(interval->
CoversSlow
(defined_by->GetLifetimePosition()));
[
all
...]
ssa_liveness_analysis.h
431
// that,
CoversSlow
should be used instead.
439
bool
CoversSlow
(size_t position) const {
804
// are made outside the linear scan, hence we need to use
CoversSlow
.
805
while (interval != nullptr && !interval->
CoversSlow
(defined_by_->GetLifetimePosition())) {
835
// are made outside the linear scan, hence we need to use
CoversSlow
.
836
while (interval != nullptr && !interval->
CoversSlow
(defined_by_->GetLifetimePosition())) {
845
return !interval->
CoversSlow
(defined_by_->GetLifetimePosition() + 1);
[
all
...]
Completed in 83 milliseconds