src/cpu/zero/vm/sharedRuntime_zero.cpp

changeset 2729
e863062e521d
parent 2314
f95d63e2154a
child 3045
a3142bdb6707
     1.1 --- a/src/cpu/zero/vm/sharedRuntime_zero.cpp	Sun Apr 03 12:00:54 2011 +0200
     1.2 +++ b/src/cpu/zero/vm/sharedRuntime_zero.cpp	Mon Apr 04 03:02:00 2011 -0700
     1.3 @@ -1,6 +1,6 @@
     1.4  /*
     1.5   * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 - * Copyright 2007, 2008, 2009, 2010 Red Hat, Inc.
     1.7 + * Copyright 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
     1.8   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.9   *
    1.10   * This code is free software; you can redistribute it and/or modify it
    1.11 @@ -78,15 +78,17 @@
    1.12  
    1.13  nmethod *SharedRuntime::generate_native_wrapper(MacroAssembler *masm,
    1.14                                                  methodHandle method,
    1.15 -                                                int total_in_args,
    1.16 -                                                int comp_args_on_stack,
    1.17 -                                                BasicType *in_sig_bt,
    1.18 -                                                VMRegPair *in_regs,
    1.19 +                                                int compile_id,
    1.20 +                                                int total_args_passed,
    1.21 +                                                int max_arg,
    1.22 +                                                BasicType *sig_bt,
    1.23 +                                                VMRegPair *regs,
    1.24                                                  BasicType ret_type) {
    1.25  #ifdef SHARK
    1.26    return SharkCompiler::compiler()->generate_native_wrapper(masm,
    1.27                                                              method,
    1.28 -                                                            in_sig_bt,
    1.29 +                                                            compile_id,
    1.30 +                                                            sig_bt,
    1.31                                                              ret_type);
    1.32  #else
    1.33    ShouldNotCallThis();

mercurial