OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 2760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2771 DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties") | 2771 DECLARE_CONCRETE_INSTRUCTION(ToFastProperties, "to-fast-properties") |
2772 DECLARE_HYDROGEN_ACCESSOR(ToFastProperties) | 2772 DECLARE_HYDROGEN_ACCESSOR(ToFastProperties) |
2773 }; | 2773 }; |
2774 | 2774 |
2775 | 2775 |
2776 class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> { | 2776 class LTransitionElementsKind V8_FINAL : public LTemplateInstruction<0, 2, 2> { |
2777 public: | 2777 public: |
2778 LTransitionElementsKind(LOperand* object, | 2778 LTransitionElementsKind(LOperand* object, |
2779 LOperand* context, | 2779 LOperand* context, |
2780 LOperand* temp1, | 2780 LOperand* temp1, |
2781 LOperand* temp2 = NULL) { | 2781 LOperand* temp2) { |
2782 inputs_[0] = object; | 2782 inputs_[0] = object; |
2783 inputs_[1] = context; | 2783 inputs_[1] = context; |
2784 temps_[0] = temp1; | 2784 temps_[0] = temp1; |
2785 temps_[1] = temp2; | 2785 temps_[1] = temp2; |
2786 } | 2786 } |
2787 | 2787 |
2788 LOperand* object() { return inputs_[0]; } | 2788 LOperand* object() { return inputs_[0]; } |
2789 LOperand* context() { return inputs_[1]; } | 2789 LOperand* context() { return inputs_[1]; } |
2790 LOperand* temp1() { return temps_[0]; } | 2790 LOperand* temp1() { return temps_[0]; } |
2791 LOperand* temp2() { return temps_[1]; } | 2791 LOperand* temp2() { return temps_[1]; } |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3091 | 3091 |
3092 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 3092 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
3093 }; | 3093 }; |
3094 | 3094 |
3095 #undef DECLARE_HYDROGEN_ACCESSOR | 3095 #undef DECLARE_HYDROGEN_ACCESSOR |
3096 #undef DECLARE_CONCRETE_INSTRUCTION | 3096 #undef DECLARE_CONCRETE_INSTRUCTION |
3097 | 3097 |
3098 } } // namespace v8::internal | 3098 } } // namespace v8::internal |
3099 | 3099 |
3100 #endif // V8_ARM64_LITHIUM_ARM64_H_ | 3100 #endif // V8_ARM64_LITHIUM_ARM64_H_ |
OLD | NEW |