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

Unified Diff: runtime/vm/locations.h

Issue 2799373002: Pass a second type argument vector to all type instantiation calls in the VM. (Closed)
Patch Set: addressed comments Created 3 years, 8 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/kernel_to_il.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/locations.h
diff --git a/runtime/vm/locations.h b/runtime/vm/locations.h
index 249726438f3399db2c58dfa6418c2bf47b0b71d2..4a1778f9f52a9574a3f34875fb346f20296264df 100644
--- a/runtime/vm/locations.h
+++ b/runtime/vm/locations.h
@@ -552,7 +552,11 @@ class RegisterSet : public ValueObject {
// Specification of locations for inputs and output.
class LocationSummary : public ZoneAllocated {
public:
- enum ContainsCall { kNoCall, kCall, kCallOnSlowPath };
+ enum ContainsCall {
+ kNoCall, // Used registers must be reserved as tmp.
+ kCall, // Registers have been saved and can be used without reservation.
+ kCallOnSlowPath // Used registers must be reserved as tmp.
+ };
LocationSummary(Zone* zone,
intptr_t input_count,
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698