Interval.cpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //===- Interval.cpp - Interval class code ---------------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file contains the definition of the Interval class, which represents a
  10. // partition of a control flow graph of some kind.
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #include "llvm/Analysis/Interval.h"
  14. #include "llvm/IR/BasicBlock.h"
  15. #include "llvm/Support/raw_ostream.h"
  16. using namespace llvm;
  17. //===----------------------------------------------------------------------===//
  18. // Interval Implementation
  19. //===----------------------------------------------------------------------===//
  20. void Interval::print(raw_ostream &OS) const {
  21. OS << "-------------------------------------------------------------\n"
  22. << "Interval Contents:\n";
  23. // Print out all of the basic blocks in the interval...
  24. for (const BasicBlock *Node : Nodes)
  25. OS << *Node << "\n";
  26. OS << "Interval Predecessors:\n";
  27. for (const BasicBlock *Predecessor : Predecessors)
  28. OS << *Predecessor << "\n";
  29. OS << "Interval Successors:\n";
  30. for (const BasicBlock *Successor : Successors)
  31. OS << *Successor << "\n";
  32. }