Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.h3825 : source_(source), destination_(destination), type_(type), instruction_(instruction) {} in MoveOperands()
3828 Location GetDestination() const { return destination_; } in GetDestination()
3831 void SetDestination(Location value) { destination_ = value; } in SetDestination()
3837 Location dest = destination_; in MarkPending()
3838 destination_ = Location::NoLocation(); in MarkPending()
3844 destination_ = dest; in ClearPending()
3848 DCHECK(!source_.IsInvalid() || destination_.IsInvalid()); in IsPending()
3849 return destination_.IsInvalid() && !source_.IsInvalid(); in IsPending()
3860 return IsEliminated() || destination_.IsInvalid() || source_.Equals(destination_); in IsRedundant()
3865 source_ = destination_ = Location::NoLocation(); in Eliminate()
[all …]