Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2009 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "rsLocklessFifo.h" |
Jason Sams | 3b9c52a | 2010-10-14 17:48:46 -0700 | [diff] [blame] | 18 | #include "utils/Timers.h" |
| 19 | #include "utils/StopWatch.h" |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 20 | |
| 21 | using namespace android; |
Jason Sams | c1d726c | 2010-03-18 11:39:44 -0700 | [diff] [blame] | 22 | using namespace android::renderscript; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 23 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 24 | LocklessCommandFifo::LocklessCommandFifo() { |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 25 | } |
| 26 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 27 | LocklessCommandFifo::~LocklessCommandFifo() { |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 28 | if (!mInShutdown) { |
| 29 | shutdown(); |
| 30 | } |
| 31 | free(mBuffer); |
| 32 | } |
| 33 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 34 | void LocklessCommandFifo::shutdown() { |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 35 | mInShutdown = true; |
| 36 | mSignalToWorker.set(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 37 | } |
| 38 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 39 | bool LocklessCommandFifo::init(uint32_t sizeInBytes) { |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 40 | // Add room for a buffer reset command |
| 41 | mBuffer = static_cast<uint8_t *>(malloc(sizeInBytes + 4)); |
| 42 | if (!mBuffer) { |
| 43 | LOGE("LocklessFifo allocation failure"); |
| 44 | return false; |
| 45 | } |
| 46 | |
Jason Sams | 5f7fc27 | 2009-06-18 16:58:42 -0700 | [diff] [blame] | 47 | if (!mSignalToControl.init() || !mSignalToWorker.init()) { |
| 48 | LOGE("Signal setup failed"); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 49 | free(mBuffer); |
| 50 | return false; |
| 51 | } |
| 52 | |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 53 | mInShutdown = false; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 54 | mSize = sizeInBytes; |
| 55 | mPut = mBuffer; |
| 56 | mGet = mBuffer; |
| 57 | mEnd = mBuffer + (sizeInBytes) - 1; |
Jason Sams | 3bc47d4 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 58 | //dumpState("init"); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 59 | return true; |
| 60 | } |
| 61 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 62 | uint32_t LocklessCommandFifo::getFreeSpace() const { |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 63 | int32_t freeSpace = 0; |
| 64 | //dumpState("getFreeSpace"); |
| 65 | |
| 66 | if (mPut >= mGet) { |
| 67 | freeSpace = mEnd - mPut; |
| 68 | } else { |
| 69 | freeSpace = mGet - mPut; |
| 70 | } |
| 71 | |
| 72 | if (freeSpace < 0) { |
| 73 | freeSpace = 0; |
| 74 | } |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 75 | return freeSpace; |
| 76 | } |
| 77 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 78 | bool LocklessCommandFifo::isEmpty() const { |
Jason Sams | fcecc24 | 2011-01-24 17:33:21 -0800 | [diff] [blame] | 79 | uint32_t p = android_atomic_acquire_load((int32_t *)&mPut); |
| 80 | return ((uint8_t *)p) == mGet; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 84 | void * LocklessCommandFifo::reserve(uint32_t sizeInBytes) { |
Jason Sams | e2ae85f | 2009-06-03 16:04:54 -0700 | [diff] [blame] | 85 | // Add space for command header and loop token; |
| 86 | sizeInBytes += 8; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 87 | |
| 88 | //dumpState("reserve"); |
| 89 | if (getFreeSpace() < sizeInBytes) { |
| 90 | makeSpace(sizeInBytes); |
| 91 | } |
| 92 | |
| 93 | return mPut + 4; |
| 94 | } |
| 95 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 96 | void LocklessCommandFifo::commit(uint32_t command, uint32_t sizeInBytes) { |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 97 | if (mInShutdown) { |
| 98 | return; |
| 99 | } |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 100 | //dumpState("commit 1"); |
| 101 | reinterpret_cast<uint16_t *>(mPut)[0] = command; |
| 102 | reinterpret_cast<uint16_t *>(mPut)[1] = sizeInBytes; |
| 103 | mPut += ((sizeInBytes + 3) & ~3) + 4; |
| 104 | //dumpState("commit 2"); |
Jason Sams | 5f7fc27 | 2009-06-18 16:58:42 -0700 | [diff] [blame] | 105 | mSignalToWorker.set(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 106 | } |
| 107 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 108 | void LocklessCommandFifo::commitSync(uint32_t command, uint32_t sizeInBytes) { |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 109 | if (mInShutdown) { |
| 110 | return; |
| 111 | } |
Jason Sams | 3b9c52a | 2010-10-14 17:48:46 -0700 | [diff] [blame] | 112 | |
| 113 | //char buf[1024]; |
| 114 | //sprintf(buf, "RenderScript LocklessCommandFifo::commitSync %p %i %i", this, command, sizeInBytes); |
| 115 | //StopWatch compileTimer(buf); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 116 | commit(command, sizeInBytes); |
| 117 | flush(); |
| 118 | } |
| 119 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 120 | void LocklessCommandFifo::flush() { |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 121 | //dumpState("flush 1"); |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 122 | while (mPut != mGet) { |
Jason Sams | 5f7fc27 | 2009-06-18 16:58:42 -0700 | [diff] [blame] | 123 | mSignalToControl.wait(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 124 | } |
| 125 | //dumpState("flush 2"); |
| 126 | } |
| 127 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 128 | void LocklessCommandFifo::wait() { |
| 129 | while (isEmpty() && !mInShutdown) { |
Jason Sams | c1d726c | 2010-03-18 11:39:44 -0700 | [diff] [blame] | 130 | mSignalToControl.set(); |
| 131 | mSignalToWorker.wait(); |
| 132 | } |
| 133 | } |
| 134 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 135 | const void * LocklessCommandFifo::get(uint32_t *command, uint32_t *bytesData) { |
| 136 | while (1) { |
Jason Sams | 5f7fc27 | 2009-06-18 16:58:42 -0700 | [diff] [blame] | 137 | //dumpState("get"); |
Jason Sams | c1d726c | 2010-03-18 11:39:44 -0700 | [diff] [blame] | 138 | wait(); |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 139 | if (mInShutdown) { |
| 140 | *command = 0; |
| 141 | *bytesData = 0; |
| 142 | return 0; |
| 143 | } |
| 144 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 145 | *command = reinterpret_cast<const uint16_t *>(mGet)[0]; |
| 146 | *bytesData = reinterpret_cast<const uint16_t *>(mGet)[1]; |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 147 | if (*command) { |
| 148 | // non-zero command is valid |
| 149 | return mGet+4; |
| 150 | } |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 151 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 152 | // zero command means reset to beginning. |
| 153 | mGet = mBuffer; |
| 154 | } |
| 155 | } |
| 156 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 157 | void LocklessCommandFifo::next() { |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 158 | uint32_t bytes = reinterpret_cast<const uint16_t *>(mGet)[1]; |
Jason Sams | fcecc24 | 2011-01-24 17:33:21 -0800 | [diff] [blame] | 159 | |
| 160 | android_atomic_add(((bytes + 3) & ~3) + 4, (int32_t *)&mGet); |
| 161 | //mGet += ((bytes + 3) & ~3) + 4; |
Jason Sams | 5f7fc27 | 2009-06-18 16:58:42 -0700 | [diff] [blame] | 162 | if (isEmpty()) { |
| 163 | mSignalToControl.set(); |
| 164 | } |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 165 | //dumpState("next"); |
| 166 | } |
| 167 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 168 | bool LocklessCommandFifo::makeSpaceNonBlocking(uint32_t bytes) { |
Jason Sams | d0cb106 | 2010-08-18 12:38:03 -0700 | [diff] [blame] | 169 | //dumpState("make space non-blocking"); |
| 170 | if ((mPut+bytes) > mEnd) { |
| 171 | // Need to loop regardless of where get is. |
Bryan Mawhinney | 8ea061b | 2010-12-05 17:21:07 +0000 | [diff] [blame] | 172 | if ((mGet > mPut) || (mBuffer+4 >= mGet)) { |
Jason Sams | d0cb106 | 2010-08-18 12:38:03 -0700 | [diff] [blame] | 173 | return false; |
| 174 | } |
| 175 | |
| 176 | // Toss in a reset then the normal wait for space will do the rest. |
| 177 | reinterpret_cast<uint16_t *>(mPut)[0] = 0; |
| 178 | reinterpret_cast<uint16_t *>(mPut)[1] = 0; |
| 179 | mPut = mBuffer; |
| 180 | mSignalToWorker.set(); |
| 181 | } |
| 182 | |
| 183 | // it will fit here so we just need to wait for space. |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 184 | if (getFreeSpace() < bytes) { |
Jason Sams | d0cb106 | 2010-08-18 12:38:03 -0700 | [diff] [blame] | 185 | return false; |
| 186 | } |
| 187 | |
| 188 | return true; |
| 189 | } |
| 190 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 191 | void LocklessCommandFifo::makeSpace(uint32_t bytes) { |
Jason Sams | e2ae85f | 2009-06-03 16:04:54 -0700 | [diff] [blame] | 192 | //dumpState("make space"); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 193 | if ((mPut+bytes) > mEnd) { |
| 194 | // Need to loop regardless of where get is. |
Bryan Mawhinney | 8ea061b | 2010-12-05 17:21:07 +0000 | [diff] [blame] | 195 | while ((mGet > mPut) || (mBuffer+4 >= mGet)) { |
Jason Sams | e60446b | 2009-09-24 14:55:38 -0700 | [diff] [blame] | 196 | usleep(100); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | // Toss in a reset then the normal wait for space will do the rest. |
| 200 | reinterpret_cast<uint16_t *>(mPut)[0] = 0; |
| 201 | reinterpret_cast<uint16_t *>(mPut)[1] = 0; |
Jason Sams | e2ae85f | 2009-06-03 16:04:54 -0700 | [diff] [blame] | 202 | mPut = mBuffer; |
Jason Sams | d0cb106 | 2010-08-18 12:38:03 -0700 | [diff] [blame] | 203 | mSignalToWorker.set(); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | // it will fit here so we just need to wait for space. |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 207 | while (getFreeSpace() < bytes) { |
Jason Sams | e60446b | 2009-09-24 14:55:38 -0700 | [diff] [blame] | 208 | usleep(100); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 209 | } |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 210 | |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Alex Sakhartchouk | ed9f210 | 2010-11-09 17:00:54 -0800 | [diff] [blame] | 213 | void LocklessCommandFifo::dumpState(const char *s) const { |
Jason Sams | d0cb106 | 2010-08-18 12:38:03 -0700 | [diff] [blame] | 214 | LOGV("%s %p put %p, get %p, buf %p, end %p", s, this, mPut, mGet, mBuffer, mEnd); |
Jason Sams | d19f10d | 2009-05-22 14:03:28 -0700 | [diff] [blame] | 215 | } |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 216 | |
| 217 | void LocklessCommandFifo::printDebugData() const { |
| 218 | dumpState("printing fifo debug"); |
| 219 | const uint32_t *pptr = (const uint32_t *)mGet; |
| 220 | pptr -= 8 * 4; |
| 221 | if (mGet < mBuffer) { |
| 222 | pptr = (const uint32_t *)mBuffer; |
| 223 | } |
| 224 | |
| 225 | |
| 226 | for (int ct=0; ct < 16; ct++) { |
| 227 | LOGV("fifo %p = 0x%08x 0x%08x 0x%08x 0x%08x", pptr, pptr[0], pptr[1], pptr[2], pptr[3]); |
| 228 | pptr += 4; |
| 229 | } |
| 230 | |
| 231 | } |