| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |