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

Unified Diff: src/assembler.h

Issue 7307030: Implement ICs for FastDoubleArray loads and stores (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix nit Created 9 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: src/assembler.h
diff --git a/src/assembler.h b/src/assembler.h
index bced11fec2e287d871a582bef173e62172ba9ac0..42788e62a9a292f48a51a5b9a831f0e1e1c81047 100644
--- a/src/assembler.h
+++ b/src/assembler.h
@@ -36,6 +36,7 @@
#define V8_ASSEMBLER_H_
#include "allocation.h"
+#include "api.h"
#include "gdb-jit.h"
#include "runtime.h"
#include "token.h"
@@ -59,6 +60,14 @@ class AssemblerBase: public Malloced {
int jit_cookie_;
};
+static const uint32_t kHoleNanUpper32 = 0x7FFFFFFF;
+static const uint32_t kHoleNanLower32 = 0xFFFFFFFF;
+static const uint32_t kCanonicalNonHoleNanUpper32 = 0x7FF10000;
+static const uint32_t kCanonicalNonHoleNanLower32 = 0xFFFFFFFF;
+
+extern uint64_t kHoleNanInt64;
+extern uint64_t kCanonicalNonHoleNanInt64;
+
// -----------------------------------------------------------------------------
// Common double constants.
@@ -71,6 +80,8 @@ class DoubleConstant: public AllStatic {
static const double uint8_max_value;
static const double negative_infinity;
static const double nan;
+ static const double canonical_non_hole_nan;
+ static const double the_hole_nan;
};
@@ -629,7 +640,8 @@ class ExternalReference BASE_EMBEDDED {
static ExternalReference address_of_zero();
static ExternalReference address_of_uint8_max_value();
static ExternalReference address_of_negative_infinity();
- static ExternalReference address_of_nan();
+ static ExternalReference address_of_canonical_non_hole_nan();
+ static ExternalReference address_of_the_hole_nan();
static ExternalReference math_sin_double_function(Isolate* isolate);
static ExternalReference math_cos_double_function(Isolate* isolate);

Powered by Google App Engine
This is Rietveld 408576698