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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 case Runtime::kPushCatchContext: | 187 case Runtime::kPushCatchContext: |
188 case Runtime::kReThrow: | 188 case Runtime::kReThrow: |
189 case Runtime::kStringCompareRT: | 189 case Runtime::kStringCompareRT: |
190 case Runtime::kStringEquals: | 190 case Runtime::kStringEquals: |
191 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? | 191 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? |
192 case Runtime::kTraceEnter: | 192 case Runtime::kTraceEnter: |
193 case Runtime::kTraceExit: | 193 case Runtime::kTraceExit: |
194 return 0; | 194 return 0; |
195 case Runtime::kInlineArguments: | 195 case Runtime::kInlineArguments: |
196 case Runtime::kInlineCallFunction: | 196 case Runtime::kInlineCallFunction: |
| 197 case Runtime::kInlineDefaultConstructorCallSuper: |
197 case Runtime::kInlineGetCallerJSFunction: | 198 case Runtime::kInlineGetCallerJSFunction: |
198 case Runtime::kInlineGetPrototype: | 199 case Runtime::kInlineGetPrototype: |
199 case Runtime::kInlineRegExpExec: | 200 case Runtime::kInlineRegExpExec: |
200 return 1; | 201 return 1; |
201 case Runtime::kInlineDeoptimizeNow: | 202 case Runtime::kInlineDeoptimizeNow: |
202 case Runtime::kInlineThrowNotDateError: | 203 case Runtime::kInlineThrowNotDateError: |
203 return 2; | 204 return 2; |
204 default: | 205 default: |
205 break; | 206 break; |
206 } | 207 } |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 | 263 |
263 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 264 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
264 const MachineSignature* sig) { | 265 const MachineSignature* sig) { |
265 UNIMPLEMENTED(); | 266 UNIMPLEMENTED(); |
266 return NULL; | 267 return NULL; |
267 } | 268 } |
268 #endif // !V8_TURBOFAN_BACKEND | 269 #endif // !V8_TURBOFAN_BACKEND |
269 } // namespace compiler | 270 } // namespace compiler |
270 } // namespace internal | 271 } // namespace internal |
271 } // namespace v8 | 272 } // namespace v8 |
OLD | NEW |