mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8293711: Factor out size parsing functions from arguments.cpp
Reviewed-by: dholmes, jsjolen
This commit is contained in:
parent
5d273b9f04
commit
ec2981b83b
6 changed files with 339 additions and 110 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue