HomeSort by relevance Sort by last modified time
    Searched defs:splinter (Results 1 - 3 of 3) sorted by null

  /external/v8/src/compiler/
live-range-separator.cc 47 if (range->splinter() == nullptr) {
48 TopLevelLiveRange *splinter = local
50 DCHECK_NULL(data->live_ranges()[splinter->vreg()]);
51 data->live_ranges()[splinter->vreg()] = splinter;
52 range->SetSplinter(splinter);
55 TRACE("creating splinter for range %d between %d and %d\n", range->vreg(),
57 range->Splinter(start, end, zone);
98 // Splinter from there to the last instruction that was in a deferred block.
106 void LiveRangeSeparator::Splinter() {
    [all...]
register-allocator.h 507 void Splinter(LifetimePosition start, LifetimePosition end, Zone* zone);
607 TopLevelLiveRange* splinter() const { return splinter_; } function in class:v8::internal::compiler::final
608 void SetSplinter(TopLevelLiveRange* splinter) {
610 DCHECK_NOT_NULL(splinter);
612 splinter_ = splinter;
613 splinter->relative_id_ = GetNextChildId();
614 splinter->set_spill_type(spill_type());
615 splinter->SetSplinteredFrom(this);
    [all...]
  /external/v8/test/unittests/compiler/
live-range-unittest.cc 33 TopLevelLiveRange* Splinter(TopLevelLiveRange* top, int start, int end,
35 if (top->splinter() == nullptr) {
40 top->Splinter(LifetimePosition::FromInt(start),
42 return top->splinter();
274 TopLevelLiveRange* splinter = Splinter(range, 3, 5); local
276 EXPECT_EQ(nullptr, splinter->next());
277 EXPECT_EQ(range, splinter->splintered_from());
283 EXPECT_TRUE(RangesMatch(expected_splinter, splinter));
289 TopLevelLiveRange* splinter = Splinter(original, 3, 5) local
303 TopLevelLiveRange* splinter = Splinter(range, 2, 6); local
320 TopLevelLiveRange* splinter = Splinter(original, 2, 6); local
341 TopLevelLiveRange* splinter = Splinter(range, 2, 4); local
357 TopLevelLiveRange* splinter = Splinter(original, 2, 4); local
370 TopLevelLiveRange* splinter = Splinter(range, 4, 6); local
388 TopLevelLiveRange* splinter = range->splinter(); local
405 TopLevelLiveRange* splinter = Splinter(original, 4, 6); local
419 TopLevelLiveRange* splinter = Splinter(original, 4, 6); local
439 TopLevelLiveRange* splinter = local
    [all...]

Completed in 561 milliseconds