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

Unified Diff: src/compiler/instruction-selector.h

Issue 677433002: Add floor, ceil, round (truncate) instructions for ia32, x64 (if SSE4.1) and (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Whitespace. Created 6 years, 2 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/compiler/instruction-selector.h
diff --git a/src/compiler/instruction-selector.h b/src/compiler/instruction-selector.h
index 4e916befb19b285628e9bd5ec3f909a643175221..418d7aa3e42760f10934454d6f63b047766eddfd 100644
--- a/src/compiler/instruction-selector.h
+++ b/src/compiler/instruction-selector.h
@@ -12,6 +12,12 @@
#include "src/compiler/machine-operator.h"
#include "src/zone-containers.h"
+
+#define UNSUPPORTED_OPERATOR(node) \
Benedikt Meurer 2014/10/30 11:59:13 Please remove this macro and use UNREACHABLE() in
sigurds 2014/10/30 12:18:27 Done.
+ V8_Fatal(__FILE__, __LINE__, "Unexpected operator #%d:%s @ node #%d", \
+ node->opcode(), node->op()->mnemonic(), node->id());
+
+
namespace v8 {
namespace internal {
namespace compiler {

Powered by Google App Engine
This is Rietveld 408576698