mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
Merge
This commit is contained in:
commit
5f8d6ce7b6
187 changed files with 54768 additions and 23 deletions
|
@ -422,6 +422,11 @@ enum RTMState {
|
|||
ProfileRTM = 0x0 // Use RTM with abort ratio calculation
|
||||
};
|
||||
|
||||
// The maximum size of the code cache. Can be overridden by targets.
|
||||
#define CODE_CACHE_SIZE_LIMIT (2*G)
|
||||
// Allow targets to reduce the default size of the code cache.
|
||||
#define CODE_CACHE_DEFAULT_LIMIT CODE_CACHE_SIZE_LIMIT
|
||||
|
||||
#ifdef TARGET_ARCH_x86
|
||||
# include "globalDefinitions_x86.hpp"
|
||||
#endif
|
||||
|
@ -437,6 +442,9 @@ enum RTMState {
|
|||
#ifdef TARGET_ARCH_ppc
|
||||
# include "globalDefinitions_ppc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_aarch64
|
||||
# include "globalDefinitions_aarch64.hpp"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* If a platform does not support native stack walking
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue