• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- subzero/src/IceVariableSplitting.h - Local var splitting -*- C++ -*-===//
2 //
3 //                        The Subzero Code Generator
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// \brief Aggressive block-local variable splitting to improve linear-scan
12 /// register allocation.
13 ///
14 //===----------------------------------------------------------------------===//
15 
16 #ifndef SUBZERO_SRC_ICEVARIABLESPLITTING_H
17 #define SUBZERO_SRC_ICEVARIABLESPLITTING_H
18 
19 namespace Ice {
20 
21 void splitBlockLocalVariables(class Cfg *Func);
22 
23 } // end of namespace Ice
24 
25 #endif // SUBZERO_SRC_ICEVARIABLESPLITTING_H
26