< prev index next >

src/cpu/aarch64/vm/globals_aarch64.hpp

Print this page
rev 9228 : 8143072: Port JVMCI to AArch64
Summary: AArch64-specific code for JVMCI
Reviewed-by: duke

*** 38,55 **** define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks define_pd_global(bool, TrapBasedNullChecks, false); define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs past to check cast ! // See 4827828 for this change. There is no globals_core_i486.hpp. I can't ! // assign a different value for C2 without touching a number of files. Use ! // #ifdef to minimize the change as it's late in Mantis. -- FIXME. ! // c1 doesn't have this problem because the fix to 4858033 assures us ! // the the vep is aligned at CodeEntryAlignment whereas c2 only aligns ! // the uep and the vep doesn't get real alignment but just slops on by ! // only assured that the entry instruction meets the 5 byte size requirement. ! #ifdef COMPILER2 define_pd_global(intx, CodeEntryAlignment, 64); #else define_pd_global(intx, CodeEntryAlignment, 16); #endif // COMPILER2 define_pd_global(intx, OptoLoopAlignment, 16); --- 38,48 ---- define_pd_global(bool, ImplicitNullChecks, true); // Generate code for implicit null checks define_pd_global(bool, TrapBasedNullChecks, false); define_pd_global(bool, UncommonNullCast, true); // Uncommon-trap NULLs past to check cast ! #if defined(COMPILER2) || INCLUDE_JVMCI define_pd_global(intx, CodeEntryAlignment, 64); #else define_pd_global(intx, CodeEntryAlignment, 16); #endif // COMPILER2 define_pd_global(intx, OptoLoopAlignment, 16);
< prev index next >