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

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

Issue 14146005: Track representations of fields (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add test for tracking fields Created 7 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/hydrogen-instructions.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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 chunk_(static_cast<LPlatformChunk*>(chunk)), 52 chunk_(static_cast<LPlatformChunk*>(chunk)),
53 masm_(assembler), 53 masm_(assembler),
54 info_(info), 54 info_(info),
55 current_block_(-1), 55 current_block_(-1),
56 current_instruction_(-1), 56 current_instruction_(-1),
57 instructions_(chunk->instructions()), 57 instructions_(chunk->instructions()),
58 deoptimizations_(4, info->zone()), 58 deoptimizations_(4, info->zone()),
59 jump_table_(4, info->zone()), 59 jump_table_(4, info->zone()),
60 deoptimization_literals_(8, info->zone()), 60 deoptimization_literals_(8, info->zone()),
61 prototype_maps_(0, info->zone()), 61 prototype_maps_(0, info->zone()),
62 transition_maps_(0, info->zone()),
62 inlined_function_count_(0), 63 inlined_function_count_(0),
63 scope_(info->scope()), 64 scope_(info->scope()),
64 status_(UNUSED), 65 status_(UNUSED),
65 translations_(info->zone()), 66 translations_(info->zone()),
66 deferred_(8, info->zone()), 67 deferred_(8, info->zone()),
67 dynamic_frame_alignment_(false), 68 dynamic_frame_alignment_(false),
68 support_aligned_spilled_doubles_(false), 69 support_aligned_spilled_doubles_(false),
69 osr_pc_offset_(-1), 70 osr_pc_offset_(-1),
70 last_lazy_deopt_pc_(0), 71 last_lazy_deopt_pc_(0),
71 frame_is_built_(false), 72 frame_is_built_(false),
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 bool is_lazy_deopt; 408 bool is_lazy_deopt;
408 }; 409 };
409 410
410 int current_block_; 411 int current_block_;
411 int current_instruction_; 412 int current_instruction_;
412 const ZoneList<LInstruction*>* instructions_; 413 const ZoneList<LInstruction*>* instructions_;
413 ZoneList<LEnvironment*> deoptimizations_; 414 ZoneList<LEnvironment*> deoptimizations_;
414 ZoneList<JumpTableEntry> jump_table_; 415 ZoneList<JumpTableEntry> jump_table_;
415 ZoneList<Handle<Object> > deoptimization_literals_; 416 ZoneList<Handle<Object> > deoptimization_literals_;
416 ZoneList<Handle<Map> > prototype_maps_; 417 ZoneList<Handle<Map> > prototype_maps_;
418 ZoneList<Handle<Map> > transition_maps_;
417 int inlined_function_count_; 419 int inlined_function_count_;
418 Scope* const scope_; 420 Scope* const scope_;
419 Status status_; 421 Status status_;
420 TranslationBuffer translations_; 422 TranslationBuffer translations_;
421 ZoneList<LDeferredCode*> deferred_; 423 ZoneList<LDeferredCode*> deferred_;
422 bool dynamic_frame_alignment_; 424 bool dynamic_frame_alignment_;
423 bool support_aligned_spilled_doubles_; 425 bool support_aligned_spilled_doubles_;
424 int osr_pc_offset_; 426 int osr_pc_offset_;
425 int last_lazy_deopt_pc_; 427 int last_lazy_deopt_pc_;
426 bool frame_is_built_; 428 bool frame_is_built_;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 LCodeGen* codegen_; 490 LCodeGen* codegen_;
489 Label entry_; 491 Label entry_;
490 Label exit_; 492 Label exit_;
491 Label* external_exit_; 493 Label* external_exit_;
492 int instruction_index_; 494 int instruction_index_;
493 }; 495 };
494 496
495 } } // namespace v8::internal 497 } } // namespace v8::internal
496 498
497 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_ 499 #endif // V8_IA32_LITHIUM_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698