Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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_ |
| OLD | NEW |