< prev index next >

src/share/vm/opto/output.hpp

Print this page




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OPTO_OUTPUT_HPP
  26 #define SHARE_VM_OPTO_OUTPUT_HPP
  27 
  28 #include "opto/block.hpp"
  29 #include "opto/node.hpp"
  30 #ifdef TARGET_ARCH_MODEL_x86_32


  31 # include "adfiles/ad_x86_32.hpp"
  32 #endif
  33 #ifdef TARGET_ARCH_MODEL_x86_64
  34 # include "adfiles/ad_x86_64.hpp"
  35 #endif
  36 #ifdef TARGET_ARCH_MODEL_sparc
  37 # include "adfiles/ad_sparc.hpp"
  38 #endif
  39 #ifdef TARGET_ARCH_MODEL_zero
  40 # include "adfiles/ad_zero.hpp"
  41 #endif
  42 #ifdef TARGET_ARCH_MODEL_arm
  43 # include "adfiles/ad_arm.hpp"
  44 #endif
  45 #ifdef TARGET_ARCH_MODEL_ppc_32
  46 # include "adfiles/ad_ppc_32.hpp"
  47 #endif
  48 #ifdef TARGET_ARCH_MODEL_ppc_64
  49 # include "adfiles/ad_ppc_64.hpp"
  50 #endif
  51 
  52 class Arena;
  53 class Bundle;
  54 class Block;
  55 class Block_Array;
  56 class Node;
  57 class Node_Array;
  58 class Node_List;
  59 class PhaseCFG;
  60 class PhaseChaitin;
  61 class Pipeline_Use_Element;
  62 class Pipeline_Use;
  63 
  64 #ifndef PRODUCT
  65 #define DEBUG_ARG(x) , x
  66 #else
  67 #define DEBUG_ARG(x)
  68 #endif




  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_OPTO_OUTPUT_HPP
  26 #define SHARE_VM_OPTO_OUTPUT_HPP
  27 
  28 #include "opto/block.hpp"
  29 #include "opto/node.hpp"
  30 #if defined AD_MD_HPP
  31 # include AD_MD_HPP
  32 #elif defined TARGET_ARCH_MODEL_x86_32
  33 # include "adfiles/ad_x86_32.hpp"
  34 #elif defined TARGET_ARCH_MODEL_x86_64

  35 # include "adfiles/ad_x86_64.hpp"
  36 #elif defined TARGET_ARCH_MODEL_sparc

  37 # include "adfiles/ad_sparc.hpp"
  38 #elif defined TARGET_ARCH_MODEL_zero

  39 # include "adfiles/ad_zero.hpp"
  40 #elif defined TARGET_ARCH_MODEL_ppc_64







  41 # include "adfiles/ad_ppc_64.hpp"
  42 #endif
  43 
  44 class Arena;
  45 class Bundle;
  46 class Block;
  47 class Block_Array;
  48 class Node;
  49 class Node_Array;
  50 class Node_List;
  51 class PhaseCFG;
  52 class PhaseChaitin;
  53 class Pipeline_Use_Element;
  54 class Pipeline_Use;
  55 
  56 #ifndef PRODUCT
  57 #define DEBUG_ARG(x) , x
  58 #else
  59 #define DEBUG_ARG(x)
  60 #endif


< prev index next >