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

Unified Diff: src/objects-inl.h

Issue 2819653002: Merged: Squashed multiple commits. (Closed)
Patch Set: 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 | « src/objects.cc ('k') | test/mjsunit/regress/regress-crbug-709753.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-inl.h
diff --git a/src/objects-inl.h b/src/objects-inl.h
index 3aa26c5601690e1ae5e5270cd1e268abb0cdc1ec..1f13ca67708bbf099ac5f7202908728894b05f3e 100644
--- a/src/objects-inl.h
+++ b/src/objects-inl.h
@@ -1970,6 +1970,10 @@ void Oddball::set_to_number_raw(double value) {
WRITE_DOUBLE_FIELD(this, kToNumberRawOffset, value);
}
+void Oddball::set_to_number_raw_as_bits(uint64_t bits) {
+ WRITE_UINT64_FIELD(this, kToNumberRawOffset, bits);
+}
+
ACCESSORS(Oddball, to_string, String, kToStringOffset)
ACCESSORS(Oddball, to_number, Object, kToNumberOffset)
ACCESSORS(Oddball, type_of, String, kTypeOfOffset)
« no previous file with comments | « src/objects.cc ('k') | test/mjsunit/regress/regress-crbug-709753.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698