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

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

Issue 670023003: Handle noi18n in deopt. (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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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
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