Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: src/compiler/linkage.cc

Issue 639763004: [turbofan] Add deopt for %StringMatch (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698