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

Side by Side Diff: src/ia32/codegen-ia32.h

Issue 661171: Merge r3962 to trunk (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 10 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/full-codegen.cc ('k') | src/ia32/codegen-ia32.cc » ('j') | 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 336
337 bool in_spilled_code() const { return in_spilled_code_; } 337 bool in_spilled_code() const { return in_spilled_code_; }
338 void set_in_spilled_code(bool flag) { in_spilled_code_ = flag; } 338 void set_in_spilled_code(bool flag) { in_spilled_code_ = flag; }
339 339
340 private: 340 private:
341 // Construction/Destruction 341 // Construction/Destruction
342 explicit CodeGenerator(MacroAssembler* masm); 342 explicit CodeGenerator(MacroAssembler* masm);
343 343
344 // Accessors 344 // Accessors
345 inline bool is_eval(); 345 inline bool is_eval();
346 Scope* scope(); 346 inline Scope* scope();
347 347
348 // Generating deferred code. 348 // Generating deferred code.
349 void ProcessDeferred(); 349 void ProcessDeferred();
350 350
351 // State 351 // State
352 ControlDestination* destination() const { return state_->destination(); } 352 ControlDestination* destination() const { return state_->destination(); }
353 353
354 // Track loop nesting level. 354 // Track loop nesting level.
355 int loop_nesting() const { return loop_nesting_; } 355 int loop_nesting() const { return loop_nesting_; }
356 void IncrementLoopNesting() { loop_nesting_++; } 356 void IncrementLoopNesting() { loop_nesting_++; }
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 void Print() { 897 void Print() {
898 PrintF("NumberToStringStub\n"); 898 PrintF("NumberToStringStub\n");
899 } 899 }
900 #endif 900 #endif
901 }; 901 };
902 902
903 903
904 } } // namespace v8::internal 904 } } // namespace v8::internal
905 905
906 #endif // V8_IA32_CODEGEN_IA32_H_ 906 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/full-codegen.cc ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698