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

Unified Diff: runtime/vm/assembler_x64.h

Issue 1263513002: VM: Load allocation-top and -end via Thread. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: arm, arm64 and mips Created 5 years, 5 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
Index: runtime/vm/assembler_x64.h
diff --git a/runtime/vm/assembler_x64.h b/runtime/vm/assembler_x64.h
index e0c68535f3d840980d0ab70b9a26ad829d5a7b51..3194083410a28c6a30974c88129c22c94019d85d 100644
--- a/runtime/vm/assembler_x64.h
+++ b/runtime/vm/assembler_x64.h
@@ -1013,14 +1013,16 @@ class Assembler : public ValueObject {
Label* failure,
bool near_jump,
Register instance_reg,
- Register pp);
+ Register pp,
+ Register temp);
void TryAllocateArray(intptr_t cid,
intptr_t instance_size,
Label* failure,
bool near_jump,
Register instance,
- Register end_address);
+ Register end_address,
+ Register temp);
// Debugging and bringup support.
void Stop(const char* message, bool fixed_length_encoding = false);

Powered by Google App Engine
This is Rietveld 408576698