OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file contains the implementation of the RingBuffer class. | 5 // This file contains the implementation of the RingBuffer class. |
6 | 6 |
7 #include "../client/ring_buffer.h" | 7 #include "../client/ring_buffer.h" |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include "../client/cmd_buffer_helper.h" | 9 #include "../client/cmd_buffer_helper.h" |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 helper_->WaitForToken(block.token); | 33 helper_->WaitForToken(block.token); |
34 in_use_offset_ += block.size; | 34 in_use_offset_ += block.size; |
35 if (in_use_offset_ == size_) { | 35 if (in_use_offset_ == size_) { |
36 in_use_offset_ = 0; | 36 in_use_offset_ = 0; |
37 } | 37 } |
38 // If they match then the entire buffer is free. | 38 // If they match then the entire buffer is free. |
39 if (in_use_offset_ == free_offset_) { | 39 if (in_use_offset_ == free_offset_) { |
40 in_use_offset_ = 0; | 40 in_use_offset_ = 0; |
41 free_offset_ = 0; | 41 free_offset_ = 0; |
42 } | 42 } |
43 blocks_.pop_back(); | 43 blocks_.pop_front(); |
44 } | 44 } |
45 | 45 |
46 RingBuffer::Offset RingBuffer::Alloc(unsigned int size) { | 46 RingBuffer::Offset RingBuffer::Alloc(unsigned int size) { |
47 DCHECK_LE(size, size_) << "attempt to allocate more than maximum memory"; | 47 DCHECK_LE(size, size_) << "attempt to allocate more than maximum memory"; |
| 48 DCHECK(blocks_.empty() || blocks_.back().valid) |
| 49 << "Attempt to alloc another block before freeing the previous."; |
48 // Similarly to malloc, an allocation of 0 allocates at least 1 byte, to | 50 // Similarly to malloc, an allocation of 0 allocates at least 1 byte, to |
49 // return different pointers every time. | 51 // return different pointers every time. |
50 if (size == 0) size = 1; | 52 if (size == 0) size = 1; |
51 | 53 |
52 // Wait until there is enough room. | 54 // Wait until there is enough room. |
53 while (size > GetLargestFreeSizeNoWaiting()) { | 55 while (size > GetLargestFreeSizeNoWaiting()) { |
54 FreeOldestBlock(); | 56 FreeOldestBlock(); |
55 } | 57 } |
56 | 58 |
57 Offset offset = free_offset_; | 59 Offset offset = free_offset_; |
(...skipping 17 matching lines...) Expand all Loading... |
75 DCHECK(!block.valid) << "block that corresponds to offset already freed"; | 77 DCHECK(!block.valid) << "block that corresponds to offset already freed"; |
76 block.token = token; | 78 block.token = token; |
77 block.valid = true; | 79 block.valid = true; |
78 return; | 80 return; |
79 } | 81 } |
80 } | 82 } |
81 NOTREACHED() << "attempt to free non-existant block"; | 83 NOTREACHED() << "attempt to free non-existant block"; |
82 } | 84 } |
83 | 85 |
84 unsigned int RingBuffer::GetLargestFreeSizeNoWaiting() { | 86 unsigned int RingBuffer::GetLargestFreeSizeNoWaiting() { |
| 87 // TODO(gman): Should check what the current token is and free up to that |
| 88 // point. |
85 if (free_offset_ == in_use_offset_) { | 89 if (free_offset_ == in_use_offset_) { |
86 if (blocks_.empty()) { | 90 if (blocks_.empty()) { |
87 // The entire buffer is free. | 91 // The entire buffer is free. |
88 DCHECK_EQ(free_offset_, 0u); | 92 DCHECK_EQ(free_offset_, 0u); |
89 return size_; | 93 return size_; |
90 } else { | 94 } else { |
91 // The entire buffer is in use. | 95 // The entire buffer is in use. |
92 return 0; | 96 return 0; |
93 } | 97 } |
94 } else if (free_offset_ > in_use_offset_) { | 98 } else if (free_offset_ > in_use_offset_) { |
95 // It's free from free_offset_ to size_ | 99 // It's free from free_offset_ to size_ |
96 return size_ - free_offset_; | 100 return size_ - free_offset_; |
97 } else { | 101 } else { |
98 // It's free from free_offset_ -> in_use_offset_; | 102 // It's free from free_offset_ -> in_use_offset_; |
99 return in_use_offset_ - free_offset_; | 103 return in_use_offset_ - free_offset_; |
100 } | 104 } |
101 } | 105 } |
102 | 106 |
103 } // namespace gpu | 107 } // namespace gpu |
OLD | NEW |