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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 case Runtime::kDataViewGetUint16: | 145 case Runtime::kDataViewGetUint16: |
146 case Runtime::kDataViewGetInt32: | 146 case Runtime::kDataViewGetInt32: |
147 case Runtime::kDataViewGetUint32: | 147 case Runtime::kDataViewGetUint32: |
148 case Runtime::kDataViewGetFloat32: | 148 case Runtime::kDataViewGetFloat32: |
149 case Runtime::kDataViewGetFloat64: | 149 case Runtime::kDataViewGetFloat64: |
150 case Runtime::kDebugEvaluate: | 150 case Runtime::kDebugEvaluate: |
151 case Runtime::kDebugEvaluateGlobal: | 151 case Runtime::kDebugEvaluateGlobal: |
152 case Runtime::kDebugGetLoadedScripts: | 152 case Runtime::kDebugGetLoadedScripts: |
153 case Runtime::kDebugGetPropertyDetails: | 153 case Runtime::kDebugGetPropertyDetails: |
154 case Runtime::kDebugPromiseEvent: | 154 case Runtime::kDebugPromiseEvent: |
155 case Runtime::kDefaultConstructorSuperCall: | |
156 case Runtime::kDefineAccessorPropertyUnchecked: | 155 case Runtime::kDefineAccessorPropertyUnchecked: |
157 case Runtime::kDefineDataPropertyUnchecked: | 156 case Runtime::kDefineDataPropertyUnchecked: |
158 case Runtime::kDeleteProperty: | 157 case Runtime::kDeleteProperty: |
159 case Runtime::kDeliverObservationChangeRecords: | |
160 case Runtime::kDeoptimizeFunction: | 158 case Runtime::kDeoptimizeFunction: |
161 case Runtime::kFunctionBindArguments: | 159 case Runtime::kFunctionBindArguments: |
162 case Runtime::kGetDefaultReceiver: | 160 case Runtime::kGetDefaultReceiver: |
163 case Runtime::kGetFrameCount: | 161 case Runtime::kGetFrameCount: |
164 case Runtime::kGetFrameDetails: | |
165 case Runtime::kGetOwnProperty: | 162 case Runtime::kGetOwnProperty: |
166 case Runtime::kGetOwnPropertyNames: | 163 case Runtime::kGetOwnPropertyNames: |
167 case Runtime::kGetPropertyNamesFast: | 164 case Runtime::kGetPropertyNamesFast: |
168 case Runtime::kGetPrototype: | 165 case Runtime::kGetPrototype: |
169 case Runtime::kInlineArguments: | 166 case Runtime::kInlineArguments: |
170 case Runtime::kInlineCallFunction: | 167 case Runtime::kInlineCallFunction: |
171 case Runtime::kInlineDateField: | 168 case Runtime::kInlineDateField: |
172 case Runtime::kInlineRegExpExec: | 169 case Runtime::kInlineRegExpExec: |
173 case Runtime::kInternalSetPrototype: | 170 case Runtime::kInternalSetPrototype: |
174 case Runtime::kInterrupt: | 171 case Runtime::kInterrupt: |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 | 257 |
261 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 258 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
262 MachineSignature* sig) { | 259 MachineSignature* sig) { |
263 UNIMPLEMENTED(); | 260 UNIMPLEMENTED(); |
264 return NULL; | 261 return NULL; |
265 } | 262 } |
266 #endif // !V8_TURBOFAN_BACKEND | 263 #endif // !V8_TURBOFAN_BACKEND |
267 } | 264 } |
268 } | 265 } |
269 } // namespace v8::internal::compiler | 266 } // namespace v8::internal::compiler |
OLD | NEW |