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

Unified Diff: src/register-configuration.h

Issue 2765323002: [deoptimizer] Fill the single precision registers in the deoptimizer entry stub. (Closed)
Patch Set: Created 3 years, 9 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: src/register-configuration.h
diff --git a/src/register-configuration.h b/src/register-configuration.h
index 946c82e56cd4e25709e368a33c7489e339c63d28..c59488444b804f5ca107f1515e873ca37df69f29 100644
--- a/src/register-configuration.h
+++ b/src/register-configuration.h
@@ -67,6 +67,9 @@ class V8_EXPORT_PRIVATE RegisterConfiguration {
int32_t allocatable_double_codes_mask() const {
return allocatable_double_codes_mask_;
}
+ int32_t allocatable_float_codes_mask() const {
+ return allocatable_float_codes_mask_;
+ }
int GetAllocatableGeneralCode(int index) const {
return allocatable_general_codes_[index];
}

Powered by Google App Engine
This is Rietveld 408576698