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

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

Issue 668173002: Add Float64Round operator. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Introduce several machine ops instead of round + mode param. 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 c4cf18bc770a9769bb32b9cb347ddc73fcb48829..1f10f13d0016e445146fdc4959ededfbc7ef2b49 100644
--- a/src/compiler/instruction-selector.h
+++ b/src/compiler/instruction-selector.h
@@ -88,6 +88,8 @@ class InstructionSelector FINAL {
// Checks if {node} is currently live.
bool IsLive(Node* node) const { return !IsDefined(node) && IsUsed(node); }
+ static SupportedOperators GetSupportedOperators();
Benedikt Meurer 2014/10/23 07:11:14 This should take a CpuFeatures parameter, because
sigurds 2014/10/23 10:37:56 As discussed, I'll add a todo.
+
private:
friend class OperandGenerator;

Powered by Google App Engine
This is Rietveld 408576698