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

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

Issue 953563002: Implement experimental exponentiation operator (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reorganize mjsunit tests Created 5 years, 9 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/js-generic-lowering.cc ('k') | src/compiler/js-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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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_JS_OPERATOR_H_ 5 #ifndef V8_COMPILER_JS_OPERATOR_H_
6 #define V8_COMPILER_JS_OPERATOR_H_ 6 #define V8_COMPILER_JS_OPERATOR_H_
7 7
8 #include "src/runtime/runtime.h" 8 #include "src/runtime/runtime.h"
9 #include "src/unique.h" 9 #include "src/unique.h"
10 10
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 const Operator* BitwiseXor(); 211 const Operator* BitwiseXor();
212 const Operator* BitwiseAnd(); 212 const Operator* BitwiseAnd();
213 const Operator* ShiftLeft(); 213 const Operator* ShiftLeft();
214 const Operator* ShiftRight(); 214 const Operator* ShiftRight();
215 const Operator* ShiftRightLogical(); 215 const Operator* ShiftRightLogical();
216 const Operator* Add(); 216 const Operator* Add();
217 const Operator* Subtract(); 217 const Operator* Subtract();
218 const Operator* Multiply(); 218 const Operator* Multiply();
219 const Operator* Divide(); 219 const Operator* Divide();
220 const Operator* Modulus(); 220 const Operator* Modulus();
221 const Operator* Exponentiate();
titzer 2015/02/24 18:46:22 If this is an experimental feature, it'd be good t
221 222
222 const Operator* UnaryNot(); 223 const Operator* UnaryNot();
223 const Operator* ToBoolean(); 224 const Operator* ToBoolean();
224 const Operator* ToNumber(); 225 const Operator* ToNumber();
225 const Operator* ToString(); 226 const Operator* ToString();
226 const Operator* ToName(); 227 const Operator* ToName();
227 const Operator* ToObject(); 228 const Operator* ToObject();
228 const Operator* Yield(); 229 const Operator* Yield();
229 230
230 const Operator* Create(); 231 const Operator* Create();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 Zone* const zone_; 270 Zone* const zone_;
270 271
271 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); 272 DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder);
272 }; 273 };
273 274
274 } // namespace compiler 275 } // namespace compiler
275 } // namespace internal 276 } // namespace internal
276 } // namespace v8 277 } // namespace v8
277 278
278 #endif // V8_COMPILER_JS_OPERATOR_H_ 279 #endif // V8_COMPILER_JS_OPERATOR_H_
OLDNEW
« no previous file with comments | « src/compiler/js-generic-lowering.cc ('k') | src/compiler/js-operator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698