-
Enhancement
-
Resolution: Fixed
-
P4
-
20
-
b17
-
riscv
-
linux
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8311725 | 17.0.9 | Fei Yang | P4 | Resolved | Fixed | b01 |
The name of function 'movptr_with_offset' looks misleading.
It actually returns an offset to its caller.
We could rename this function to 'movptr' so that it overloads existing function 'movptr'.
void movptr(Register Rd, address addr);
- void movptr_with_offset(Register Rd, address addr, int32_t &offset);
+ void movptr(Register Rd, address addr, int32_t &offset);
It actually returns an offset to its caller.
We could rename this function to 'movptr' so that it overloads existing function 'movptr'.
void movptr(Register Rd, address addr);
- void movptr_with_offset(Register Rd, address addr, int32_t &offset);
+ void movptr(Register Rd, address addr, int32_t &offset);