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 2342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2353 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand); | 2353 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand); |
2354 void MarkSpilledDoubleRegister(int allocation_index, | 2354 void MarkSpilledDoubleRegister(int allocation_index, |
2355 LOperand* spill_operand); | 2355 LOperand* spill_operand); |
2356 | 2356 |
2357 private: | 2357 private: |
2358 // Arrays of spill slot operands for registers with an assigned spill | 2358 // Arrays of spill slot operands for registers with an assigned spill |
2359 // slot, i.e., that must also be restored to the spill slot on OSR entry. | 2359 // slot, i.e., that must also be restored to the spill slot on OSR entry. |
2360 // NULL if the register has no assigned spill slot. Indexed by allocation | 2360 // NULL if the register has no assigned spill slot. Indexed by allocation |
2361 // index. | 2361 // index. |
2362 LOperand* register_spills_[Register::kNumAllocatableRegisters]; | 2362 LOperand* register_spills_[Register::kNumAllocatableRegisters]; |
2363 LOperand* double_register_spills_[DoubleRegister::kNumAllocatableRegisters]; | 2363 LOperand* double_register_spills_[DoubleRegister::kNumRegisters]; |
2364 }; | 2364 }; |
2365 | 2365 |
2366 | 2366 |
2367 class LStackCheck: public LTemplateInstruction<0, 0, 0> { | 2367 class LStackCheck: public LTemplateInstruction<0, 0, 0> { |
2368 public: | 2368 public: |
2369 DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check") | 2369 DECLARE_CONCRETE_INSTRUCTION(StackCheck, "stack-check") |
2370 DECLARE_HYDROGEN_ACCESSOR(StackCheck) | 2370 DECLARE_HYDROGEN_ACCESSOR(StackCheck) |
2371 | 2371 |
2372 Label* done_label() { return &done_label_; } | 2372 Label* done_label() { return &done_label_; } |
2373 | 2373 |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2613 | 2613 |
2614 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2614 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2615 }; | 2615 }; |
2616 | 2616 |
2617 #undef DECLARE_HYDROGEN_ACCESSOR | 2617 #undef DECLARE_HYDROGEN_ACCESSOR |
2618 #undef DECLARE_CONCRETE_INSTRUCTION | 2618 #undef DECLARE_CONCRETE_INSTRUCTION |
2619 | 2619 |
2620 } } // namespace v8::internal | 2620 } } // namespace v8::internal |
2621 | 2621 |
2622 #endif // V8_ARM_LITHIUM_ARM_H_ | 2622 #endif // V8_ARM_LITHIUM_ARM_H_ |
OLD | NEW |