| 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 2096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2107 | 2107 |
| 2108 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic") | 2108 DECLARE_CONCRETE_INSTRUCTION(StoreKeyedGeneric, "store-keyed-generic") |
| 2109 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric) | 2109 DECLARE_HYDROGEN_ACCESSOR(StoreKeyedGeneric) |
| 2110 | 2110 |
| 2111 virtual void PrintDataTo(StringStream* stream); | 2111 virtual void PrintDataTo(StringStream* stream); |
| 2112 | 2112 |
| 2113 StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); } | 2113 StrictModeFlag strict_mode_flag() { return hydrogen()->strict_mode_flag(); } |
| 2114 }; | 2114 }; |
| 2115 | 2115 |
| 2116 | 2116 |
| 2117 class LTransitionElementsKind: public LTemplateInstruction<1, 1, 2> { | 2117 class LTransitionElementsKind: public LTemplateInstruction<0, 1, 2> { |
| 2118 public: | 2118 public: |
| 2119 LTransitionElementsKind(LOperand* object, | 2119 LTransitionElementsKind(LOperand* object, |
| 2120 LOperand* new_map_temp, | 2120 LOperand* new_map_temp, |
| 2121 LOperand* fixed_object_temp) { | 2121 LOperand* fixed_object_temp) { |
| 2122 inputs_[0] = object; | 2122 inputs_[0] = object; |
| 2123 temps_[0] = new_map_temp; | 2123 temps_[0] = new_map_temp; |
| 2124 temps_[1] = fixed_object_temp; | 2124 temps_[1] = fixed_object_temp; |
| 2125 } | 2125 } |
| 2126 | 2126 |
| 2127 LOperand* object() { return inputs_[0]; } | 2127 LOperand* object() { return inputs_[0]; } |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2749 | 2749 |
| 2750 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2750 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
| 2751 }; | 2751 }; |
| 2752 | 2752 |
| 2753 #undef DECLARE_HYDROGEN_ACCESSOR | 2753 #undef DECLARE_HYDROGEN_ACCESSOR |
| 2754 #undef DECLARE_CONCRETE_INSTRUCTION | 2754 #undef DECLARE_CONCRETE_INSTRUCTION |
| 2755 | 2755 |
| 2756 } } // namespace v8::internal | 2756 } } // namespace v8::internal |
| 2757 | 2757 |
| 2758 #endif // V8_ARM_LITHIUM_ARM_H_ | 2758 #endif // V8_ARM_LITHIUM_ARM_H_ |
| OLD | NEW |