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

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

Issue 19562003: Add support for IncrementCounter in Hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Using HConstant, HLoadKeyed, HAdd and HStoreKeyed. Created 7 years, 5 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
OLDNEW
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 V(ClampDToUint8) \ 78 V(ClampDToUint8) \
79 V(ClampIToUint8) \ 79 V(ClampIToUint8) \
80 V(ClampTToUint8) \ 80 V(ClampTToUint8) \
81 V(ClassOfTestAndBranch) \ 81 V(ClassOfTestAndBranch) \
82 V(CmpConstantEqAndBranch) \ 82 V(CmpConstantEqAndBranch) \
83 V(CompareNumericAndBranch) \ 83 V(CompareNumericAndBranch) \
84 V(CmpObjectEqAndBranch) \ 84 V(CmpObjectEqAndBranch) \
85 V(CmpMapAndBranch) \ 85 V(CmpMapAndBranch) \
86 V(CmpT) \ 86 V(CmpT) \
87 V(ConstantD) \ 87 V(ConstantD) \
88 V(ConstantE) \
88 V(ConstantI) \ 89 V(ConstantI) \
89 V(ConstantS) \ 90 V(ConstantS) \
90 V(ConstantT) \ 91 V(ConstantT) \
91 V(Context) \ 92 V(Context) \
92 V(DebugBreak) \ 93 V(DebugBreak) \
93 V(DeclareGlobals) \ 94 V(DeclareGlobals) \
94 V(Deoptimize) \ 95 V(Deoptimize) \
95 V(DivI) \ 96 V(DivI) \
96 V(DoubleToI) \ 97 V(DoubleToI) \
97 V(DoubleToSmi) \ 98 V(DoubleToSmi) \
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 1225
1225 class LConstantD: public LTemplateInstruction<1, 0, 0> { 1226 class LConstantD: public LTemplateInstruction<1, 0, 0> {
1226 public: 1227 public:
1227 DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d") 1228 DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-d")
1228 DECLARE_HYDROGEN_ACCESSOR(Constant) 1229 DECLARE_HYDROGEN_ACCESSOR(Constant)
1229 1230
1230 double value() const { return hydrogen()->DoubleValue(); } 1231 double value() const { return hydrogen()->DoubleValue(); }
1231 }; 1232 };
1232 1233
1233 1234
1235 class LConstantE: public LTemplateInstruction<1, 0, 0> {
1236 public:
1237 DECLARE_CONCRETE_INSTRUCTION(ConstantD, "constant-e")
1238 DECLARE_HYDROGEN_ACCESSOR(Constant)
1239
1240 ExternalReference value() const { return hydrogen()->ExternalValue(); }
1241 };
1242
1243
1234 class LConstantT: public LTemplateInstruction<1, 0, 0> { 1244 class LConstantT: public LTemplateInstruction<1, 0, 0> {
1235 public: 1245 public:
1236 DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t") 1246 DECLARE_CONCRETE_INSTRUCTION(ConstantT, "constant-t")
1237 DECLARE_HYDROGEN_ACCESSOR(Constant) 1247 DECLARE_HYDROGEN_ACCESSOR(Constant)
1238 1248
1239 Handle<Object> value() const { return hydrogen()->handle(); } 1249 Handle<Object> value() const { return hydrogen()->handle(); }
1240 }; 1250 };
1241 1251
1242 1252
1243 class LBranch: public LControlInstruction<1, 0> { 1253 class LBranch: public LControlInstruction<1, 0> {
(...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after
2796 2806
2797 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2807 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2798 }; 2808 };
2799 2809
2800 #undef DECLARE_HYDROGEN_ACCESSOR 2810 #undef DECLARE_HYDROGEN_ACCESSOR
2801 #undef DECLARE_CONCRETE_INSTRUCTION 2811 #undef DECLARE_CONCRETE_INSTRUCTION
2802 2812
2803 } } // namespace v8::internal 2813 } } // namespace v8::internal
2804 2814
2805 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2815 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698