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

Side by Side Diff: src/lithium-codegen.cc

Issue 263803005: Fix crash in debug builds introduced with r21110. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 7 months 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/lithium-codegen.h ('k') | src/mips/lithium-codegen-mips.h » ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 "v8.h" 5 #include "v8.h"
6 6
7 #include "lithium-codegen.h" 7 #include "lithium-codegen.h"
8 8
9 #if V8_TARGET_ARCH_IA32 9 #if V8_TARGET_ARCH_IA32
10 #include "ia32/lithium-ia32.h" 10 #include "ia32/lithium-ia32.h"
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 } 203 }
204 for (int i = 0; i < objects.length(); i++) { 204 for (int i = 0; i < objects.length(); i++) {
205 AddWeakObjectToCodeDependency(isolate(), objects.at(i), code); 205 AddWeakObjectToCodeDependency(isolate(), objects.at(i), code);
206 } 206 }
207 for (int i = 0; i < cells.length(); i++) { 207 for (int i = 0; i < cells.length(); i++) {
208 AddWeakObjectToCodeDependency(isolate(), cells.at(i), code); 208 AddWeakObjectToCodeDependency(isolate(), cells.at(i), code);
209 } 209 }
210 } 210 }
211 211
212 212
213 void LCodeGenBase::Abort(BailoutReason reason) {
214 info()->set_bailout_reason(reason);
215 status_ = ABORTED;
216 }
217
218
219 void LCodeGenBase::AddDeprecationDependency(Handle<Map> map) {
220 if (map->is_deprecated()) return Abort(kMapBecameDeprecated);
221 chunk_->AddDeprecationDependency(map);
222 }
223
213 } } // namespace v8::internal 224 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/lithium-codegen.h ('k') | src/mips/lithium-codegen-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698