src/cpu/zero/vm/assembler_zero.cpp

Wed, 23 Jan 2013 13:02:39 -0500

author
jprovino
date
Wed, 23 Jan 2013 13:02:39 -0500
changeset 4542
db9981fd3124
parent 4366
d02120b7a34f
child 5545
e16282db4946
permissions
-rw-r--r--

8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
Summary: Rename INCLUDE_ALTERNATE_GCS to INCLUDE_ALL_GCS and replace SERIALGC with INCLUDE_ALL_GCS.
Reviewed-by: coleenp, stefank

     1 /*
     2  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * Copyright 2007, 2008, 2009 Red Hat, Inc.
     4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5  *
     6  * This code is free software; you can redistribute it and/or modify it
     7  * under the terms of the GNU General Public License version 2 only, as
     8  * published by the Free Software Foundation.
     9  *
    10  * This code is distributed in the hope that it will be useful, but WITHOUT
    11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    13  * version 2 for more details (a copy is included in the LICENSE file that
    14  * accompanied this code).
    15  *
    16  * You should have received a copy of the GNU General Public License version
    17  * 2 along with this work; if not, write to the Free Software Foundation,
    18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    19  *
    20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    21  * or visit www.oracle.com if you need additional information or have any
    22  * questions.
    23  *
    24  */
    26 #include "precompiled.hpp"
    27 #include "assembler_zero.inline.hpp"
    28 #include "gc_interface/collectedHeap.inline.hpp"
    29 #include "interpreter/interpreter.hpp"
    30 #include "memory/cardTableModRefBS.hpp"
    31 #include "memory/resourceArea.hpp"
    32 #include "prims/methodHandles.hpp"
    33 #include "runtime/biasedLocking.hpp"
    34 #include "runtime/interfaceSupport.hpp"
    35 #include "runtime/objectMonitor.hpp"
    36 #include "runtime/os.hpp"
    37 #include "runtime/sharedRuntime.hpp"
    38 #include "runtime/stubRoutines.hpp"
    39 #include "utilities/macros.hpp"
    40 #if INCLUDE_ALL_GCS
    41 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
    42 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
    43 #include "gc_implementation/g1/heapRegion.hpp"
    44 #endif // INCLUDE_ALL_GCS
    46 int AbstractAssembler::code_fill_byte() {
    47   return 0;
    48 }
    50 #ifdef ASSERT
    51 bool AbstractAssembler::pd_check_instruction_mark() {
    52   ShouldNotCallThis();
    53 }
    54 #endif
    56 void Assembler::pd_patch_instruction(address branch, address target) {
    57   ShouldNotCallThis();
    58 }
    60 void MacroAssembler::align(int modulus) {
    61   while (offset() % modulus != 0)
    62     emit_int8(AbstractAssembler::code_fill_byte());
    63 }
    65 void MacroAssembler::bang_stack_with_offset(int offset) {
    66   ShouldNotCallThis();
    67 }
    69 void MacroAssembler::advance(int bytes) {
    70   code_section()->set_end(code_section()->end() + bytes);
    71 }
    73 RegisterOrConstant MacroAssembler::delayed_value_impl(
    74   intptr_t* delayed_value_addr, Register tmpl, int offset) {
    75   ShouldNotCallThis();
    76 }
    78 void MacroAssembler::store_oop(jobject obj) {
    79   code_section()->relocate(pc(), oop_Relocation::spec_for_immediate());
    80   emit_address((address) obj);
    81 }
    83 void MacroAssembler::store_Metadata(Metadata* md) {
    84   code_section()->relocate(pc(), metadata_Relocation::spec_for_immediate());
    85   emit_address((address) md);
    86 }
    88 static void should_not_call() {
    89   report_should_not_call(__FILE__, __LINE__);
    90 }
    92 address ShouldNotCallThisStub() {
    93   return (address) should_not_call;
    94 }
    96 address ShouldNotCallThisEntry() {
    97   return (address) should_not_call;
    98 }

mercurial