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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 case Runtime::kNewObject: | 176 case Runtime::kNewObject: |
177 case Runtime::kNewObjectFromBound: | 177 case Runtime::kNewObjectFromBound: |
178 case Runtime::kNewObjectWithAllocationSite: | 178 case Runtime::kNewObjectWithAllocationSite: |
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::kRegExpInitializeAndCompile: |
187 case Runtime::kRegExpExecMultiple: | 187 case Runtime::kRegExpExecMultiple: |
188 case Runtime::kResolvePossiblyDirectEval: | 188 case Runtime::kResolvePossiblyDirectEval: |
189 case Runtime::kRunMicrotasks: | 189 case Runtime::kRunMicrotasks: |
190 case Runtime::kSetPrototype: | 190 case Runtime::kSetPrototype: |
191 case Runtime::kSetScriptBreakPoint: | 191 case Runtime::kSetScriptBreakPoint: |
192 case Runtime::kSparseJoinWithSeparator: | 192 case Runtime::kSparseJoinWithSeparator: |
193 case Runtime::kStackGuard: | 193 case Runtime::kStackGuard: |
194 case Runtime::kStoreKeyedToSuper_Sloppy: | 194 case Runtime::kStoreKeyedToSuper_Sloppy: |
195 case Runtime::kStoreKeyedToSuper_Strict: | 195 case Runtime::kStoreKeyedToSuper_Strict: |
196 case Runtime::kStoreToSuper_Sloppy: | 196 case Runtime::kStoreToSuper_Sloppy: |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 | 246 |
247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
248 MachineSignature* sig) { | 248 MachineSignature* sig) { |
249 UNIMPLEMENTED(); | 249 UNIMPLEMENTED(); |
250 return NULL; | 250 return NULL; |
251 } | 251 } |
252 #endif // !V8_TURBOFAN_BACKEND | 252 #endif // !V8_TURBOFAN_BACKEND |
253 } | 253 } |
254 } | 254 } |
255 } // namespace v8::internal::compiler | 255 } // namespace v8::internal::compiler |
OLD | NEW |