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

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

Issue 12225099: Remove prototype checks for leaf maps in optimized code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merge 12224035 to this CL and address Michael's comments Created 7 years, 10 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 | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | src/mark-compact.cc » ('J')
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 : zone_(info->zone()), 47 : zone_(info->zone()),
48 chunk_(static_cast<LPlatformChunk*>(chunk)), 48 chunk_(static_cast<LPlatformChunk*>(chunk)),
49 masm_(assembler), 49 masm_(assembler),
50 info_(info), 50 info_(info),
51 current_block_(-1), 51 current_block_(-1),
52 current_instruction_(-1), 52 current_instruction_(-1),
53 instructions_(chunk->instructions()), 53 instructions_(chunk->instructions()),
54 deoptimizations_(4, info->zone()), 54 deoptimizations_(4, info->zone()),
55 deopt_jump_table_(4, info->zone()), 55 deopt_jump_table_(4, info->zone()),
56 deoptimization_literals_(8, info->zone()), 56 deoptimization_literals_(8, info->zone()),
57 prototype_maps_(0, info->zone()),
57 inlined_function_count_(0), 58 inlined_function_count_(0),
58 scope_(info->scope()), 59 scope_(info->scope()),
59 status_(UNUSED), 60 status_(UNUSED),
60 translations_(info->zone()), 61 translations_(info->zone()),
61 deferred_(8, info->zone()), 62 deferred_(8, info->zone()),
62 support_aligned_spilled_doubles_(false), 63 support_aligned_spilled_doubles_(false),
63 osr_pc_offset_(-1), 64 osr_pc_offset_(-1),
64 last_lazy_deopt_pc_(0), 65 last_lazy_deopt_pc_(0),
65 frame_is_built_(false), 66 frame_is_built_(false),
66 safepoints_(info->zone()), 67 safepoints_(info->zone()),
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 LPlatformChunk* const chunk_; 407 LPlatformChunk* const chunk_;
407 MacroAssembler* const masm_; 408 MacroAssembler* const masm_;
408 CompilationInfo* const info_; 409 CompilationInfo* const info_;
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> deopt_jump_table_; 415 ZoneList<JumpTableEntry> deopt_jump_table_;
415 ZoneList<Handle<Object> > deoptimization_literals_; 416 ZoneList<Handle<Object> > deoptimization_literals_;
417 ZoneList<Handle<Map> > prototype_maps_;
416 int inlined_function_count_; 418 int inlined_function_count_;
417 Scope* const scope_; 419 Scope* const scope_;
418 Status status_; 420 Status status_;
419 TranslationBuffer translations_; 421 TranslationBuffer translations_;
420 ZoneList<LDeferredCode*> deferred_; 422 ZoneList<LDeferredCode*> deferred_;
421 bool support_aligned_spilled_doubles_; 423 bool support_aligned_spilled_doubles_;
422 int osr_pc_offset_; 424 int osr_pc_offset_;
423 int last_lazy_deopt_pc_; 425 int last_lazy_deopt_pc_;
424 bool frame_is_built_; 426 bool frame_is_built_;
425 427
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 LCodeGen* codegen_; 508 LCodeGen* codegen_;
507 Label entry_; 509 Label entry_;
508 Label exit_; 510 Label exit_;
509 Label* external_exit_; 511 Label* external_exit_;
510 int instruction_index_; 512 int instruction_index_;
511 }; 513 };
512 514
513 } } // namespace v8::internal 515 } } // namespace v8::internal
514 516
515 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_ 517 #endif // V8_ARM_LITHIUM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-codegen-arm.cc » ('j') | src/mark-compact.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698