Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1289)

Side by Side Diff: src/mips/lithium-mips.h

Issue 1257223002: Revert of Remove ExternalArray, derived types, and element kinds (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_MIPS_LITHIUM_MIPS_H_ 5 #ifndef V8_MIPS_LITHIUM_MIPS_H_
6 #define V8_MIPS_LITHIUM_MIPS_H_ 6 #define V8_MIPS_LITHIUM_MIPS_H_
7 7
8 #include "src/hydrogen.h" 8 #include "src/hydrogen.h"
9 #include "src/lithium.h" 9 #include "src/lithium.h"
10 #include "src/lithium-allocator.h" 10 #include "src/lithium-allocator.h"
(...skipping 1592 matching lines...) Expand 10 before | Expand all | Expand 10 after
1603 LLoadKeyed(LOperand* elements, LOperand* key) { 1603 LLoadKeyed(LOperand* elements, LOperand* key) {
1604 inputs_[0] = elements; 1604 inputs_[0] = elements;
1605 inputs_[1] = key; 1605 inputs_[1] = key;
1606 } 1606 }
1607 1607
1608 LOperand* elements() { return inputs_[0]; } 1608 LOperand* elements() { return inputs_[0]; }
1609 LOperand* key() { return inputs_[1]; } 1609 LOperand* key() { return inputs_[1]; }
1610 ElementsKind elements_kind() const { 1610 ElementsKind elements_kind() const {
1611 return hydrogen()->elements_kind(); 1611 return hydrogen()->elements_kind();
1612 } 1612 }
1613 bool is_external() const {
1614 return hydrogen()->is_external();
1615 }
1613 bool is_fixed_typed_array() const { 1616 bool is_fixed_typed_array() const {
1614 return hydrogen()->is_fixed_typed_array(); 1617 return hydrogen()->is_fixed_typed_array();
1615 } 1618 }
1619 bool is_typed_elements() const {
1620 return is_external() || is_fixed_typed_array();
1621 }
1616 1622
1617 DECLARE_CONCRETE_INSTRUCTION(LoadKeyed, "load-keyed") 1623 DECLARE_CONCRETE_INSTRUCTION(LoadKeyed, "load-keyed")
1618 DECLARE_HYDROGEN_ACCESSOR(LoadKeyed) 1624 DECLARE_HYDROGEN_ACCESSOR(LoadKeyed)
1619 1625
1620 void PrintDataTo(StringStream* stream) override; 1626 void PrintDataTo(StringStream* stream) override;
1621 uint32_t base_offset() const { return hydrogen()->base_offset(); } 1627 uint32_t base_offset() const { return hydrogen()->base_offset(); }
1622 }; 1628 };
1623 1629
1624 1630
1625 class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> { 1631 class LLoadKeyedGeneric final : public LTemplateInstruction<1, 3, 1> {
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
2205 2211
2206 2212
2207 class LStoreKeyed final : public LTemplateInstruction<0, 3, 0> { 2213 class LStoreKeyed final : public LTemplateInstruction<0, 3, 0> {
2208 public: 2214 public:
2209 LStoreKeyed(LOperand* object, LOperand* key, LOperand* value) { 2215 LStoreKeyed(LOperand* object, LOperand* key, LOperand* value) {
2210 inputs_[0] = object; 2216 inputs_[0] = object;
2211 inputs_[1] = key; 2217 inputs_[1] = key;
2212 inputs_[2] = value; 2218 inputs_[2] = value;
2213 } 2219 }
2214 2220
2221 bool is_external() const { return hydrogen()->is_external(); }
2215 bool is_fixed_typed_array() const { 2222 bool is_fixed_typed_array() const {
2216 return hydrogen()->is_fixed_typed_array(); 2223 return hydrogen()->is_fixed_typed_array();
2217 } 2224 }
2225 bool is_typed_elements() const {
2226 return is_external() || is_fixed_typed_array();
2227 }
2218 LOperand* elements() { return inputs_[0]; } 2228 LOperand* elements() { return inputs_[0]; }
2219 LOperand* key() { return inputs_[1]; } 2229 LOperand* key() { return inputs_[1]; }
2220 LOperand* value() { return inputs_[2]; } 2230 LOperand* value() { return inputs_[2]; }
2221 ElementsKind elements_kind() const { 2231 ElementsKind elements_kind() const {
2222 return hydrogen()->elements_kind(); 2232 return hydrogen()->elements_kind();
2223 } 2233 }
2224 2234
2225 DECLARE_CONCRETE_INSTRUCTION(StoreKeyed, "store-keyed") 2235 DECLARE_CONCRETE_INSTRUCTION(StoreKeyed, "store-keyed")
2226 DECLARE_HYDROGEN_ACCESSOR(StoreKeyed) 2236 DECLARE_HYDROGEN_ACCESSOR(StoreKeyed)
2227 2237
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
2882 2892
2883 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2893 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2884 }; 2894 };
2885 2895
2886 #undef DECLARE_HYDROGEN_ACCESSOR 2896 #undef DECLARE_HYDROGEN_ACCESSOR
2887 #undef DECLARE_CONCRETE_INSTRUCTION 2897 #undef DECLARE_CONCRETE_INSTRUCTION
2888 2898
2889 } } // namespace v8::internal 2899 } } // namespace v8::internal
2890 2900
2891 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2901 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | src/mips/lithium-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698