OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 *top++ = addr; | 44 *top++ = addr; |
45 Heap::public_set_store_buffer_top(top); | 45 Heap::public_set_store_buffer_top(top); |
46 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) { | 46 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) { |
47 ASSERT(top == limit_); | 47 ASSERT(top == limit_); |
48 Compact(); | 48 Compact(); |
49 } else { | 49 } else { |
50 ASSERT(top < limit_); | 50 ASSERT(top < limit_); |
51 } | 51 } |
52 } | 52 } |
53 | 53 |
| 54 |
| 55 void StoreBuffer::EnterDirectlyIntoStoreBuffer(Address addr) { |
| 56 if (store_buffer_rebuilding_enabled_) { |
| 57 Address* top = old_top_; |
| 58 *top++ = addr; |
| 59 old_top_ = top; |
| 60 if (top >= old_limit_) { |
| 61 Counters::store_buffer_overflows.Increment(); |
| 62 store_buffer_mode_ = kStoreBufferDisabled; |
| 63 old_top_ = old_start_; |
| 64 } |
| 65 } |
| 66 } |
| 67 |
| 68 |
54 } } // namespace v8::internal | 69 } } // namespace v8::internal |
55 | 70 |
56 #endif // V8_WRITE_BARRIER_INL_H_ | 71 #endif // V8_WRITE_BARRIER_INL_H_ |
OLD | NEW |