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

Unified Diff: src/compiler/machine-operator.h

Issue 435923002: TF: Rename ConvertXToY machine operators to ChangeXToY. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
« no previous file with comments | « src/compiler/machine-node-factory.h ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/machine-operator.h
diff --git a/src/compiler/machine-operator.h b/src/compiler/machine-operator.h
index 7fc9b933067b2a35b11fe0bc76b583203ae662cb..84f8f5470c8a3535df3ecafde979ac3d3adf2c15 100644
--- a/src/compiler/machine-operator.h
+++ b/src/compiler/machine-operator.h
@@ -147,10 +147,10 @@ class MachineOperatorBuilder {
// defined for these operators, since they are intended only for use with
// integers.
// TODO(titzer): rename ConvertXXX to ChangeXXX in machine operators.
- Operator* ConvertInt32ToFloat64() { UNOP(ConvertInt32ToFloat64); }
- Operator* ConvertUint32ToFloat64() { UNOP(ConvertUint32ToFloat64); }
- Operator* ConvertFloat64ToInt32() { UNOP(ConvertFloat64ToInt32); }
- Operator* ConvertFloat64ToUint32() { UNOP(ConvertFloat64ToUint32); }
+ Operator* ChangeInt32ToFloat64() { UNOP(ChangeInt32ToFloat64); }
+ Operator* ChangeUint32ToFloat64() { UNOP(ChangeUint32ToFloat64); }
+ Operator* ChangeFloat64ToInt32() { UNOP(ChangeFloat64ToInt32); }
+ Operator* ChangeFloat64ToUint32() { UNOP(ChangeFloat64ToUint32); }
// Floating point operators always operate with IEEE 754 round-to-nearest.
Operator* Float64Add() { BINOP_C(Float64Add); }
« no previous file with comments | « src/compiler/machine-node-factory.h ('k') | src/compiler/opcodes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698