hotspot/src/share/vm/opto/compile.cpp
changeset 7397 5b173b4ca846
parent 6453 970dc585ab63
child 7432 f06f1253c317
equal deleted inserted replaced
7396:518b01b064ff 7397:5b173b4ca846
    20  * or visit www.oracle.com if you need additional information or have any
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 #include "incls/_precompiled.incl"
    25 #include "precompiled.hpp"
    26 #include "incls/_compile.cpp.incl"
    26 #include "asm/assembler.hpp"
       
    27 #include "classfile/systemDictionary.hpp"
       
    28 #include "code/exceptionHandlerTable.hpp"
       
    29 #include "code/nmethod.hpp"
       
    30 #include "compiler/compileLog.hpp"
       
    31 #include "compiler/oopMap.hpp"
       
    32 #include "opto/addnode.hpp"
       
    33 #include "opto/block.hpp"
       
    34 #include "opto/c2compiler.hpp"
       
    35 #include "opto/callGenerator.hpp"
       
    36 #include "opto/callnode.hpp"
       
    37 #include "opto/cfgnode.hpp"
       
    38 #include "opto/chaitin.hpp"
       
    39 #include "opto/compile.hpp"
       
    40 #include "opto/connode.hpp"
       
    41 #include "opto/divnode.hpp"
       
    42 #include "opto/escape.hpp"
       
    43 #include "opto/idealGraphPrinter.hpp"
       
    44 #include "opto/loopnode.hpp"
       
    45 #include "opto/machnode.hpp"
       
    46 #include "opto/macro.hpp"
       
    47 #include "opto/matcher.hpp"
       
    48 #include "opto/memnode.hpp"
       
    49 #include "opto/mulnode.hpp"
       
    50 #include "opto/node.hpp"
       
    51 #include "opto/opcodes.hpp"
       
    52 #include "opto/output.hpp"
       
    53 #include "opto/parse.hpp"
       
    54 #include "opto/phaseX.hpp"
       
    55 #include "opto/rootnode.hpp"
       
    56 #include "opto/runtime.hpp"
       
    57 #include "opto/stringopts.hpp"
       
    58 #include "opto/type.hpp"
       
    59 #include "opto/vectornode.hpp"
       
    60 #include "runtime/arguments.hpp"
       
    61 #include "runtime/signature.hpp"
       
    62 #include "runtime/stubRoutines.hpp"
       
    63 #include "runtime/timer.hpp"
       
    64 #include "utilities/copy.hpp"
       
    65 #ifdef TARGET_ARCH_MODEL_x86_32
       
    66 # include "adfiles/ad_x86_32.hpp"
       
    67 #endif
       
    68 #ifdef TARGET_ARCH_MODEL_x86_64
       
    69 # include "adfiles/ad_x86_64.hpp"
       
    70 #endif
       
    71 #ifdef TARGET_ARCH_MODEL_sparc
       
    72 # include "adfiles/ad_sparc.hpp"
       
    73 #endif
       
    74 #ifdef TARGET_ARCH_MODEL_zero
       
    75 # include "adfiles/ad_zero.hpp"
       
    76 #endif
    27 
    77 
    28 /// Support for intrinsics.
    78 /// Support for intrinsics.
    29 
    79 
    30 // Return the index at which m must be inserted (or already exists).
    80 // Return the index at which m must be inserted (or already exists).
    31 // The sort order is by the address of the ciMethod, with is_virtual as minor key.
    81 // The sort order is by the address of the ciMethod, with is_virtual as minor key.