diff src/share/vm/runtime/simpleThresholdPolicy.cpp @ 10132:5b6512efcdc4

Merge
author dcubed
date Fri, 19 Apr 2013 16:51:27 -0700
parents aeaca88565e6
children 487d442ef257
line wrap: on
line diff
--- a/src/share/vm/runtime/simpleThresholdPolicy.cpp	Fri Apr 19 11:08:52 2013 -0700
+++ b/src/share/vm/runtime/simpleThresholdPolicy.cpp	Fri Apr 19 16:51:27 2013 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -153,8 +153,10 @@
 
 // Set carry flags on the counters if necessary
 void SimpleThresholdPolicy::handle_counter_overflow(Method* method) {
-  set_carry_if_necessary(method->invocation_counter());
-  set_carry_if_necessary(method->backedge_counter());
+  MethodCounters *mcs = method->method_counters();
+  assert(mcs != NULL, "");
+  set_carry_if_necessary(mcs->invocation_counter());
+  set_carry_if_necessary(mcs->backedge_counter());
   MethodData* mdo = method->method_data();
   if (mdo != NULL) {
     set_carry_if_necessary(mdo->invocation_counter());