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

Side by Side Diff: src/compiler/simplified-operator.h

Issue 2170343002: [turbofan] Change Float64Max/Float64Min to JavaScript semantics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mips/mips64 ports. Created 4 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 unified diff | Download patch
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | 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 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_
6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "src/compiler/operator.h" 10 #include "src/compiler/operator.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 const Operator* NumberAtanh(); 211 const Operator* NumberAtanh();
212 const Operator* NumberCbrt(); 212 const Operator* NumberCbrt();
213 const Operator* NumberCos(); 213 const Operator* NumberCos();
214 const Operator* NumberCosh(); 214 const Operator* NumberCosh();
215 const Operator* NumberExp(); 215 const Operator* NumberExp();
216 const Operator* NumberExpm1(); 216 const Operator* NumberExpm1();
217 const Operator* NumberLog(); 217 const Operator* NumberLog();
218 const Operator* NumberLog1p(); 218 const Operator* NumberLog1p();
219 const Operator* NumberLog10(); 219 const Operator* NumberLog10();
220 const Operator* NumberLog2(); 220 const Operator* NumberLog2();
221 const Operator* NumberMax();
222 const Operator* NumberMin();
221 const Operator* NumberPow(); 223 const Operator* NumberPow();
222 const Operator* NumberRound(); 224 const Operator* NumberRound();
223 const Operator* NumberSign(); 225 const Operator* NumberSign();
224 const Operator* NumberSin(); 226 const Operator* NumberSin();
225 const Operator* NumberSinh(); 227 const Operator* NumberSinh();
226 const Operator* NumberSqrt(); 228 const Operator* NumberSqrt();
227 const Operator* NumberTan(); 229 const Operator* NumberTan();
228 const Operator* NumberTanh(); 230 const Operator* NumberTanh();
229 const Operator* NumberTrunc(); 231 const Operator* NumberTrunc();
230 const Operator* NumberToInt32(); 232 const Operator* NumberToInt32();
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 Zone* const zone_; 325 Zone* const zone_;
324 326
325 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); 327 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder);
326 }; 328 };
327 329
328 } // namespace compiler 330 } // namespace compiler
329 } // namespace internal 331 } // namespace internal
330 } // namespace v8 332 } // namespace v8
331 333
332 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ 334 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/simplified-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698