hotspot/src/share/vm/opto/c2compiler.cpp
changeset 25715 d5a8dbdc5150
parent 24673 2ec56802b829
child 26796 666464578742
equal deleted inserted replaced
25469:3bcfa1db9717 25715:d5a8dbdc5150
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 #include "precompiled.hpp"
    25 #include "precompiled.hpp"
    26 #include "opto/c2compiler.hpp"
    26 #include "opto/c2compiler.hpp"
       
    27 #include "opto/optoreg.hpp"
    27 #include "opto/runtime.hpp"
    28 #include "opto/runtime.hpp"
    28 #ifdef TARGET_ARCH_MODEL_x86_32
       
    29 # include "adfiles/ad_x86_32.hpp"
       
    30 #endif
       
    31 #ifdef TARGET_ARCH_MODEL_x86_64
       
    32 # include "adfiles/ad_x86_64.hpp"
       
    33 #endif
       
    34 #ifdef TARGET_ARCH_MODEL_sparc
       
    35 # include "adfiles/ad_sparc.hpp"
       
    36 #endif
       
    37 #ifdef TARGET_ARCH_MODEL_zero
       
    38 # include "adfiles/ad_zero.hpp"
       
    39 #endif
       
    40 #ifdef TARGET_ARCH_MODEL_arm
       
    41 # include "adfiles/ad_arm.hpp"
       
    42 #endif
       
    43 #ifdef TARGET_ARCH_MODEL_ppc_32
       
    44 # include "adfiles/ad_ppc_32.hpp"
       
    45 #endif
       
    46 #ifdef TARGET_ARCH_MODEL_ppc_64
       
    47 # include "adfiles/ad_ppc_64.hpp"
       
    48 #endif
       
    49 
    29 
    50 // register information defined by ADLC
    30 // register information defined by ADLC
    51 extern const char register_save_policy[];
    31 extern const char register_save_policy[];
    52 extern const int  register_save_type[];
    32 extern const int  register_save_type[];
    53 
    33