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:
Coleen Phillimore 2020-06-24 09:56:20 -04:00
parent 6b251191e0
commit 1550fd889b
55 changed files with 288 additions and 639 deletions

View file

@ -27,7 +27,7 @@
#include "interpreter/interp_masm.hpp"
#include "interpreter/templateTable.hpp"
#ifdef CC_INTERP
#ifdef ZERO
void templateTable_init() {
}
@ -505,4 +505,4 @@ void TemplateTable::initialize() {
void TemplateTable::unimplemented_bc() {
_masm->unimplemented( Bytecodes::name(_desc->bytecode()));
}
#endif /* !CC_INTERP */
#endif /* !ZERO */