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

Side by Side Diff: src/deoptimizer.h

Issue 9160018: Remove unnecessary IGNORE policy from Lithium operands. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 8 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/lithium.h » ('j') | src/lithium.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 protected: 251 protected:
252 virtual void GeneratePrologue(); 252 virtual void GeneratePrologue();
253 253
254 private: 254 private:
255 int count() const { return count_; } 255 int count() const { return count_; }
256 256
257 int count_; 257 int count_;
258 }; 258 };
259 259
260 private: 260 private:
261 static const int kNumberOfEntries = 4096; 261 static const int kNumberOfEntries = 8192;
262 262
263 Deoptimizer(Isolate* isolate, 263 Deoptimizer(Isolate* isolate,
264 JSFunction* function, 264 JSFunction* function,
265 BailoutType type, 265 BailoutType type,
266 unsigned bailout_id, 266 unsigned bailout_id,
267 Address from, 267 Address from,
268 int fp_to_sp_delta, 268 int fp_to_sp_delta,
269 Code* optimized_code); 269 Code* optimized_code);
270 void DeleteFrameDescriptions(); 270 void DeleteFrameDescriptions();
271 271
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 Object** parameters_; 741 Object** parameters_;
742 Object** expression_stack_; 742 Object** expression_stack_;
743 743
744 friend class Deoptimizer; 744 friend class Deoptimizer;
745 }; 745 };
746 #endif 746 #endif
747 747
748 } } // namespace v8::internal 748 } } // namespace v8::internal
749 749
750 #endif // V8_DEOPTIMIZER_H_ 750 #endif // V8_DEOPTIMIZER_H_
OLDNEW
« no previous file with comments | « no previous file | src/lithium.h » ('j') | src/lithium.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698