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

Side by Side Diff: src/compiler/typer.cc

Issue 656803003: Add typing for Int32MulHigh. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/compiler/graph-inl.h" 5 #include "src/compiler/graph-inl.h"
6 #include "src/compiler/js-operator.h" 6 #include "src/compiler/js-operator.h"
7 #include "src/compiler/node.h" 7 #include "src/compiler/node.h"
8 #include "src/compiler/node-properties-inl.h" 8 #include "src/compiler/node-properties-inl.h"
9 #include "src/compiler/node-properties.h" 9 #include "src/compiler/node-properties.h"
10 #include "src/compiler/simplified-operator.h" 10 #include "src/compiler/simplified-operator.h"
(...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 Bounds Typer::Visitor::TypeInt32SubWithOverflow(Node* node) { 924 Bounds Typer::Visitor::TypeInt32SubWithOverflow(Node* node) {
925 return Bounds(Type::Internal()); 925 return Bounds(Type::Internal());
926 } 926 }
927 927
928 928
929 Bounds Typer::Visitor::TypeInt32Mul(Node* node) { 929 Bounds Typer::Visitor::TypeInt32Mul(Node* node) {
930 return Bounds(Type::Integral32()); 930 return Bounds(Type::Integral32());
931 } 931 }
932 932
933 933
934 Bounds Typer::Visitor::TypeInt32MulHigh(Node* node) {
935 return Bounds(Type::Integral32());
936 }
937
938
934 Bounds Typer::Visitor::TypeInt32Div(Node* node) { 939 Bounds Typer::Visitor::TypeInt32Div(Node* node) {
935 return Bounds(Type::Integral32()); 940 return Bounds(Type::Integral32());
936 } 941 }
937 942
938 943
939 Bounds Typer::Visitor::TypeInt32Mod(Node* node) { 944 Bounds Typer::Visitor::TypeInt32Mod(Node* node) {
940 return Bounds(Type::Integral32()); 945 return Bounds(Type::Integral32());
941 } 946 }
942 947
943 948
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1216 } 1221 }
1217 1222
1218 1223
1219 void Typer::DecorateGraph(Graph* graph) { 1224 void Typer::DecorateGraph(Graph* graph) {
1220 graph->AddDecorator(new (zone()) TyperDecorator(this)); 1225 graph->AddDecorator(new (zone()) TyperDecorator(this));
1221 } 1226 }
1222 1227
1223 } 1228 }
1224 } 1229 }
1225 } // namespace v8::internal::compiler 1230 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698