src/share/vm/runtime/deoptimization.hpp

changeset 4037
da91efe96a93
parent 3900
d2a62e0f25eb
child 6377
b8413a9cbb84
     1.1 --- a/src/share/vm/runtime/deoptimization.hpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/runtime/deoptimization.hpp	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -332,9 +332,9 @@
    1.11    static void popframe_preserve_args(JavaThread* thread, int bytes_to_save, void* start_address);
    1.12  
    1.13   private:
    1.14 -  static methodDataOop get_method_data(JavaThread* thread, methodHandle m, bool create_if_missing);
    1.15 +  static MethodData* get_method_data(JavaThread* thread, methodHandle m, bool create_if_missing);
    1.16    // Update the mdo's count and per-BCI reason bits, returning previous state:
    1.17 -  static ProfileData* query_update_method_data(methodDataHandle trap_mdo,
    1.18 +  static ProfileData* query_update_method_data(MethodData* trap_mdo,
    1.19                                                 int trap_bci,
    1.20                                                 DeoptReason reason,
    1.21                                                 //outputs:
    1.22 @@ -355,7 +355,7 @@
    1.23    // Note:  Histogram array size is 1-2 Kb.
    1.24  
    1.25   public:
    1.26 -  static void update_method_data_from_interpreter(methodDataHandle trap_mdo, int trap_bci, int reason);
    1.27 +  static void update_method_data_from_interpreter(MethodData* trap_mdo, int trap_bci, int reason);
    1.28  };
    1.29  
    1.30  class DeoptimizationMarker : StackObj {  // for profiling

mercurial