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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 case Runtime::kSetScriptBreakPoint: | 188 case Runtime::kSetScriptBreakPoint: |
189 case Runtime::kSparseJoinWithSeparator: | 189 case Runtime::kSparseJoinWithSeparator: |
190 case Runtime::kStackGuard: | 190 case Runtime::kStackGuard: |
191 case Runtime::kStoreKeyedToSuper_Sloppy: | 191 case Runtime::kStoreKeyedToSuper_Sloppy: |
192 case Runtime::kStoreKeyedToSuper_Strict: | 192 case Runtime::kStoreKeyedToSuper_Strict: |
193 case Runtime::kStoreToSuper_Sloppy: | 193 case Runtime::kStoreToSuper_Sloppy: |
194 case Runtime::kStoreToSuper_Strict: | 194 case Runtime::kStoreToSuper_Strict: |
195 case Runtime::kStoreLookupSlot: | 195 case Runtime::kStoreLookupSlot: |
196 case Runtime::kStringBuilderConcat: | 196 case Runtime::kStringBuilderConcat: |
197 case Runtime::kStringBuilderJoin: | 197 case Runtime::kStringBuilderJoin: |
| 198 case Runtime::kStringMatch: |
198 case Runtime::kStringReplaceGlobalRegExpWithString: | 199 case Runtime::kStringReplaceGlobalRegExpWithString: |
199 case Runtime::kThrowNonMethodError: | 200 case Runtime::kThrowNonMethodError: |
200 case Runtime::kThrowNotDateError: | 201 case Runtime::kThrowNotDateError: |
201 case Runtime::kThrowReferenceError: | 202 case Runtime::kThrowReferenceError: |
202 case Runtime::kThrowUnsupportedSuperError: | 203 case Runtime::kThrowUnsupportedSuperError: |
203 case Runtime::kThrow: | 204 case Runtime::kThrow: |
204 case Runtime::kTypedArraySetFastCases: | 205 case Runtime::kTypedArraySetFastCases: |
205 case Runtime::kTypedArrayInitializeFromArrayLike: | 206 case Runtime::kTypedArrayInitializeFromArrayLike: |
206 #ifdef V8_I18N_SUPPORT | 207 #ifdef V8_I18N_SUPPORT |
207 case Runtime::kGetImplFromInitializedIntlObject: | 208 case Runtime::kGetImplFromInitializedIntlObject: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 | 242 |
242 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 243 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
243 MachineSignature* sig) { | 244 MachineSignature* sig) { |
244 UNIMPLEMENTED(); | 245 UNIMPLEMENTED(); |
245 return NULL; | 246 return NULL; |
246 } | 247 } |
247 #endif // !V8_TURBOFAN_BACKEND | 248 #endif // !V8_TURBOFAN_BACKEND |
248 } | 249 } |
249 } | 250 } |
250 } // namespace v8::internal::compiler | 251 } // namespace v8::internal::compiler |
OLD | NEW |