mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8239782: CC_INTERP is only used by Zero interpreter
Change CC_INTERP conditional to ZERO and remove in places where unnecessary. Fix build to exclude compilers and rename CppInterpreter to ZeroInterpreter. The "C++ Interpreter" has been removed from the code a while ago. Reviewed-by: dholmes, ihse
This commit is contained in:
parent
6b251191e0
commit
1550fd889b
55 changed files with 288 additions and 639 deletions
|
@ -39,21 +39,19 @@
|
|||
// an assembly language version (aka template interpreter) and a high level language version
|
||||
// (aka c++ interpreter). Th division of labor is as follows:
|
||||
|
||||
// Template Interpreter C++ Interpreter Functionality
|
||||
// Template Interpreter Zero Interpreter Functionality
|
||||
//
|
||||
// templateTable* bytecodeInterpreter* actual interpretation of bytecodes
|
||||
//
|
||||
// templateInterpreter* cppInterpreter* generation of assembly code that creates
|
||||
// templateInterpreter* zeroInterpreter* generation of assembly code that creates
|
||||
// and manages interpreter runtime frames.
|
||||
// Also code for populating interpreter
|
||||
// frames created during deoptimization.
|
||||
//
|
||||
|
||||
class InterpreterMacroAssembler;
|
||||
|
||||
class AbstractInterpreter: AllStatic {
|
||||
friend class VMStructs;
|
||||
friend class CppInterpreterGenerator;
|
||||
friend class ZeroInterpreterGenerator;
|
||||
friend class TemplateInterpreterGenerator;
|
||||
public:
|
||||
enum MethodKind {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue