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

Side by Side Diff: src/virtual-frame.h

Issue 99052: Change MergeTo code for virtual frames to use register indices. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 7 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/ia32/virtual-frame-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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 copied_(false), 184 copied_(false),
185 synced_(is_synced != NOT_SYNCED) { 185 synced_(is_synced != NOT_SYNCED) {
186 data_.handle_ = value.location(); 186 data_.handle_ = value.location();
187 } 187 }
188 188
189 void set_index(int new_index) { 189 void set_index(int new_index) {
190 ASSERT(is_copy()); 190 ASSERT(is_copy());
191 data_.index_ = new_index; 191 data_.index_ = new_index;
192 } 192 }
193 193
194 void set_reg(Register new_reg) {
195 ASSERT(is_register());
196 data_.reg_ = new_reg;
197 }
198
194 friend class VirtualFrame; 199 friend class VirtualFrame;
195 }; 200 };
196 201
197 202
198 } } // namespace v8::internal 203 } } // namespace v8::internal
199 204
200 #ifdef ARM 205 #ifdef ARM
201 #include "arm/virtual-frame-arm.h" 206 #include "arm/virtual-frame-arm.h"
202 #else // ia32 207 #else // ia32
203 #include "ia32/virtual-frame-ia32.h" 208 #include "ia32/virtual-frame-ia32.h"
204 #endif 209 #endif
205 210
206 #endif // V8_VIRTUAL_FRAME_H_ 211 #endif // V8_VIRTUAL_FRAME_H_
OLDNEW
« no previous file with comments | « src/ia32/virtual-frame-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698