@@ -399,6 +399,7 @@ writeConstants(OMRPortLibrary *OMRPORTLIB, IDATA fd)
399399			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_machineBP" , offsetof(J9CInterpreterStackFrame , machineBP )) |
400400			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_jitGPRs" , offsetof(J9CInterpreterStackFrame , jitGPRs )) |
401401			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_jitFPRs" , offsetof(J9CInterpreterStackFrame , jitFPRs )) |
402+ 			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_maskRegisters" , offsetof(J9CInterpreterStackFrame , maskRegisters )) |
402403			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_rax" , offsetof(J9CInterpreterStackFrame , jitGPRs .jitGPRs .named .rax )) |
403404			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_rbx" , offsetof(J9CInterpreterStackFrame , jitGPRs .jitGPRs .named .rbx )) |
404405			writeConstant (OMRPORTLIB , fd , "J9TR_cframe_rcx" , offsetof(J9CInterpreterStackFrame , jitGPRs .jitGPRs .named .rcx )) |
@@ -505,6 +506,7 @@ writeConstants(OMRPortLibrary *OMRPORTLIB, IDATA fd)
505506			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVM_bytecodeLoop" , offsetof(J9JavaVM , bytecodeLoop )) |
506507			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVM_extendedRuntimeFlags" , offsetof(J9JavaVM , extendedRuntimeFlags )) |
507508			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVM_extendedRuntimeFlags2" , offsetof(J9JavaVM , extendedRuntimeFlags2 )) |
509+ 			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVM_extendedRuntimeFlags3" , offsetof(J9JavaVM , extendedRuntimeFlags3 )) |
508510			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVMInternalFunctionTable" , offsetof(J9JavaVM , internalVMFunctions )) |
509511			writeConstant (OMRPORTLIB , fd , "J9TR_JavaVM_memoryManagerFunctions" , offsetof(J9JavaVM , memoryManagerFunctions )) |
510512#if  defined(OMR_GC_CONCURRENT_SCAVENGER ) &&  defined (J9VM_ARCH_S390 )
@@ -669,6 +671,8 @@ writeConstants(OMRPortLibrary *OMRPORTLIB, IDATA fd)
669671			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_old_slow_jitReportInstanceFieldWrite" , offsetof(J9JITConfig , old_slow_jitReportInstanceFieldWrite )) |
670672			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_old_slow_jitReportStaticFieldRead" , offsetof(J9JITConfig , old_slow_jitReportStaticFieldRead )) |
671673			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_old_slow_jitReportStaticFieldWrite" , offsetof(J9JITConfig , old_slow_jitReportStaticFieldWrite )) |
674+ 			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_saveVectorRegisters" , offsetof(J9JITConfig , saveVectorRegisters )) |
675+ 			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_restoreVectorRegisters" , offsetof(J9JITConfig , restoreVectorRegisters )) |
672676
673677			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_old_fast_jitGetFlattenableField" , offsetof(J9JITConfig , old_fast_jitGetFlattenableField )) |
674678			writeConstant (OMRPORTLIB , fd , "J9TR_JitConfig_old_fast_jitCloneValueType" , offsetof(J9JITConfig , old_fast_jitCloneValueType )) |
@@ -777,6 +781,8 @@ writeConstants(OMRPortLibrary *OMRPORTLIB, IDATA fd)
777781			writeConstant (OMRPORTLIB , fd , "J9TR_ELSSize" , sizeof (J9VMEntryLocalStorage )) |
778782			writeConstant (OMRPORTLIB , fd , "J9TR_J9_EXTENDED_RUNTIME_DEBUG_MODE" , J9_EXTENDED_RUNTIME_DEBUG_MODE ) |
779783			writeConstant (OMRPORTLIB , fd , "J9TR_J9_EXTENDED_RUNTIME_USE_VECTOR_REGISTERS" , J9_EXTENDED_RUNTIME_USE_VECTOR_REGISTERS ) |
784+ 			writeConstant (OMRPORTLIB , fd , "J9TR_J9_EXTENDED_RUNTIME3_USE_VECTOR_LENGTH_256" , J9_EXTENDED_RUNTIME3_USE_VECTOR_LENGTH_256 ) |
785+ 			writeConstant (OMRPORTLIB , fd , "J9TR_J9_EXTENDED_RUNTIME3_USE_VECTOR_LENGTH_512" , J9_EXTENDED_RUNTIME3_USE_VECTOR_LENGTH_512 ) |
780786			writeConstant (OMRPORTLIB , fd , "J9TR_J9_EXTENDED_RUNTIME2_COMPRESS_OBJECT_REFERENCES" , J9_EXTENDED_RUNTIME2_COMPRESS_OBJECT_REFERENCES ) |
781787			writeConstant (OMRPORTLIB , fd , "J9TR_J9_INLINE_JNI_MAX_ARG_COUNT" , J9_INLINE_JNI_MAX_ARG_COUNT ) |
782788
0 commit comments