| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 case Runtime::kNewObjectFromBound: | 183 case Runtime::kNewObjectFromBound: |
| 184 case Runtime::kNewObjectWithAllocationSite: | 184 case Runtime::kNewObjectWithAllocationSite: |
| 185 case Runtime::kObjectFreeze: | 185 case Runtime::kObjectFreeze: |
| 186 case Runtime::kObjectSeal: | 186 case Runtime::kObjectSeal: |
| 187 case Runtime::kOwnKeys: | 187 case Runtime::kOwnKeys: |
| 188 case Runtime::kParseJson: | 188 case Runtime::kParseJson: |
| 189 case Runtime::kPrepareStep: | 189 case Runtime::kPrepareStep: |
| 190 case Runtime::kPreventExtensions: | 190 case Runtime::kPreventExtensions: |
| 191 case Runtime::kPromiseRejectEvent: | 191 case Runtime::kPromiseRejectEvent: |
| 192 case Runtime::kPromiseRevokeReject: | 192 case Runtime::kPromiseRevokeReject: |
| 193 case Runtime::kPushWithContext: |
| 193 case Runtime::kRegExpInitializeAndCompile: | 194 case Runtime::kRegExpInitializeAndCompile: |
| 194 case Runtime::kRegExpExecMultiple: | 195 case Runtime::kRegExpExecMultiple: |
| 195 case Runtime::kResolvePossiblyDirectEval: | 196 case Runtime::kResolvePossiblyDirectEval: |
| 196 case Runtime::kRunMicrotasks: | 197 case Runtime::kRunMicrotasks: |
| 197 case Runtime::kSetPrototype: | 198 case Runtime::kSetPrototype: |
| 198 case Runtime::kSetScriptBreakPoint: | 199 case Runtime::kSetScriptBreakPoint: |
| 199 case Runtime::kSparseJoinWithSeparator: | 200 case Runtime::kSparseJoinWithSeparator: |
| 200 case Runtime::kStackGuard: | 201 case Runtime::kStackGuard: |
| 201 case Runtime::kStoreKeyedToSuper_Sloppy: | 202 case Runtime::kStoreKeyedToSuper_Sloppy: |
| 202 case Runtime::kStoreKeyedToSuper_Strict: | 203 case Runtime::kStoreKeyedToSuper_Strict: |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 | 262 |
| 262 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 263 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 263 MachineSignature* sig) { | 264 MachineSignature* sig) { |
| 264 UNIMPLEMENTED(); | 265 UNIMPLEMENTED(); |
| 265 return NULL; | 266 return NULL; |
| 266 } | 267 } |
| 267 #endif // !V8_TURBOFAN_BACKEND | 268 #endif // !V8_TURBOFAN_BACKEND |
| 268 } | 269 } |
| 269 } | 270 } |
| 270 } // namespace v8::internal::compiler | 271 } // namespace v8::internal::compiler |
| OLD | NEW |