8142984: Zero: fast accessors should handle both getters and setters

Reviewed-by: andrew, coleenp
This commit is contained in:
Aleksey Shipilev 2020-11-19 17:37:07 +00:00
parent 1718abaefa
commit defdd12e70
7 changed files with 176 additions and 117 deletions

View file

@ -34,7 +34,8 @@
// Method entries
static int normal_entry(Method* method, intptr_t UNUSED, TRAPS);
static int native_entry(Method* method, intptr_t UNUSED, TRAPS);
static int accessor_entry(Method* method, intptr_t UNUSED, TRAPS);
static int getter_entry(Method* method, intptr_t UNUSED, TRAPS);
static int setter_entry(Method* method, intptr_t UNUSED, TRAPS);
static int empty_entry(Method* method, intptr_t UNUSED, TRAPS);
public: