mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8087333: Optionally Pre-Generate the HotSpot Template Interpreter
Optional support for pregenerated template interpreter Reviewed-by: coleenp, dholmes, kvn
This commit is contained in:
parent
a7f0956201
commit
5aec2dc9fc
39 changed files with 716 additions and 257 deletions
|
@ -23,6 +23,7 @@
|
|||
*/
|
||||
|
||||
#include "precompiled.hpp"
|
||||
#include "code/codeCacheExtensions.hpp"
|
||||
#include "memory/universe.hpp"
|
||||
#include "oops/oop.inline.hpp"
|
||||
#include "runtime/arguments.hpp"
|
||||
|
@ -155,6 +156,9 @@ const char* Abstract_VM_Version::vm_vendor() {
|
|||
|
||||
|
||||
const char* Abstract_VM_Version::vm_info_string() {
|
||||
if (CodeCacheExtensions::use_pregenerated_interpreter()) {
|
||||
return "interpreted mode, pregenerated";
|
||||
}
|
||||
switch (Arguments::mode()) {
|
||||
case Arguments::_int:
|
||||
return UseSharedSpaces ? "interpreted mode, sharing" : "interpreted mode";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue