< prev index next >

src/hotspot/share/jvmci/jvmciCompiler.cpp

Print this page




   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 #include "precompiled.hpp"

  25 #include "memory/oopFactory.hpp"
  26 #include "memory/resourceArea.hpp"
  27 #include "oops/oop.inline.hpp"
  28 #include "prims/jvm.h"
  29 #include "runtime/javaCalls.hpp"
  30 #include "runtime/handles.hpp"
  31 #include "jvmci/jvmciJavaClasses.hpp"
  32 #include "jvmci/jvmciCompiler.hpp"
  33 #include "jvmci/jvmciEnv.hpp"
  34 #include "jvmci/jvmciRuntime.hpp"
  35 #include "runtime/compilationPolicy.hpp"
  36 #include "runtime/globals_extension.hpp"
  37 
  38 JVMCICompiler* JVMCICompiler::_instance = NULL;
  39 elapsedTimer JVMCICompiler::_codeInstallTimer;
  40 
  41 JVMCICompiler::JVMCICompiler() : AbstractCompiler(compiler_jvmci) {
  42   _bootstrapping = false;
  43   _bootstrap_compilation_request_handled = false;
  44   _methods_compiled = 0;
  45   assert(_instance == NULL, "only one instance allowed");
  46   _instance = this;
  47 }
  48 




   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
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  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 #include "precompiled.hpp"
  25 #include "jvm.h"
  26 #include "memory/oopFactory.hpp"
  27 #include "memory/resourceArea.hpp"
  28 #include "oops/oop.inline.hpp"

  29 #include "runtime/javaCalls.hpp"
  30 #include "runtime/handles.hpp"
  31 #include "jvmci/jvmciJavaClasses.hpp"
  32 #include "jvmci/jvmciCompiler.hpp"
  33 #include "jvmci/jvmciEnv.hpp"
  34 #include "jvmci/jvmciRuntime.hpp"
  35 #include "runtime/compilationPolicy.hpp"
  36 #include "runtime/globals_extension.hpp"
  37 
  38 JVMCICompiler* JVMCICompiler::_instance = NULL;
  39 elapsedTimer JVMCICompiler::_codeInstallTimer;
  40 
  41 JVMCICompiler::JVMCICompiler() : AbstractCompiler(compiler_jvmci) {
  42   _bootstrapping = false;
  43   _bootstrap_compilation_request_handled = false;
  44   _methods_compiled = 0;
  45   assert(_instance == NULL, "only one instance allowed");
  46   _instance = this;
  47 }
  48 


< prev index next >