comparison src/share/vm/interpreter/interpreter.cpp @ 6926:a3e2f723f2a5

8000780: make Zero build and run with JDK8 Reviewed-by: coleenp, dholmes, twisti Contributed-by: Roman Kennke <rkennke@redhat.com>
author twisti
date Mon, 29 Oct 2012 11:08:48 -0700
parents b31471cdc53e
children e522a00b91aa cd3d6a6b95d9
comparison
equal deleted inserted replaced
6915:a516debe2cee 6926:a3e2f723f2a5
462 for (int pages = start_page; pages <= StackShadowPages ; pages++) { 462 for (int pages = start_page; pages <= StackShadowPages ; pages++) {
463 __ bang_stack_with_offset(pages*page_size); 463 __ bang_stack_with_offset(pages*page_size);
464 } 464 }
465 } 465 }
466 } 466 }
467
468 void AbstractInterpreterGenerator::initialize_method_handle_entries() {
469 // method handle entry kinds are generated later in MethodHandlesAdapterGenerator::generate:
470 for (int i = Interpreter::method_handle_invoke_FIRST; i <= Interpreter::method_handle_invoke_LAST; i++) {
471 Interpreter::MethodKind kind = (Interpreter::MethodKind) i;
472 Interpreter::_entry_table[kind] = Interpreter::_entry_table[Interpreter::abstract];
473 }
474 }