1/*
2 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
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
25#include "precompiled.hpp"
26#include "classfile/systemDictionary.hpp"
27#include "code/codeCache.hpp"
28#include "code/compiledIC.hpp"
29#include "code/icBuffer.hpp"
30#include "code/nmethod.hpp"
31#include "code/vtableStubs.hpp"
32#include "interpreter/interpreter.hpp"
33#include "interpreter/linkResolver.hpp"
34#include "memory/metadataFactory.hpp"
35#include "memory/oopFactory.hpp"
36#include "oops/method.hpp"
37#include "oops/oop.inline.hpp"
38#include "oops/symbol.hpp"
39#include "runtime/icache.hpp"
40#include "runtime/sharedRuntime.hpp"
41#include "runtime/stubRoutines.hpp"
42#include "utilities/events.hpp"
43
44
45// ----------------------------------------------------------------------------
46
47address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
48  ShouldNotReachHere(); // Only needed for COMPILER2.
49  return NULL;
50}
51
52int CompiledStaticCall::to_interp_stub_size() {
53  ShouldNotReachHere(); // Only needed for COMPILER2.
54  return 0;
55}
56
57// Relocation entries for call stub, compiled java to interpreter.
58int CompiledStaticCall::reloc_to_interp_stub() {
59  ShouldNotReachHere(); // Only needed for COMPILER2.
60  return 0;
61}
62
63void CompiledDirectStaticCall::set_to_interpreted(const methodHandle& callee, address entry) {
64  ShouldNotReachHere(); // Only needed for COMPILER2.
65}
66
67void CompiledDirectStaticCall::set_stub_to_clean(static_stub_Relocation* static_stub) {
68  ShouldNotReachHere(); // Only needed for COMPILER2.
69}
70
71//-----------------------------------------------------------------------------
72// Non-product mode code.
73#ifndef PRODUCT
74
75void CompiledDirectStaticCall::verify() {
76  ShouldNotReachHere(); // Only needed for COMPILER2.
77}
78
79#endif // !PRODUCT
80