< prev index next >

src/hotspot/share/compiler/compilerDirectives.cpp

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "ci/ciMethod.hpp"
  27 #include "ci/ciUtilities.hpp"
  28 #include "compiler/abstractCompiler.hpp"
  29 #include "compiler/compilerDirectives.hpp"
  30 #include "compiler/compilerOracle.hpp"

  31 #include "memory/resourceArea.hpp"
  32 
  33 CompilerDirectives::CompilerDirectives() :_match(NULL), _next(NULL), _ref_count(0) {
  34   _c1_store = new DirectiveSet(this);
  35   _c2_store = new DirectiveSet(this);
  36 };
  37 
  38 CompilerDirectives::~CompilerDirectives() {
  39   if (_c1_store != NULL) {
  40     delete _c1_store;
  41   }
  42   if (_c2_store != NULL) {
  43     delete _c2_store;
  44   }
  45 
  46   // remove all linked method matchers
  47   BasicMatcher* tmp = _match;
  48   while (tmp != NULL) {
  49     BasicMatcher* next = tmp->next();
  50     delete tmp;




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "ci/ciMethod.hpp"
  27 #include "ci/ciUtilities.hpp"
  28 #include "compiler/abstractCompiler.hpp"
  29 #include "compiler/compilerDirectives.hpp"
  30 #include "compiler/compilerOracle.hpp"
  31 #include "memory/allocation.inline.hpp"
  32 #include "memory/resourceArea.hpp"
  33 
  34 CompilerDirectives::CompilerDirectives() :_match(NULL), _next(NULL), _ref_count(0) {
  35   _c1_store = new DirectiveSet(this);
  36   _c2_store = new DirectiveSet(this);
  37 };
  38 
  39 CompilerDirectives::~CompilerDirectives() {
  40   if (_c1_store != NULL) {
  41     delete _c1_store;
  42   }
  43   if (_c2_store != NULL) {
  44     delete _c2_store;
  45   }
  46 
  47   // remove all linked method matchers
  48   BasicMatcher* tmp = _match;
  49   while (tmp != NULL) {
  50     BasicMatcher* next = tmp->next();
  51     delete tmp;


< prev index next >