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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.cpp66 void print_intervals(IntervalList* intervals, const char* name);
102 void CFGPrinter::print_intervals(IntervalList* intervals, const char* name) { argument
103 output()->print_intervals(intervals, name);
371 void CFGPrinterOutput::print_intervals(IntervalList* intervals, const char* name) { argument
372 print_begin("intervals");
375 for (int i = 0; i < intervals->length(); i++) {
376 if (intervals->at(i) != NULL) {
377 intervals->at(i)->print(output());
381 print_end("intervals");
H A Dc1_LinearScan.cpp181 // ********** functions for classification of intervals
216 // fixed intervals not needed for FPU stack allocation
221 // fixed intervals never contain oops
285 // (only used for parent intervals that are created during the building phase)
292 // assign register number for precolored intervals
299 // assign a new reg_num to the interval and append it to the list of intervals
300 // (only used for child intervals that are created during register allocation)
317 // intervals (only the very beginning of the interval must be in memory)
324 // called during building of intervals
336 assert(def_pos <= interval->spill_definition_pos(), "positions are processed in reverse order when intervals ar
1449 is_sorted(IntervalArray* intervals) argument
[all...]

Completed in 52 milliseconds