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

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

Issue 707443003: [turbofan] Fix deoptimization of uint8, uint16 inputs. (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 | « src/compiler/code-generator.cc ('k') | test/mjsunit/compiler/regress-uint8-deopt.js » ('j') | 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/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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 case Runtime::kObjectFreeze: 179 case Runtime::kObjectFreeze:
180 case Runtime::kOwnKeys: 180 case Runtime::kOwnKeys:
181 case Runtime::kParseJson: 181 case Runtime::kParseJson:
182 case Runtime::kPrepareStep: 182 case Runtime::kPrepareStep:
183 case Runtime::kPreventExtensions: 183 case Runtime::kPreventExtensions:
184 case Runtime::kPromiseRejectEvent: 184 case Runtime::kPromiseRejectEvent:
185 case Runtime::kPromiseRevokeReject: 185 case Runtime::kPromiseRevokeReject:
186 case Runtime::kRegExpCompile: 186 case Runtime::kRegExpCompile:
187 case Runtime::kRegExpExecMultiple: 187 case Runtime::kRegExpExecMultiple:
188 case Runtime::kResolvePossiblyDirectEval: 188 case Runtime::kResolvePossiblyDirectEval:
189 case Runtime::kRunMicrotasks:
189 case Runtime::kSetPrototype: 190 case Runtime::kSetPrototype:
190 case Runtime::kSetScriptBreakPoint: 191 case Runtime::kSetScriptBreakPoint:
191 case Runtime::kSparseJoinWithSeparator: 192 case Runtime::kSparseJoinWithSeparator:
192 case Runtime::kStackGuard: 193 case Runtime::kStackGuard:
193 case Runtime::kStoreKeyedToSuper_Sloppy: 194 case Runtime::kStoreKeyedToSuper_Sloppy:
194 case Runtime::kStoreKeyedToSuper_Strict: 195 case Runtime::kStoreKeyedToSuper_Strict:
195 case Runtime::kStoreToSuper_Sloppy: 196 case Runtime::kStoreToSuper_Sloppy:
196 case Runtime::kStoreToSuper_Strict: 197 case Runtime::kStoreToSuper_Strict:
197 case Runtime::kStoreLookupSlot: 198 case Runtime::kStoreLookupSlot:
198 case Runtime::kStringBuilderConcat: 199 case Runtime::kStringBuilderConcat:
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 246
246 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 247 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
247 MachineSignature* sig) { 248 MachineSignature* sig) {
248 UNIMPLEMENTED(); 249 UNIMPLEMENTED();
249 return NULL; 250 return NULL;
250 } 251 }
251 #endif // !V8_TURBOFAN_BACKEND 252 #endif // !V8_TURBOFAN_BACKEND
252 } 253 }
253 } 254 }
254 } // namespace v8::internal::compiler 255 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/compiler/code-generator.cc ('k') | test/mjsunit/compiler/regress-uint8-deopt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698