src/share/vm/c1/c1_Instruction.hpp

changeset 4037
da91efe96a93
parent 3969
1d7922586cf6
child 4106
7eca5de9e0b6
     1.1 --- a/src/share/vm/c1/c1_Instruction.hpp	Fri Aug 31 16:39:35 2012 -0700
     1.2 +++ b/src/share/vm/c1/c1_Instruction.hpp	Sat Sep 01 13:25:18 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 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 @@ -913,7 +913,7 @@
    1.11    Value value() const                            { return _value; }
    1.12    bool needs_write_barrier() const               { return check_flag(NeedsWriteBarrierFlag); }
    1.13    bool needs_store_check() const                 { return check_flag(NeedsStoreCheckFlag); }
    1.14 -  // Helpers for methodDataOop profiling
    1.15 +  // Helpers for MethodData* profiling
    1.16    void set_should_profile(bool value)                { set_flag(ProfileMDOFlag, value); }
    1.17    void set_profiled_method(ciMethod* method)         { _profiled_method = method;   }
    1.18    void set_profiled_bci(int bci)                     { _profiled_bci = bci;         }
    1.19 @@ -1349,7 +1349,7 @@
    1.20    virtual bool can_trap() const                  { return true; }
    1.21    virtual void input_values_do(ValueVisitor* f)   { StateSplit::input_values_do(f); f->visit(&_obj); }
    1.22  
    1.23 -  // Helpers for methodDataOop profiling
    1.24 +  // Helpers for MethodData* profiling
    1.25    void set_should_profile(bool value)                { set_flag(ProfileMDOFlag, value); }
    1.26    void set_profiled_method(ciMethod* method)         { _profiled_method = method;   }
    1.27    void set_profiled_bci(int bci)                     { _profiled_bci = bci;         }

mercurial