< prev index next >

src/share/vm/c1/c1_FrameMap.cpp

Print this page




  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 #include "precompiled.hpp"
  26 #include "c1/c1_FrameMap.hpp"
  27 #include "c1/c1_LIR.hpp"
  28 #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 
  47 //-----------------------------------------------------
  48 
  49 // Convert method signature into an array of BasicTypes for the arguments
  50 BasicTypeArray* FrameMap::signature_type_array_for(const ciMethod* method) {
  51   ciSignature* sig = method->signature();




  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 #include "precompiled.hpp"
  26 #include "c1/c1_FrameMap.hpp"
  27 #include "c1/c1_LIR.hpp"
  28 #include "runtime/sharedRuntime.hpp"
  29 #ifdef TARGET_ARCH_x86
  30 # include "vmreg_x86.inline.hpp"
  31 #endif
  32 #ifdef TARGET_ARCH_aarch64
  33 # include "vmreg_aarch64.inline.hpp"
  34 #endif
  35 #ifdef TARGET_ARCH_sparc
  36 # include "vmreg_sparc.inline.hpp"
  37 #endif
  38 #ifdef TARGET_ARCH_zero
  39 # include "vmreg_zero.inline.hpp"
  40 #endif
  41 #ifdef TARGET_ARCH_arm
  42 # include "vmreg_arm.inline.hpp"
  43 #endif
  44 #ifdef TARGET_ARCH_ppc
  45 # include "vmreg_ppc.inline.hpp"
  46 #endif
  47 
  48 
  49 
  50 //-----------------------------------------------------
  51 
  52 // Convert method signature into an array of BasicTypes for the arguments
  53 BasicTypeArray* FrameMap::signature_type_array_for(const ciMethod* method) {
  54   ciSignature* sig = method->signature();


< prev index next >