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

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

Issue 12036030: MIPS: Make HCheckPrototypeMaps compatible with parallel recompilation. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « src/mips/lithium-codegen-mips.cc ('k') | no next file » | 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 // 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 2112 matching lines...) Expand 10 before | Expand all | Expand 10 after
2123 temps_[0] = temp; 2123 temps_[0] = temp;
2124 temps_[1] = temp2; 2124 temps_[1] = temp2;
2125 } 2125 }
2126 2126
2127 LOperand* temp() { return temps_[0]; } 2127 LOperand* temp() { return temps_[0]; }
2128 LOperand* temp2() { return temps_[1]; } 2128 LOperand* temp2() { return temps_[1]; }
2129 2129
2130 DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps") 2130 DECLARE_CONCRETE_INSTRUCTION(CheckPrototypeMaps, "check-prototype-maps")
2131 DECLARE_HYDROGEN_ACCESSOR(CheckPrototypeMaps) 2131 DECLARE_HYDROGEN_ACCESSOR(CheckPrototypeMaps)
2132 2132
2133 Handle<JSObject> prototype() const { return hydrogen()->prototype(); } 2133 ZoneList<Handle<JSObject> >* prototypes() const {
2134 Handle<JSObject> holder() const { return hydrogen()->holder(); } 2134 return hydrogen()->prototypes();
2135 }
2136 ZoneList<Handle<Map> >* maps() const { return hydrogen()->maps(); }
2135 }; 2137 };
2136 2138
2137 2139
2138 class LCheckSmi: public LTemplateInstruction<0, 1, 0> { 2140 class LCheckSmi: public LTemplateInstruction<0, 1, 0> {
2139 public: 2141 public:
2140 explicit LCheckSmi(LOperand* value) { 2142 explicit LCheckSmi(LOperand* value) {
2141 inputs_[0] = value; 2143 inputs_[0] = value;
2142 } 2144 }
2143 2145
2144 LOperand* value() { return inputs_[0]; } 2146 LOperand* value() { return inputs_[0]; }
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
2589 2591
2590 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2592 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2591 }; 2593 };
2592 2594
2593 #undef DECLARE_HYDROGEN_ACCESSOR 2595 #undef DECLARE_HYDROGEN_ACCESSOR
2594 #undef DECLARE_CONCRETE_INSTRUCTION 2596 #undef DECLARE_CONCRETE_INSTRUCTION
2595 2597
2596 } } // namespace v8::internal 2598 } } // namespace v8::internal
2597 2599
2598 #endif // V8_MIPS_LITHIUM_MIPS_H_ 2600 #endif // V8_MIPS_LITHIUM_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/lithium-codegen-mips.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698