8293711: Factor out size parsing functions from arguments.cpp

Reviewed-by: dholmes, jsjolen
This commit is contained in:
Thomas Stuefe 2022-10-17 12:44:51 +00:00
parent 5d273b9f04
commit ec2981b83b
6 changed files with 339 additions and 110 deletions

View file

@ -110,9 +110,11 @@ class oopDesc;
// Format 32-bit quantities.
#define INT32_FORMAT "%" PRId32
#define INT32_FORMAT_X "0x%" PRIx32
#define INT32_FORMAT_X_0 "0x%08" PRIx32
#define INT32_FORMAT_W(width) "%" #width PRId32
#define UINT32_FORMAT "%" PRIu32
#define UINT32_FORMAT_X "0x%" PRIx32
#define UINT32_FORMAT_X_0 "0x%08" PRIx32
#define UINT32_FORMAT_W(width) "%" #width PRIu32