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

Side by Side Diff: src/deoptimizer.h

Issue 12335132: Fix materialization of arguments objects with unknown values. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Sven Panne. Created 7 years, 9 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/arm/lithium-codegen-arm.cc ('k') | src/deoptimizer.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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 void BeginSetterStubFrame(int literal_id); 668 void BeginSetterStubFrame(int literal_id);
669 void StoreRegister(Register reg); 669 void StoreRegister(Register reg);
670 void StoreInt32Register(Register reg); 670 void StoreInt32Register(Register reg);
671 void StoreUint32Register(Register reg); 671 void StoreUint32Register(Register reg);
672 void StoreDoubleRegister(DoubleRegister reg); 672 void StoreDoubleRegister(DoubleRegister reg);
673 void StoreStackSlot(int index); 673 void StoreStackSlot(int index);
674 void StoreInt32StackSlot(int index); 674 void StoreInt32StackSlot(int index);
675 void StoreUint32StackSlot(int index); 675 void StoreUint32StackSlot(int index);
676 void StoreDoubleStackSlot(int index); 676 void StoreDoubleStackSlot(int index);
677 void StoreLiteral(int literal_id); 677 void StoreLiteral(int literal_id);
678 void StoreArgumentsObject(int args_index, int args_length); 678 void StoreArgumentsObject(bool args_known, int args_index, int args_length);
679 void MarkDuplicate(); 679 void MarkDuplicate();
680 680
681 Zone* zone() const { return zone_; } 681 Zone* zone() const { return zone_; }
682 682
683 static int NumberOfOperandsFor(Opcode opcode); 683 static int NumberOfOperandsFor(Opcode opcode);
684 684
685 #if defined(OBJECT_PRINT) || defined(ENABLE_DISASSEMBLER) 685 #if defined(OBJECT_PRINT) || defined(ENABLE_DISASSEMBLER)
686 static const char* StringFor(Opcode opcode); 686 static const char* StringFor(Opcode opcode);
687 #endif 687 #endif
688 688
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 Object** expression_stack_; 877 Object** expression_stack_;
878 int source_position_; 878 int source_position_;
879 879
880 friend class Deoptimizer; 880 friend class Deoptimizer;
881 }; 881 };
882 #endif 882 #endif
883 883
884 } } // namespace v8::internal 884 } } // namespace v8::internal
885 885
886 #endif // V8_DEOPTIMIZER_H_ 886 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698