interp_masm_zero.hpp revision 1472:c18cbe5936b8
190792Sgshapiro/*
2261363Sgshapiro * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
390792Sgshapiro * Copyright 2007 Red Hat, Inc.
490792Sgshapiro * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
590792Sgshapiro *
690792Sgshapiro * This code is free software; you can redistribute it and/or modify it
790792Sgshapiro * under the terms of the GNU General Public License version 2 only, as
890792Sgshapiro * published by the Free Software Foundation.
9261363Sgshapiro *
1090792Sgshapiro * This code is distributed in the hope that it will be useful, but WITHOUT
1190792Sgshapiro * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1290792Sgshapiro * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1390792Sgshapiro * version 2 for more details (a copy is included in the LICENSE file that
1490792Sgshapiro * accompanied this code).
1590792Sgshapiro *
1690792Sgshapiro * You should have received a copy of the GNU General Public License version
1790792Sgshapiro * 2 along with this work; if not, write to the Free Software Foundation,
1890792Sgshapiro * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1990792Sgshapiro *
2090792Sgshapiro * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2190792Sgshapiro * or visit www.oracle.com if you need additional information or have any
2290792Sgshapiro * questions.
2390792Sgshapiro *
2490792Sgshapiro */
2590792Sgshapiro
26// This file specializes the assember with interpreter-specific macros
27
28class InterpreterMacroAssembler : public MacroAssembler {
29 public:
30  InterpreterMacroAssembler(CodeBuffer* code) : MacroAssembler(code) {}
31
32 public:
33  RegisterOrConstant delayed_value_impl(intptr_t* delayed_value_addr,
34                                        Register  tmp,
35                                        int       offset) {
36    ShouldNotCallThis();
37  }
38};
39