hotspot/src/share/vm/c1/c1_FrameMap.cpp
changeset 25715 d5a8dbdc5150
parent 22872 b6902ee5bc8d
child 38031 e0b822facc03
equal deleted inserted replaced
25469:3bcfa1db9717 25715:d5a8dbdc5150
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 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.
    23  */
    23  */
    24 
    24 
    25 #include "precompiled.hpp"
    25 #include "precompiled.hpp"
    26 #include "c1/c1_FrameMap.hpp"
    26 #include "c1/c1_FrameMap.hpp"
    27 #include "c1/c1_LIR.hpp"
    27 #include "c1/c1_LIR.hpp"
       
    28 #include "code/vmreg.inline.hpp"
    28 #include "runtime/sharedRuntime.hpp"
    29 #include "runtime/sharedRuntime.hpp"
    29 #ifdef TARGET_ARCH_x86
       
    30 # include "vmreg_x86.inline.hpp"
       
    31 #endif
       
    32 #ifdef TARGET_ARCH_sparc
       
    33 # include "vmreg_sparc.inline.hpp"
       
    34 #endif
       
    35 #ifdef TARGET_ARCH_zero
       
    36 # include "vmreg_zero.inline.hpp"
       
    37 #endif
       
    38 #ifdef TARGET_ARCH_arm
       
    39 # include "vmreg_arm.inline.hpp"
       
    40 #endif
       
    41 #ifdef TARGET_ARCH_ppc
       
    42 # include "vmreg_ppc.inline.hpp"
       
    43 #endif
       
    44 
       
    45 
       
    46 
    30 
    47 //-----------------------------------------------------
    31 //-----------------------------------------------------
    48 
    32 
    49 // Convert method signature into an array of BasicTypes for the arguments
    33 // Convert method signature into an array of BasicTypes for the arguments
    50 BasicTypeArray* FrameMap::signature_type_array_for(const ciMethod* method) {
    34 BasicTypeArray* FrameMap::signature_type_array_for(const ciMethod* method) {