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

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

Issue 5605004: Remove NearestNextGapPos. It is not used anymore. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 10 years 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
« src/lithium-allocator.cc ('K') | « src/lithium-allocator.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 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 bool IsGapAt(int index) const { 209 bool IsGapAt(int index) const {
210 UNIMPLEMENTED(); 210 UNIMPLEMENTED();
211 return false; 211 return false;
212 } 212 }
213 213
214 int NearestGapPos(int index) const { 214 int NearestGapPos(int index) const {
215 UNIMPLEMENTED(); 215 UNIMPLEMENTED();
216 return 0; 216 return 0;
217 } 217 }
218 218
219 int NearestNextGapPos(int index) const {
220 UNIMPLEMENTED();
221 return 0;
222 }
223
224 void MarkEmptyBlocks() { UNIMPLEMENTED(); } 219 void MarkEmptyBlocks() { UNIMPLEMENTED(); }
225 220
226 #ifdef DEBUG 221 #ifdef DEBUG
227 void Verify() { UNIMPLEMENTED(); } 222 void Verify() { UNIMPLEMENTED(); }
228 #endif 223 #endif
229 }; 224 };
230 225
231 226
232 class LChunkBuilder BASE_EMBEDDED { 227 class LChunkBuilder BASE_EMBEDDED {
233 public: 228 public:
(...skipping 13 matching lines...) Expand all
247 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO) 242 HYDROGEN_CONCRETE_INSTRUCTION_LIST(DECLARE_DO)
248 #undef DECLARE_DO 243 #undef DECLARE_DO
249 244
250 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 245 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
251 }; 246 };
252 247
253 248
254 } } // namespace v8::internal 249 } } // namespace v8::internal
255 250
256 #endif // V8_X64_LITHIUM_X64_H_ 251 #endif // V8_X64_LITHIUM_X64_H_
OLDNEW
« src/lithium-allocator.cc ('K') | « src/lithium-allocator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698