| OLD | NEW |
| 1 | 1 |
| 2 // Copyright 2011 the V8 project authors. All rights reserved. | 2 // Copyright 2011 the V8 project authors. All rights reserved. |
| 3 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
| 4 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
| 5 // met: | 5 // met: |
| 6 // | 6 // |
| 7 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
| 8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
| 9 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
| 10 // copyright notice, this list of conditions and the following | 10 // copyright notice, this list of conditions and the following |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 void FrameDescription::SetCallerPc(unsigned offset, intptr_t value) { | 387 void FrameDescription::SetCallerPc(unsigned offset, intptr_t value) { |
| 388 SetFrameSlot(offset, value); | 388 SetFrameSlot(offset, value); |
| 389 } | 389 } |
| 390 | 390 |
| 391 | 391 |
| 392 void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) { | 392 void FrameDescription::SetCallerFp(unsigned offset, intptr_t value) { |
| 393 SetFrameSlot(offset, value); | 393 SetFrameSlot(offset, value); |
| 394 } | 394 } |
| 395 | 395 |
| 396 | 396 |
| 397 void FrameDescription::SetCallerConstantPool(unsigned offset, intptr_t value) { |
| 398 // No out-of-line constant pool support. |
| 399 UNREACHABLE(); |
| 400 } |
| 401 |
| 402 |
| 397 #undef __ | 403 #undef __ |
| 398 | 404 |
| 399 | 405 |
| 400 } } // namespace v8::internal | 406 } } // namespace v8::internal |
| OLD | NEW |