Searched defs:ShouldBeAllocatedBefore (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.cc337 bool LiveRange::ShouldBeAllocatedBefore(const LiveRange* other) const { function in class:v8::internal::compiler::LiveRange
1681 if (range->ShouldBeAllocatedBefore(cur_range)) {
1703 DCHECK(!(*a)->ShouldBeAllocatedBefore(*b) ||
1704 !(*b)->ShouldBeAllocatedBefore(*a));
1705 if ((*a)->ShouldBeAllocatedBefore(*b)) return 1;
1706 if ((*b)->ShouldBeAllocatedBefore(*a)) return -1;
/external/chromium_org/v8/src/
H A Dlithium-allocator.cc340 bool LiveRange::ShouldBeAllocatedBefore(const LiveRange* other) const { function in class:v8::internal::LiveRange
1652 if (range->ShouldBeAllocatedBefore(cur_range)) {
1674 DCHECK(!(*a)->ShouldBeAllocatedBefore(*b) ||
1675 !(*b)->ShouldBeAllocatedBefore(*a));
1676 if ((*a)->ShouldBeAllocatedBefore(*b)) return 1;
1677 if ((*b)->ShouldBeAllocatedBefore(*a)) return -1;

Completed in 149 milliseconds