comparison src/share/vm/code/scopeDesc.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents d8041d695d19
children
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 /* 1 /*
2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
85 // Returns where the scope was decoded 85 // Returns where the scope was decoded
86 int decode_offset() const { return _decode_offset; } 86 int decode_offset() const { return _decode_offset; }
87 87
88 // Tells whether sender() returns NULL 88 // Tells whether sender() returns NULL
89 bool is_top() const; 89 bool is_top() const;
90 // Tells whether sd is equal to this
91 bool is_equal(ScopeDesc* sd) const;
90 92
91 private: 93 private:
92 // Alternative constructor 94 // Alternative constructor
93 ScopeDesc(const ScopeDesc* parent); 95 ScopeDesc(const ScopeDesc* parent);
94 96