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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 case Runtime::kFunctionBindArguments: | 160 case Runtime::kFunctionBindArguments: |
161 case Runtime::kGetDefaultReceiver: | 161 case Runtime::kGetDefaultReceiver: |
162 case Runtime::kGetFrameCount: | 162 case Runtime::kGetFrameCount: |
163 case Runtime::kGetOwnProperty: | 163 case Runtime::kGetOwnProperty: |
164 case Runtime::kGetOwnPropertyNames: | 164 case Runtime::kGetOwnPropertyNames: |
165 case Runtime::kGetPropertyNamesFast: | 165 case Runtime::kGetPropertyNamesFast: |
166 case Runtime::kGetPrototype: | 166 case Runtime::kGetPrototype: |
167 case Runtime::kInlineArguments: | 167 case Runtime::kInlineArguments: |
168 case Runtime::kInlineCallFunction: | 168 case Runtime::kInlineCallFunction: |
169 case Runtime::kInlineDateField: | 169 case Runtime::kInlineDateField: |
| 170 case Runtime::kInlineOptimizedGetPrototype: |
170 case Runtime::kInlineRegExpExec: | 171 case Runtime::kInlineRegExpExec: |
171 case Runtime::kInternalSetPrototype: | 172 case Runtime::kInternalSetPrototype: |
172 case Runtime::kInterrupt: | 173 case Runtime::kInterrupt: |
173 case Runtime::kIsPropertyEnumerable: | 174 case Runtime::kIsPropertyEnumerable: |
174 case Runtime::kIsSloppyModeFunction: | 175 case Runtime::kIsSloppyModeFunction: |
175 case Runtime::kLiveEditGatherCompileInfo: | 176 case Runtime::kLiveEditGatherCompileInfo: |
176 case Runtime::kLoadLookupSlot: | 177 case Runtime::kLoadLookupSlot: |
177 case Runtime::kLoadLookupSlotNoReferenceError: | 178 case Runtime::kLoadLookupSlotNoReferenceError: |
178 case Runtime::kMaterializeRegExpLiteral: | 179 case Runtime::kMaterializeRegExpLiteral: |
179 case Runtime::kNewObject: | 180 case Runtime::kNewObject: |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 | 259 |
259 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 260 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
260 MachineSignature* sig) { | 261 MachineSignature* sig) { |
261 UNIMPLEMENTED(); | 262 UNIMPLEMENTED(); |
262 return NULL; | 263 return NULL; |
263 } | 264 } |
264 #endif // !V8_TURBOFAN_BACKEND | 265 #endif // !V8_TURBOFAN_BACKEND |
265 } | 266 } |
266 } | 267 } |
267 } // namespace v8::internal::compiler | 268 } // namespace v8::internal::compiler |
OLD | NEW |