< prev index next >

src/hotspot/share/interpreter/abstractInterpreter.hpp

Print this page




  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 #ifndef SHARE_VM_INTERPRETER_ABSTRACTINTERPRETER_HPP
  26 #define SHARE_VM_INTERPRETER_ABSTRACTINTERPRETER_HPP
  27 
  28 #include "asm/macroAssembler.hpp"
  29 #include "code/stubs.hpp"
  30 #include "interpreter/bytecodes.hpp"

  31 #include "runtime/thread.hpp"
  32 #include "runtime/vmThread.hpp"
  33 
  34 // This file contains the platform-independent parts
  35 // of the abstract interpreter and the abstract interpreter generator.
  36 
  37 // Organization of the interpreter(s). There exists two different interpreters in hotpot
  38 // an assembly language version (aka template interpreter) and a high level language version
  39 // (aka c++ interpreter). Th division of labor is as follows:
  40 
  41 // Template Interpreter          C++ Interpreter        Functionality
  42 //
  43 // templateTable*                bytecodeInterpreter*   actual interpretation of bytecodes
  44 //
  45 // templateInterpreter*          cppInterpreter*        generation of assembly code that creates
  46 //                                                      and manages interpreter runtime frames.
  47 //                                                      Also code for populating interpreter
  48 //                                                      frames created during deoptimization.
  49 //
  50 




  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 #ifndef SHARE_VM_INTERPRETER_ABSTRACTINTERPRETER_HPP
  26 #define SHARE_VM_INTERPRETER_ABSTRACTINTERPRETER_HPP
  27 
  28 #include "asm/macroAssembler.hpp"
  29 #include "code/stubs.hpp"
  30 #include "interpreter/bytecodes.hpp"
  31 #include "runtime/frame.hpp"
  32 #include "runtime/thread.hpp"
  33 #include "runtime/vmThread.hpp"
  34 
  35 // This file contains the platform-independent parts
  36 // of the abstract interpreter and the abstract interpreter generator.
  37 
  38 // Organization of the interpreter(s). There exists two different interpreters in hotpot
  39 // an assembly language version (aka template interpreter) and a high level language version
  40 // (aka c++ interpreter). Th division of labor is as follows:
  41 
  42 // Template Interpreter          C++ Interpreter        Functionality
  43 //
  44 // templateTable*                bytecodeInterpreter*   actual interpretation of bytecodes
  45 //
  46 // templateInterpreter*          cppInterpreter*        generation of assembly code that creates
  47 //                                                      and manages interpreter runtime frames.
  48 //                                                      Also code for populating interpreter
  49 //                                                      frames created during deoptimization.
  50 //
  51 


< prev index next >