< prev index next >

src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp

Print this page
rev 49211 : 8199472: Fix non-PCH build after JDK-8199319


   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 // no precompiled headers
  25 #include "ci/ciUtilities.hpp"
  26 #include "memory/oopFactory.hpp"

  27 #include "oops/objArrayOop.inline.hpp"
  28 #include "jvmci/jvmciRuntime.hpp"
  29 #include "jvmci/jvmciCompilerToVM.hpp"
  30 #include "jvmci/vmStructs_jvmci.hpp"
  31 #include "utilities/resourceHash.hpp"
  32 
  33 
  34 int CompilerToVM::Data::Klass_vtable_start_offset;
  35 int CompilerToVM::Data::Klass_vtable_length_offset;
  36 
  37 int CompilerToVM::Data::Method_extra_stack_entries;
  38 
  39 address CompilerToVM::Data::SharedRuntime_ic_miss_stub;
  40 address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub;
  41 address CompilerToVM::Data::SharedRuntime_deopt_blob_unpack;
  42 address CompilerToVM::Data::SharedRuntime_deopt_blob_uncommon_trap;
  43 
  44 size_t CompilerToVM::Data::ThreadLocalAllocBuffer_alignment_reserve;
  45 
  46 CollectedHeap* CompilerToVM::Data::Universe_collectedHeap;




   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 // no precompiled headers
  25 #include "ci/ciUtilities.hpp"
  26 #include "memory/oopFactory.hpp"
  27 #include "oops/instanceKlass.inline.hpp"
  28 #include "oops/objArrayOop.inline.hpp"
  29 #include "jvmci/jvmciRuntime.hpp"
  30 #include "jvmci/jvmciCompilerToVM.hpp"
  31 #include "jvmci/vmStructs_jvmci.hpp"
  32 #include "utilities/resourceHash.hpp"
  33 
  34 
  35 int CompilerToVM::Data::Klass_vtable_start_offset;
  36 int CompilerToVM::Data::Klass_vtable_length_offset;
  37 
  38 int CompilerToVM::Data::Method_extra_stack_entries;
  39 
  40 address CompilerToVM::Data::SharedRuntime_ic_miss_stub;
  41 address CompilerToVM::Data::SharedRuntime_handle_wrong_method_stub;
  42 address CompilerToVM::Data::SharedRuntime_deopt_blob_unpack;
  43 address CompilerToVM::Data::SharedRuntime_deopt_blob_uncommon_trap;
  44 
  45 size_t CompilerToVM::Data::ThreadLocalAllocBuffer_alignment_reserve;
  46 
  47 CollectedHeap* CompilerToVM::Data::Universe_collectedHeap;


< prev index next >