| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 case Runtime::kObjectFreeze: | 179 case Runtime::kObjectFreeze: |
| 180 case Runtime::kOwnKeys: | 180 case Runtime::kOwnKeys: |
| 181 case Runtime::kParseJson: | 181 case Runtime::kParseJson: |
| 182 case Runtime::kPrepareStep: | 182 case Runtime::kPrepareStep: |
| 183 case Runtime::kPreventExtensions: | 183 case Runtime::kPreventExtensions: |
| 184 case Runtime::kPromiseRejectEvent: | 184 case Runtime::kPromiseRejectEvent: |
| 185 case Runtime::kPromiseRevokeReject: | 185 case Runtime::kPromiseRevokeReject: |
| 186 case Runtime::kRegExpCompile: | 186 case Runtime::kRegExpCompile: |
| 187 case Runtime::kRegExpExecMultiple: | 187 case Runtime::kRegExpExecMultiple: |
| 188 case Runtime::kResolvePossiblyDirectEval: | 188 case Runtime::kResolvePossiblyDirectEval: |
| 189 case Runtime::kRunMicrotasks: |
| 189 case Runtime::kSetPrototype: | 190 case Runtime::kSetPrototype: |
| 190 case Runtime::kSetScriptBreakPoint: | 191 case Runtime::kSetScriptBreakPoint: |
| 191 case Runtime::kSparseJoinWithSeparator: | 192 case Runtime::kSparseJoinWithSeparator: |
| 192 case Runtime::kStackGuard: | 193 case Runtime::kStackGuard: |
| 193 case Runtime::kStoreKeyedToSuper_Sloppy: | 194 case Runtime::kStoreKeyedToSuper_Sloppy: |
| 194 case Runtime::kStoreKeyedToSuper_Strict: | 195 case Runtime::kStoreKeyedToSuper_Strict: |
| 195 case Runtime::kStoreToSuper_Sloppy: | 196 case Runtime::kStoreToSuper_Sloppy: |
| 196 case Runtime::kStoreToSuper_Strict: | 197 case Runtime::kStoreToSuper_Strict: |
| 197 case Runtime::kStoreLookupSlot: | 198 case Runtime::kStoreLookupSlot: |
| 198 case Runtime::kStringBuilderConcat: | 199 case Runtime::kStringBuilderConcat: |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 | 246 |
| 246 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 247 MachineSignature* sig) { | 248 MachineSignature* sig) { |
| 248 UNIMPLEMENTED(); | 249 UNIMPLEMENTED(); |
| 249 return NULL; | 250 return NULL; |
| 250 } | 251 } |
| 251 #endif // !V8_TURBOFAN_BACKEND | 252 #endif // !V8_TURBOFAN_BACKEND |
| 252 } | 253 } |
| 253 } | 254 } |
| 254 } // namespace v8::internal::compiler | 255 } // namespace v8::internal::compiler |
| OLD | NEW |