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

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

Issue 6069010: First part of lithium ARM port. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix typo. Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | src/arm/lithium-codegen-arm.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 1115
1116 private: 1116 private:
1117 int true_block_id_; 1117 int true_block_id_;
1118 int false_block_id_; 1118 int false_block_id_;
1119 }; 1119 };
1120 1120
1121 1121
1122 class LCmpMapAndBranch: public LUnaryOperation { 1122 class LCmpMapAndBranch: public LUnaryOperation {
1123 public: 1123 public:
1124 LCmpMapAndBranch(LOperand* value, 1124 LCmpMapAndBranch(LOperand* value,
1125 LOperand* temp,
1125 Handle<Map> map, 1126 Handle<Map> map,
1126 int true_block_id, 1127 int true_block_id,
1127 int false_block_id) 1128 int false_block_id)
1128 : LUnaryOperation(value), 1129 : LUnaryOperation(value),
1130 temp_(temp),
1129 map_(map), 1131 map_(map),
1130 true_block_id_(true_block_id), 1132 true_block_id_(true_block_id),
1131 false_block_id_(false_block_id) { } 1133 false_block_id_(false_block_id) { }
1132 1134
1133 DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch") 1135 DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch")
1134 1136
1135 virtual bool IsControl() const { return true; } 1137 virtual bool IsControl() const { return true; }
1136 1138
1139 LOperand* temp() const { return temp_; }
1137 Handle<Map> map() const { return map_; } 1140 Handle<Map> map() const { return map_; }
1138 int true_block_id() const { return true_block_id_; } 1141 int true_block_id() const { return true_block_id_; }
1139 int false_block_id() const { return false_block_id_; } 1142 int false_block_id() const { return false_block_id_; }
1140 1143
1141 private: 1144 private:
1145 LOperand* temp_;
1142 Handle<Map> map_; 1146 Handle<Map> map_;
Kevin Millikin (Chromium) 2011/01/04 09:17:19 FYI you shouldn't need any of the fields map_, tru
Karl Klose 2011/01/04 12:32:18 Done.
1143 int true_block_id_; 1147 int true_block_id_;
1144 int false_block_id_; 1148 int false_block_id_;
1145 }; 1149 };
1146 1150
1147 1151
1148 class LJSArrayLength: public LUnaryOperation { 1152 class LJSArrayLength: public LUnaryOperation {
1149 public: 1153 public:
1150 explicit LJSArrayLength(LOperand* input) : LUnaryOperation(input) { } 1154 explicit LJSArrayLength(LOperand* input) : LUnaryOperation(input) { }
1151 1155
1152 DECLARE_CONCRETE_INSTRUCTION(JSArrayLength, "js-array-length") 1156 DECLARE_CONCRETE_INSTRUCTION(JSArrayLength, "js-array-length")
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
1671 public: 1675 public:
1672 explicit LCheckMap(LOperand* use) : LUnaryOperation(use) { } 1676 explicit LCheckMap(LOperand* use) : LUnaryOperation(use) { }
1673 1677
1674 DECLARE_CONCRETE_INSTRUCTION(CheckMap, "check-map") 1678 DECLARE_CONCRETE_INSTRUCTION(CheckMap, "check-map")
1675 DECLARE_HYDROGEN_ACCESSOR(CheckMap) 1679 DECLARE_HYDROGEN_ACCESSOR(CheckMap)
1676 }; 1680 };
1677 1681
1678 1682
1679 class LCheckPrototypeMaps: public LInstruction { 1683 class LCheckPrototypeMaps: public LInstruction {
1680 public: 1684 public:
1681 LCheckPrototypeMaps(LOperand* temp, 1685 LCheckPrototypeMaps(LOperand* temp1,
1686 LOperand* temp2,
1682 Handle<JSObject> holder, 1687 Handle<JSObject> holder,
1683 Handle<Map> receiver_map) 1688 Handle<Map> receiver_map)
1684 : temp_(temp), 1689 : temp1_(temp1),
1690 temp2_(temp2),
1685 holder_(holder), 1691 holder_(holder),
1686 receiver_map_(receiver_map) { } 1692 receiver_map_(receiver_map) { }
1687 1693
1688 DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps") 1694 DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps")
1689 1695
1690 LOperand* temp() const { return temp_; } 1696 LOperand* temp1() const { return temp1_; }
1697 LOperand* temp2() const { return temp2_; }
1691 Handle<JSObject> holder() const { return holder_; } 1698 Handle<JSObject> holder() const { return holder_; }
1692 Handle<Map> receiver_map() const { return receiver_map_; } 1699 Handle<Map> receiver_map() const { return receiver_map_; }
1693 1700
1694 private: 1701 private:
1695 LOperand* temp_; 1702 LOperand* temp1_;
1703 LOperand* temp2_;
1696 Handle<JSObject> holder_; 1704 Handle<JSObject> holder_;
1697 Handle<Map> receiver_map_; 1705 Handle<Map> receiver_map_;
1698 }; 1706 };
1699 1707
1700 1708
1701 class LCheckSmi: public LUnaryOperation { 1709 class LCheckSmi: public LUnaryOperation {
1702 public: 1710 public:
1703 LCheckSmi(LOperand* use, Condition condition) 1711 LCheckSmi(LOperand* use, Condition condition)
1704 : LUnaryOperation(use), condition_(condition) { } 1712 : LUnaryOperation(use), condition_(condition) { }
1705 1713
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
2129 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2137 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2130 }; 2138 };
2131 2139
2132 #undef DECLARE_HYDROGEN_ACCESSOR 2140 #undef DECLARE_HYDROGEN_ACCESSOR
2133 #undef DECLARE_INSTRUCTION 2141 #undef DECLARE_INSTRUCTION
2134 #undef DECLARE_CONCRETE_INSTRUCTION 2142 #undef DECLARE_CONCRETE_INSTRUCTION
2135 2143
2136 } } // namespace v8::internal 2144 } } // namespace v8::internal
2137 2145
2138 #endif // V8_ARM_LITHIUM_ARM_H_ 2146 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | src/arm/lithium-codegen-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698