src/share/vm/c1/c1_Optimizer.cpp

changeset 2486
403dc4c1d7f5
parent 2314
f95d63e2154a
child 2728
13bc79b5c9c8
     1.1 --- a/src/share/vm/c1/c1_Optimizer.cpp	Thu Dec 30 23:44:45 2010 -0800
     1.2 +++ b/src/share/vm/c1/c1_Optimizer.cpp	Fri Jan 21 13:01:02 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 2011, 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 @@ -496,6 +496,7 @@
    1.11    void do_UnsafePrefetchWrite(UnsafePrefetchWrite* x);
    1.12    void do_ProfileCall    (ProfileCall*     x);
    1.13    void do_ProfileInvoke  (ProfileInvoke*   x);
    1.14 +  void do_RuntimeCall    (RuntimeCall*     x);
    1.15  };
    1.16  
    1.17  
    1.18 @@ -664,6 +665,7 @@
    1.19  void NullCheckVisitor::do_UnsafePrefetchWrite(UnsafePrefetchWrite* x) {}
    1.20  void NullCheckVisitor::do_ProfileCall    (ProfileCall*     x) { nce()->clear_last_explicit_null_check(); }
    1.21  void NullCheckVisitor::do_ProfileInvoke  (ProfileInvoke*   x) {}
    1.22 +void NullCheckVisitor::do_RuntimeCall    (RuntimeCall*     x) {}
    1.23  
    1.24  
    1.25  void NullCheckEliminator::visit(Value* p) {

mercurial