Searched refs:ShouldBeAllocatedBefore (Results 1 - 4 of 4) sorted by relevance

/external/v8/src/crankshaft/
H A Dlithium-allocator.cc344 bool LiveRange::ShouldBeAllocatedBefore(const LiveRange* other) const { function in class:v8::internal::LiveRange
1651 if (range->ShouldBeAllocatedBefore(cur_range)) {
1673 DCHECK(!(*a)->ShouldBeAllocatedBefore(*b) ||
1674 !(*b)->ShouldBeAllocatedBefore(*a));
1675 if ((*a)->ShouldBeAllocatedBefore(*b)) return 1;
1676 if ((*b)->ShouldBeAllocatedBefore(*a)) return -1;
H A Dlithium-allocator.h274 bool ShouldBeAllocatedBefore(const LiveRange* other) const;
/external/v8/src/compiler/
H A Dregister-allocator.cc735 bool LiveRange::ShouldBeAllocatedBefore(const LiveRange* other) const { function in class:v8::internal::compiler::LiveRangeBoundArray::LiveRange
2882 if (!range->ShouldBeAllocatedBefore(cur_range)) continue;
2907 DCHECK(!a->ShouldBeAllocatedBefore(b) || !b->ShouldBeAllocatedBefore(a));
2908 if (a->ShouldBeAllocatedBefore(b)) return false;
2909 if (b->ShouldBeAllocatedBefore(a)) return true;
H A Dregister-allocator.h413 bool ShouldBeAllocatedBefore(const LiveRange* other) const;

Completed in 172 milliseconds