/* * Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. *
*/
// This file contains the platform-independent parts // of the interpreter and the interpreter generator.
class InterpreterMacroAssembler;
//------------------------------------------------------------------------------------------------------------------------ // An InterpreterCodelet is a piece of interpreter code. All // interpreter code is generated into little codelets which // contain extra information for debugging and printing purposes.
class InterpreterCodelet: public Stub { friendclass VMStructs; friendclass CodeCacheDumper; // possible extension [do not remove] private:
NOT_PRODUCT(AsmRemarks _asm_remarks;) // Comments for annotating assembler output.
NOT_PRODUCT(DbgStrings _dbg_strings;) // Debug strings used in generated code. constchar* _description; // A description of the codelet, for debugging & printing int _size; // The codelet size in bytes
Bytecodes::Code _bytecode; // Associated bytecode, if any
// Interpreter-specific attributes int code_size() const { return code_end() - code_begin(); } constchar* description() const { return _description; }
Bytecodes::Code bytecode() const { return _bytecode; } #ifndef PRODUCT
~InterpreterCodelet() { // InterpreterCodelets reside in the StubQueue and should not be deleted, // nor are they ever finalized (see above).
ShouldNotCallThis();
} void use_remarks(AsmRemarks &remarks) { _asm_remarks.share(remarks); } void use_strings(DbgStrings &strings) { _dbg_strings.share(strings); } #endif
};
// Define a prototype interface
DEF_STUB_INTERFACE(InterpreterCodelet);
//------------------------------------------------------------------------------------------------------------------------ // A CodeletMark serves as an automatic creator/initializer for Codelets // (As a subclass of ResourceMark it automatically GC's the allocated // code buffer and assemblers).
int codelet_size() { // Request the whole code buffer (minus a little for alignment). // The commit call below trims it back for each codelet. int codelet_size = AbstractInterpreter::code()->available_space() - 2*K;
// Guarantee there's a little bit of code space left.
guarantee(codelet_size > 0 && (size_t)codelet_size > 2*K, "not enough space for interpreter generation");
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.