| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |