| 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/linkage.h" | 7 #include "src/compiler/linkage.h" |
| 8 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
| 9 #include "src/compiler/pipeline.h" | 9 #include "src/compiler/pipeline.h" |
| 10 #include "src/scopes.h" | 10 #include "src/scopes.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 switch (function) { | 123 switch (function) { |
| 124 case Runtime::kApply: | 124 case Runtime::kApply: |
| 125 case Runtime::kArrayBufferNeuter: | 125 case Runtime::kArrayBufferNeuter: |
| 126 case Runtime::kArrayConcat: | 126 case Runtime::kArrayConcat: |
| 127 case Runtime::kBasicJSONStringify: | 127 case Runtime::kBasicJSONStringify: |
| 128 case Runtime::kCheckExecutionState: | 128 case Runtime::kCheckExecutionState: |
| 129 case Runtime::kCollectStackTrace: | 129 case Runtime::kCollectStackTrace: |
| 130 case Runtime::kCompileLazy: | 130 case Runtime::kCompileLazy: |
| 131 case Runtime::kCompileOptimized: | 131 case Runtime::kCompileOptimized: |
| 132 case Runtime::kCompileString: | 132 case Runtime::kCompileString: |
| 133 case Runtime::kCreateArrayLiteral: |
| 133 case Runtime::kCreateObjectLiteral: | 134 case Runtime::kCreateObjectLiteral: |
| 134 case Runtime::kDebugBreak: | 135 case Runtime::kDebugBreak: |
| 135 case Runtime::kDataViewSetInt8: | 136 case Runtime::kDataViewSetInt8: |
| 136 case Runtime::kDataViewSetUint8: | 137 case Runtime::kDataViewSetUint8: |
| 137 case Runtime::kDataViewSetInt16: | 138 case Runtime::kDataViewSetInt16: |
| 138 case Runtime::kDataViewSetUint16: | 139 case Runtime::kDataViewSetUint16: |
| 139 case Runtime::kDataViewSetInt32: | 140 case Runtime::kDataViewSetInt32: |
| 140 case Runtime::kDataViewSetUint32: | 141 case Runtime::kDataViewSetUint32: |
| 141 case Runtime::kDataViewSetFloat32: | 142 case Runtime::kDataViewSetFloat32: |
| 142 case Runtime::kDataViewSetFloat64: | 143 case Runtime::kDataViewSetFloat64: |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 265 |
| 265 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 266 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 266 MachineSignature* sig) { | 267 MachineSignature* sig) { |
| 267 UNIMPLEMENTED(); | 268 UNIMPLEMENTED(); |
| 268 return NULL; | 269 return NULL; |
| 269 } | 270 } |
| 270 #endif // !V8_TURBOFAN_BACKEND | 271 #endif // !V8_TURBOFAN_BACKEND |
| 271 } | 272 } |
| 272 } | 273 } |
| 273 } // namespace v8::internal::compiler | 274 } // namespace v8::internal::compiler |
| OLD | NEW |