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

Unified Diff: src/arm64/simulator-arm64.h

Issue 2916853002: [arm64] Add monitor notifiers to NEON loads and stores. (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | src/arm64/simulator-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/simulator-arm64.h
diff --git a/src/arm64/simulator-arm64.h b/src/arm64/simulator-arm64.h
index 0630a7b95f45c9ccfb13af00b8c19cae57b33e97..c82bdd8c7a48cf1a9cfa0984df6d66ba8be48c02 100644
--- a/src/arm64/simulator-arm64.h
+++ b/src/arm64/simulator-arm64.h
@@ -2280,9 +2280,9 @@ class Simulator : public DecoderVisitor {
// not actually perform loads and stores. NotifyStoreExcl only returns
// true if the exclusive store is allowed; the global monitor will still
// have to be checked to see whether the memory should be updated.
- void NotifyLoad(uintptr_t addr);
+ void NotifyLoad();
void NotifyLoadExcl(uintptr_t addr, TransactionSize size);
- void NotifyStore(uintptr_t addr);
+ void NotifyStore();
bool NotifyStoreExcl(uintptr_t addr, TransactionSize size);
private:
@@ -2307,7 +2307,7 @@ class Simulator : public DecoderVisitor {
// not actually perform loads and stores.
void Clear_Locked();
void NotifyLoadExcl_Locked(uintptr_t addr);
- void NotifyStore_Locked(uintptr_t addr, bool is_requesting_processor);
+ void NotifyStore_Locked(bool is_requesting_processor);
bool NotifyStoreExcl_Locked(uintptr_t addr, bool is_requesting_processor);
MonitorAccess access_state_;
@@ -2326,7 +2326,7 @@ class Simulator : public DecoderVisitor {
base::Mutex mutex;
void NotifyLoadExcl_Locked(uintptr_t addr, Processor* processor);
- void NotifyStore_Locked(uintptr_t addr, Processor* processor);
+ void NotifyStore_Locked(Processor* processor);
bool NotifyStoreExcl_Locked(uintptr_t addr, Processor* processor);
// Called when the simulator is destroyed.
« no previous file with comments | « no previous file | src/arm64/simulator-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698