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/virtual-frame-ia32.cc

Issue 17004: Experimental: add a has_valid_frame predicate to the code generator... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 years, 12 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/register-allocator-ia32.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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 23 matching lines...) Expand all
34 namespace v8 { namespace internal { 34 namespace v8 { namespace internal {
35 35
36 #define __ masm_-> 36 #define __ masm_->
37 37
38 // ------------------------------------------------------------------------- 38 // -------------------------------------------------------------------------
39 // VirtualFrame implementation. 39 // VirtualFrame implementation.
40 40
41 VirtualFrame::SpilledScope::SpilledScope(CodeGenerator* cgen) 41 VirtualFrame::SpilledScope::SpilledScope(CodeGenerator* cgen)
42 : cgen_(cgen), 42 : cgen_(cgen),
43 previous_state_(cgen->in_spilled_code()) { 43 previous_state_(cgen->in_spilled_code()) {
44 ASSERT(cgen->frame() != NULL); 44 ASSERT(cgen->has_valid_frame());
45 cgen->frame()->SpillAll(); 45 cgen->frame()->SpillAll();
46 cgen->set_in_spilled_code(true); 46 cgen->set_in_spilled_code(true);
47 } 47 }
48 48
49 49
50 VirtualFrame::SpilledScope::~SpilledScope() { 50 VirtualFrame::SpilledScope::~SpilledScope() {
51 cgen_->set_in_spilled_code(previous_state_); 51 cgen_->set_in_spilled_code(previous_state_);
52 } 52 }
53 53
54 54
(...skipping 906 matching lines...) Expand 10 before | Expand all | Expand 10 after
961 return false; 961 return false;
962 } 962 }
963 } 963 }
964 return true; 964 return true;
965 } 965 }
966 #endif 966 #endif
967 967
968 #undef __ 968 #undef __
969 969
970 } } // namespace v8::internal 970 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/register-allocator-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698