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

Unified Diff: runtime/vm/simulator_arm64.h

Issue 677193002: - Use the simulator to do atomic operations that could also (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 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_arm.cc ('k') | runtime/vm/simulator_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/simulator_arm64.h
===================================================================
--- runtime/vm/simulator_arm64.h (revision 41327)
+++ runtime/vm/simulator_arm64.h (working copy)
@@ -17,11 +17,12 @@
#endif
#include "vm/constants_arm64.h"
-#include "vm/object.h"
namespace dart {
class Isolate;
+class Mutex;
+class RawObject;
class SimulatorSetjmpBuffer;
typedef struct {
@@ -77,7 +78,7 @@
void set_top_exit_frame_info(uword value) { top_exit_frame_info_ = value; }
// Call on program start.
- static void InitOnce() {}
+ static void InitOnce();
// Dart generally calls into generated code with 5 parameters. This is a
// convenience function, which sets up the simulator state and grabs the
@@ -91,6 +92,12 @@
bool fp_return = false,
bool fp_args = false);
+ // Implementation of atomic compare and exchange in the same synchronization
+ // domain as other synchronization primitive instructions (e.g. ldrex, strex).
+ static uword CompareExchange(uword* address,
+ uword compare_value,
+ uword new_value);
+
// Runtime and native call support.
enum CallKind {
kRuntimeCall,
@@ -173,6 +180,38 @@
inline intptr_t ReadX(uword addr, Instr* instr);
inline void WriteX(uword addr, intptr_t value, Instr* instr);
+ // In Dart, there is at most one thread per isolate.
+ // We keep track of 16 exclusive access address tags across all isolates.
+ // Since we cannot simulate a native context switch, which clears
+ // the exclusive access state of the local monitor (using the CLREX
+ // instruction), we associate the isolate requesting exclusive access to the
+ // address tag. Multiple isolates requesting exclusive access (using the LDREX
+ // instruction) to the same address will result in multiple address tags being
+ // created for the same address, one per isolate.
+ // At any given time, each isolate is associated to at most one address tag.
+ static Mutex* exclusive_access_lock_;
+ static const int kNumAddressTags = 16;
+ static struct AddressTag {
+ Isolate* isolate;
+ uword addr;
+ } exclusive_access_state_[kNumAddressTags];
+ static int next_address_tag_;
+
+ // Synchronization primitives support.
+ void ClearExclusive();
+ intptr_t ReadExclusiveW(uword addr, Instr* instr);
+ intptr_t WriteExclusiveW(uword addr, intptr_t value, Instr* instr);
+
+ // Set access to given address to 'exclusive state' for current isolate.
+ static void SetExclusiveAccess(uword addr);
+
+ // Returns true if the current isolate has exclusive access to given address,
+ // returns false otherwise. In either case, set access to given address to
+ // 'open state' for all isolates.
+ // If given addr is NULL, set access to 'open state' for current
+ // isolate (CLREX).
+ static bool HasExclusiveAccessAndOpen(uword addr);
+
// Helper functions to set the conditional flags in the architecture state.
void SetNZFlagsW(int32_t val);
bool CarryFromW(int32_t left, int32_t right, int32_t carry);
« no previous file with comments | « runtime/vm/simulator_arm.cc ('k') | runtime/vm/simulator_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698