Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Unified Diff: runtime/vm/simulator_arm64.cc

Issue 2912863006: Inline instance object hash code into object header on 64 bit. (Closed)
Patch Set: Add assembler tests and other feedback from Ryan Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/simulator_arm64.h ('k') | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/simulator_arm64.cc
diff --git a/runtime/vm/simulator_arm64.cc b/runtime/vm/simulator_arm64.cc
index 455bac6e80228a81c3d86dbb0bf4d64dce8b7cd7..d50e9b2f2def8d2feba882b3f720f0a61d8103d6 100644
--- a/runtime/vm/simulator_arm64.cc
+++ b/runtime/vm/simulator_arm64.cc
@@ -1225,6 +1225,13 @@ intptr_t Simulator::ReadExclusiveX(uword addr, Instr* instr) {
}
+intptr_t Simulator::ReadExclusiveW(uword addr, Instr* instr) {
+ MutexLocker ml(exclusive_access_lock_);
+ SetExclusiveAccess(addr);
+ return ReadWU(addr, instr);
+}
+
+
intptr_t Simulator::WriteExclusiveX(uword addr, intptr_t value, Instr* instr) {
MutexLocker ml(exclusive_access_lock_);
bool write_allowed = HasExclusiveAccessAndOpen(addr);
@@ -1236,6 +1243,17 @@ intptr_t Simulator::WriteExclusiveX(uword addr, intptr_t value, Instr* instr) {
}
+intptr_t Simulator::WriteExclusiveW(uword addr, intptr_t value, Instr* instr) {
+ MutexLocker ml(exclusive_access_lock_);
+ bool write_allowed = HasExclusiveAccessAndOpen(addr);
+ if (write_allowed) {
+ WriteW(addr, value, instr);
+ return 0; // Success.
+ }
+ return 1; // Failure.
+}
+
+
uword Simulator::CompareExchange(uword* address,
uword compare_value,
uword new_value) {
@@ -2199,25 +2217,37 @@ void Simulator::DecodeLoadStoreExclusive(Instr* instr) {
UNIMPLEMENTED();
}
const int32_t size = instr->Bits(30, 2);
- if (size != 3) {
+ if (size != 3 && size != 2) {
UNIMPLEMENTED();
}
-
const Register rs = instr->RsField();
const Register rn = instr->RnField();
const Register rt = instr->RtField();
const bool is_load = instr->Bit(22) == 1;
if (is_load) {
// Format(instr, "ldxr 'rt, 'rn");
- const int64_t addr = get_register(rn, R31IsSP);
- intptr_t value = ReadExclusiveX(addr, instr);
- set_register(instr, rt, value, R31IsSP);
+ if (size == 3) {
+ const int64_t addr = get_register(rn, R31IsSP);
+ intptr_t value = ReadExclusiveX(addr, instr);
+ set_register(instr, rt, value, R31IsSP);
+ } else {
+ const int64_t addr = get_register(rn, R31IsSP);
+ intptr_t value = ReadExclusiveW(addr, instr);
+ set_register(instr, rt, value, R31IsSP);
+ }
} else {
// Format(instr, "stxr 'rs, 'rt, 'rn");
- uword value = get_register(rt, R31IsSP);
- uword addr = get_register(rn, R31IsSP);
- intptr_t status = WriteExclusiveX(addr, value, instr);
- set_register(instr, rs, status, R31IsSP);
+ if (size == 3) {
+ uword value = get_register(rt, R31IsSP);
+ uword addr = get_register(rn, R31IsSP);
+ intptr_t status = WriteExclusiveX(addr, value, instr);
+ set_register(instr, rs, status, R31IsSP);
+ } else {
+ uint32_t value = get_register(rt, R31IsSP);
+ uword addr = get_register(rn, R31IsSP);
+ intptr_t status = WriteExclusiveW(addr, value, instr);
+ set_register(instr, rs, status, R31IsSP);
+ }
}
}
« no previous file with comments | « runtime/vm/simulator_arm64.h ('k') | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698