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

Side by Side Diff: src/ia32/lithium-codegen-ia32.h

Issue 20680002: Rebase of partial ia32 implementation of optimized try/catch (started by Kevin Millikin, continued … (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix detection of CATCH frames (fixes debuger exception reporting anf breaks another assertion...). Created 7 years, 5 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/ia32/deoptimizer-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 ZoneList<Handle<Object> > deoptimization_literals_; 404 ZoneList<Handle<Object> > deoptimization_literals_;
405 int inlined_function_count_; 405 int inlined_function_count_;
406 Scope* const scope_; 406 Scope* const scope_;
407 Status status_; 407 Status status_;
408 TranslationBuffer translations_; 408 TranslationBuffer translations_;
409 ZoneList<LDeferredCode*> deferred_; 409 ZoneList<LDeferredCode*> deferred_;
410 bool dynamic_frame_alignment_; 410 bool dynamic_frame_alignment_;
411 bool support_aligned_spilled_doubles_; 411 bool support_aligned_spilled_doubles_;
412 int osr_pc_offset_; 412 int osr_pc_offset_;
413 int last_lazy_deopt_pc_; 413 int last_lazy_deopt_pc_;
414 Handle<FixedArray> handler_table_;
414 bool frame_is_built_; 415 bool frame_is_built_;
415 int x87_stack_depth_; 416 int x87_stack_depth_;
416 417
417 // Builder that keeps track of safepoints in the code. The table 418 // Builder that keeps track of safepoints in the code. The table
418 // itself is emitted at the end of the generated code. 419 // itself is emitted at the end of the generated code.
419 SafepointTableBuilder safepoints_; 420 SafepointTableBuilder safepoints_;
420 421
421 // Compiler from a set of parallel moves to a sequential list of moves. 422 // Compiler from a set of parallel moves to a sequential list of moves.
422 LGapResolver resolver_; 423 LGapResolver resolver_;
423 424
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 LCodeGen* codegen_; 477 LCodeGen* codegen_;
477 Label entry_; 478 Label entry_;
478 Label exit_; 479 Label exit_;
479 Label* external_exit_; 480 Label* external_exit_;
480 int instruction_index_; 481 int instruction_index_;
481 }; 482 };
482 483
483 } } // namespace v8::internal 484 } } // namespace v8::internal
484 485
485 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 486 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/deoptimizer-ia32.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698