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 2638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2649 LOperand* context() { return inputs_[0]; } | 2649 LOperand* context() { return inputs_[0]; } |
2650 LOperand* object() { return inputs_[1]; } | 2650 LOperand* object() { return inputs_[1]; } |
2651 LOperand* key() { return inputs_[2]; } | 2651 LOperand* key() { return inputs_[2]; } |
2652 | 2652 |
2653 DECLARE_CONCRETE_INSTRUCTION(DeleteProperty, "delete-property") | 2653 DECLARE_CONCRETE_INSTRUCTION(DeleteProperty, "delete-property") |
2654 }; | 2654 }; |
2655 | 2655 |
2656 | 2656 |
2657 class LOsrEntry: public LTemplateInstruction<0, 0, 0> { | 2657 class LOsrEntry: public LTemplateInstruction<0, 0, 0> { |
2658 public: | 2658 public: |
2659 LOsrEntry(); | 2659 LOsrEntry() {} |
2660 | 2660 |
2661 virtual bool HasInterestingComment(LCodeGen* gen) const { return false; } | 2661 virtual bool HasInterestingComment(LCodeGen* gen) const { return false; } |
2662 DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry") | 2662 DECLARE_CONCRETE_INSTRUCTION(OsrEntry, "osr-entry") |
2663 | |
2664 LOperand** SpilledRegisterArray() { return register_spills_; } | |
2665 LOperand** SpilledDoubleRegisterArray() { return double_register_spills_; } | |
2666 | |
2667 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand); | |
2668 void MarkSpilledDoubleRegister(int allocation_index, | |
2669 LOperand* spill_operand); | |
2670 | |
2671 private: | |
2672 // Arrays of spill slot operands for registers with an assigned spill | |
2673 // slot, i.e., that must also be restored to the spill slot on OSR entry. | |
2674 // NULL if the register has no assigned spill slot. Indexed by allocation | |
2675 // index. | |
2676 LOperand* register_spills_[Register::kMaxNumAllocatableRegisters]; | |
2677 LOperand* double_register_spills_[ | |
2678 DoubleRegister::kMaxNumAllocatableRegisters]; | |
2679 }; | 2663 }; |
2680 | 2664 |
2681 | 2665 |
2682 class LStackCheck: public LTemplateInstruction<0, 1, 0> { | 2666 class LStackCheck: public LTemplateInstruction<0, 1, 0> { |
2683 public: | 2667 public: |
2684 explicit LStackCheck(LOperand* context) { | 2668 explicit LStackCheck(LOperand* context) { |
2685 inputs_[0] = context; | 2669 inputs_[0] = context; |
2686 } | 2670 } |
2687 | 2671 |
2688 LOperand* context() { return inputs_[0]; } | 2672 LOperand* context() { return inputs_[0]; } |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2964 | 2948 |
2965 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2949 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2966 }; | 2950 }; |
2967 | 2951 |
2968 #undef DECLARE_HYDROGEN_ACCESSOR | 2952 #undef DECLARE_HYDROGEN_ACCESSOR |
2969 #undef DECLARE_CONCRETE_INSTRUCTION | 2953 #undef DECLARE_CONCRETE_INSTRUCTION |
2970 | 2954 |
2971 } } // namespace v8::internal | 2955 } } // namespace v8::internal |
2972 | 2956 |
2973 #endif // V8_IA32_LITHIUM_IA32_H_ | 2957 #endif // V8_IA32_LITHIUM_IA32_H_ |
OLD | NEW |