| OLD | NEW |
| 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/code-stubs.h" | 5 #include "src/code-stubs.h" |
| 6 #include "src/compiler.h" | 6 #include "src/compiler.h" |
| 7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/linkage.h" | 8 #include "src/compiler/linkage.h" |
| 9 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
| 10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 case Runtime::kForInDone: | 200 case Runtime::kForInDone: |
| 201 case Runtime::kForInStep: | 201 case Runtime::kForInStep: |
| 202 case Runtime::kGetOriginalConstructor: | 202 case Runtime::kGetOriginalConstructor: |
| 203 case Runtime::kNewArguments: | 203 case Runtime::kNewArguments: |
| 204 case Runtime::kNewClosure: | 204 case Runtime::kNewClosure: |
| 205 case Runtime::kNewFunctionContext: | 205 case Runtime::kNewFunctionContext: |
| 206 case Runtime::kNewRestParamSlow: | 206 case Runtime::kNewRestParamSlow: |
| 207 case Runtime::kPushBlockContext: | 207 case Runtime::kPushBlockContext: |
| 208 case Runtime::kPushCatchContext: | 208 case Runtime::kPushCatchContext: |
| 209 case Runtime::kReThrow: | 209 case Runtime::kReThrow: |
| 210 case Runtime::kStringCompareRT: | 210 case Runtime::kStringCompare: |
| 211 case Runtime::kStringEquals: | 211 case Runtime::kStringEquals: |
| 212 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? | 212 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? |
| 213 case Runtime::kTraceEnter: | 213 case Runtime::kTraceEnter: |
| 214 case Runtime::kTraceExit: | 214 case Runtime::kTraceExit: |
| 215 return 0; | 215 return 0; |
| 216 case Runtime::kInlineArguments: | 216 case Runtime::kInlineArguments: |
| 217 case Runtime::kInlineCallFunction: | 217 case Runtime::kInlineCallFunction: |
| 218 case Runtime::kInlineDefaultConstructorCallSuper: | 218 case Runtime::kInlineDefaultConstructorCallSuper: |
| 219 case Runtime::kInlineGetCallerJSFunction: | 219 case Runtime::kInlineGetCallerJSFunction: |
| 220 case Runtime::kInlineGetPrototype: | 220 case Runtime::kInlineGetPrototype: |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 Operator::Properties properties, MachineType return_type) { | 280 Operator::Properties properties, MachineType return_type) { |
| 281 UNIMPLEMENTED(); | 281 UNIMPLEMENTED(); |
| 282 return NULL; | 282 return NULL; |
| 283 } | 283 } |
| 284 | 284 |
| 285 | 285 |
| 286 #endif // !V8_TURBOFAN_BACKEND | 286 #endif // !V8_TURBOFAN_BACKEND |
| 287 } // namespace compiler | 287 } // namespace compiler |
| 288 } // namespace internal | 288 } // namespace internal |
| 289 } // namespace v8 | 289 } // namespace v8 |
| OLD | NEW |