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/compiler/linkage.h" | 5 #include "src/compiler/linkage.h" |
6 | 6 |
7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
8 #include "src/compiler.h" | 8 #include "src/compiler.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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 case Runtime::kDebugGetLoadedScripts: | 148 case Runtime::kDebugGetLoadedScripts: |
149 case Runtime::kDebugGetPropertyDetails: | 149 case Runtime::kDebugGetPropertyDetails: |
150 case Runtime::kDebugPromiseEvent: | 150 case Runtime::kDebugPromiseEvent: |
151 case Runtime::kDefineAccessorPropertyUnchecked: | 151 case Runtime::kDefineAccessorPropertyUnchecked: |
152 case Runtime::kDefineDataPropertyUnchecked: | 152 case Runtime::kDefineDataPropertyUnchecked: |
153 case Runtime::kDeleteProperty: | 153 case Runtime::kDeleteProperty: |
154 case Runtime::kDeoptimizeFunction: | 154 case Runtime::kDeoptimizeFunction: |
155 case Runtime::kFunctionBindArguments: | 155 case Runtime::kFunctionBindArguments: |
156 case Runtime::kGetDefaultReceiver: | 156 case Runtime::kGetDefaultReceiver: |
157 case Runtime::kGetFrameCount: | 157 case Runtime::kGetFrameCount: |
158 case Runtime::kGetImplFromInitializedIntlObject: | |
159 case Runtime::kGetOwnProperty: | 158 case Runtime::kGetOwnProperty: |
160 case Runtime::kGetOwnPropertyNames: | 159 case Runtime::kGetOwnPropertyNames: |
161 case Runtime::kGetPropertyNamesFast: | 160 case Runtime::kGetPropertyNamesFast: |
162 case Runtime::kGetPrototype: | 161 case Runtime::kGetPrototype: |
163 case Runtime::kInlineArguments: | 162 case Runtime::kInlineArguments: |
164 case Runtime::kInlineCallFunction: | 163 case Runtime::kInlineCallFunction: |
165 case Runtime::kInlineDateField: | 164 case Runtime::kInlineDateField: |
166 case Runtime::kInlineRegExpExec: | 165 case Runtime::kInlineRegExpExec: |
167 case Runtime::kInternalSetPrototype: | 166 case Runtime::kInternalSetPrototype: |
168 case Runtime::kInterrupt: | 167 case Runtime::kInterrupt: |
(...skipping 28 matching lines...) Expand all Loading... |
197 case Runtime::kStringBuilderConcat: | 196 case Runtime::kStringBuilderConcat: |
198 case Runtime::kStringBuilderJoin: | 197 case Runtime::kStringBuilderJoin: |
199 case Runtime::kStringReplaceGlobalRegExpWithString: | 198 case Runtime::kStringReplaceGlobalRegExpWithString: |
200 case Runtime::kThrowNonMethodError: | 199 case Runtime::kThrowNonMethodError: |
201 case Runtime::kThrowNotDateError: | 200 case Runtime::kThrowNotDateError: |
202 case Runtime::kThrowReferenceError: | 201 case Runtime::kThrowReferenceError: |
203 case Runtime::kThrowUnsupportedSuperError: | 202 case Runtime::kThrowUnsupportedSuperError: |
204 case Runtime::kThrow: | 203 case Runtime::kThrow: |
205 case Runtime::kTypedArraySetFastCases: | 204 case Runtime::kTypedArraySetFastCases: |
206 case Runtime::kTypedArrayInitializeFromArrayLike: | 205 case Runtime::kTypedArrayInitializeFromArrayLike: |
| 206 #ifdef V8_I18N_SUPPORT |
| 207 case Runtime::kGetImplFromInitializedIntlObject: |
| 208 #endif |
207 return true; | 209 return true; |
208 default: | 210 default: |
209 return false; | 211 return false; |
210 } | 212 } |
211 } | 213 } |
212 | 214 |
213 | 215 |
214 //============================================================================== | 216 //============================================================================== |
215 // Provide unimplemented methods on unsupported architectures, to at least link. | 217 // Provide unimplemented methods on unsupported architectures, to at least link. |
216 //============================================================================== | 218 //============================================================================== |
(...skipping 22 matching lines...) Expand all Loading... |
239 | 241 |
240 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 242 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
241 MachineSignature* sig) { | 243 MachineSignature* sig) { |
242 UNIMPLEMENTED(); | 244 UNIMPLEMENTED(); |
243 return NULL; | 245 return NULL; |
244 } | 246 } |
245 #endif // !V8_TURBOFAN_BACKEND | 247 #endif // !V8_TURBOFAN_BACKEND |
246 } | 248 } |
247 } | 249 } |
248 } // namespace v8::internal::compiler | 250 } // namespace v8::internal::compiler |
OLD | NEW |