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

  /external/llvm/lib/Analysis/
IntervalPartition.cpp 1 //===- IntervalPartition.cpp - Interval Partition module code -------------===//
10 // This file contains the definition of the IntervalPartition class, which
18 char IntervalPartition::ID = 0;
19 INITIALIZE_PASS(IntervalPartition, "intervals",
23 // IntervalPartition Implementation
27 void IntervalPartition::releaseMemory() {
35 void IntervalPartition::print(raw_ostream &O, const Module*) const {
44 void IntervalPartition::addIntervalToPartition(Interval *I) {
47 // Add mappings for all of the basic blocks in I to the IntervalPartition
58 void IntervalPartition::updatePredecessors(Interval *Int)
    [all...]
  /external/llvm/include/llvm/Analysis/
IntervalPartition.h 1 //===- IntervalPartition.h - Interval partition Calculation -----*- C++ -*-===//
10 // This file contains the declaration of the IntervalPartition class, which
17 // TODO: The IntervalPartition class should take a bool parameter that tells
34 // IntervalPartition - This class builds and holds an "interval partition" for
40 class IntervalPartition : public FunctionPass {
51 IntervalPartition() : FunctionPass(ID), RootInterval(nullptr) {
58 // IntervalPartition ctor - Build a reduced interval partition from an
62 IntervalPartition(IntervalPartition &I, bool);

Completed in 1345 milliseconds