Skip to content
Snippets Groups Projects
Commit f7e580f2 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Remove LLTrace support from threads in release builds..

parent dec49dad
No related branches found
No related tags found
No related merge requests found
...@@ -467,8 +467,9 @@ S32 LLQueuedThread::processNextRequest() ...@@ -467,8 +467,9 @@ S32 LLQueuedThread::processNextRequest()
yield(); yield();
} }
} }
#ifndef LL_RELEASE_FOR_DOWNLOAD
LLTrace::get_thread_recorder()->pushToParent(); LLTrace::get_thread_recorder()->pushToParent();
#endif
} }
S32 pending = getPending(); S32 pending = getPending();
...@@ -497,7 +498,9 @@ void LLQueuedThread::run() ...@@ -497,7 +498,9 @@ void LLQueuedThread::run()
if (isQuitting()) if (isQuitting())
{ {
#ifndef LL_RELEASE_FOR_DOWNLOAD
LLTrace::get_thread_recorder()->pushToParent(); LLTrace::get_thread_recorder()->pushToParent();
#endif
endThread(); endThread();
break; break;
} }
......
...@@ -138,8 +138,10 @@ void LLThread::threadRun() ...@@ -138,8 +138,10 @@ void LLThread::threadRun()
// this is the first point at which we're actually running in the new thread // this is the first point at which we're actually running in the new thread
mID = currentID(); mID = currentID();
#ifndef LL_RELEASE_FOR_DOWNLOAD
// for now, hard code all LLThreads to report to single master thread recorder, which is known to be running on main thread // for now, hard code all LLThreads to report to single master thread recorder, which is known to be running on main thread
mRecorder = new LLTrace::ThreadRecorder(*LLTrace::get_master_thread_recorder()); mRecorder = new LLTrace::ThreadRecorder(*LLTrace::get_master_thread_recorder());
#endif
// Run the user supplied function // Run the user supplied function
do do
...@@ -164,9 +166,10 @@ void LLThread::threadRun() ...@@ -164,9 +166,10 @@ void LLThread::threadRun()
//LL_INFOS() << "LLThread::staticRun() Exiting: " << threadp->mName << LL_ENDL; //LL_INFOS() << "LLThread::staticRun() Exiting: " << threadp->mName << LL_ENDL;
#ifndef LL_RELEASE_FOR_DOWNLOAD
delete mRecorder; delete mRecorder;
mRecorder = NULL; mRecorder = NULL;
#endif
// We're done with the run function, this thread is done executing now. // We're done with the run function, this thread is done executing now.
//NB: we are using this flag to sync across threads...we really need memory barriers here //NB: we are using this flag to sync across threads...we really need memory barriers here
...@@ -179,8 +182,10 @@ LLThread::LLThread(const std::string& name, apr_pool_t *poolp) : ...@@ -179,8 +182,10 @@ LLThread::LLThread(const std::string& name, apr_pool_t *poolp) :
mPaused(FALSE), mPaused(FALSE),
mName(name), mName(name),
mThreadp(NULL), mThreadp(NULL),
mStatus(STOPPED), mStatus(STOPPED)
mRecorder(NULL) #ifndef LL_RELEASE_FOR_DOWNLOAD
, mRecorder(NULL)
#endif
{ {
mRunCondition = new LLCondition(); mRunCondition = new LLCondition();
mDataLock = new LLMutex(); mDataLock = new LLMutex();
...@@ -250,9 +255,10 @@ void LLThread::shutdown() ...@@ -250,9 +255,10 @@ void LLThread::shutdown()
#else #else
pthread_cancel(mNativeHandle); pthread_cancel(mNativeHandle);
#endif #endif
#ifndef LL_RELEASE_FOR_DOWNLOAD
delete mRecorder; delete mRecorder;
mRecorder = NULL; mRecorder = NULL;
#endif
mStatus = STOPPED; mStatus = STOPPED;
return; return;
} }
...@@ -265,7 +271,7 @@ void LLThread::shutdown() ...@@ -265,7 +271,7 @@ void LLThread::shutdown()
delete mDataLock; delete mDataLock;
mDataLock = NULL; mDataLock = NULL;
#ifndef LL_RELEASE_FOR_DOWNLOAD
if (mRecorder) if (mRecorder)
{ {
// missed chance to properly shut down recorder (needs to be done in thread context) // missed chance to properly shut down recorder (needs to be done in thread context)
...@@ -273,6 +279,7 @@ void LLThread::shutdown() ...@@ -273,6 +279,7 @@ void LLThread::shutdown()
// so just leak it and remove it from parent // so just leak it and remove it from parent
LLTrace::get_master_thread_recorder()->removeChildRecorder(mRecorder); LLTrace::get_master_thread_recorder()->removeChildRecorder(mRecorder);
} }
#endif
} }
......
...@@ -106,7 +106,9 @@ class LL_COMMON_API LLThread ...@@ -106,7 +106,9 @@ class LL_COMMON_API LLThread
std::thread *mThreadp; std::thread *mThreadp;
EThreadStatus mStatus; EThreadStatus mStatus;
id_t mID; id_t mID;
#ifndef LL_RELEASE_FOR_DOWNLOAD
LLTrace::ThreadRecorder* mRecorder; LLTrace::ThreadRecorder* mRecorder;
#endif
//a local apr_pool for APRFile operations in this thread. If it exists, LLAPRFile::sAPRFilePoolp should not be used. //a local apr_pool for APRFile operations in this thread. If it exists, LLAPRFile::sAPRFilePoolp should not be used.
//Note: this pool is used by APRFile ONLY, do NOT use it for any other purposes. //Note: this pool is used by APRFile ONLY, do NOT use it for any other purposes.
......
...@@ -2071,14 +2071,17 @@ bool LLTextureFetchWorker::doWork(S32 param) ...@@ -2071,14 +2071,17 @@ bool LLTextureFetchWorker::doWork(S32 param)
// virtual // virtual
void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpResponse * response) void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpResponse * response)
{ {
#ifndef LL_RELEASE_FOR_DOWNLOAD
static LLCachedControl<bool> log_to_viewer_log(gSavedSettings, "LogTextureDownloadsToViewerLog", false); static LLCachedControl<bool> log_to_viewer_log(gSavedSettings, "LogTextureDownloadsToViewerLog", false);
static LLCachedControl<bool> log_to_sim(gSavedSettings, "LogTextureDownloadsToSimulator", false); static LLCachedControl<bool> log_to_sim(gSavedSettings, "LogTextureDownloadsToSimulator", false);
#endif
static LLCachedControl<bool> log_texture_traffic(gSavedSettings, "LogTextureNetworkTraffic", false) ; static LLCachedControl<bool> log_texture_traffic(gSavedSettings, "LogTextureNetworkTraffic", false) ;
LLMutexLock lock(&mWorkMutex); // +Mw LLMutexLock lock(&mWorkMutex); // +Mw
mHttpActive = false; mHttpActive = false;
#ifndef LL_RELEASE_FOR_DOWNLOAD
if (log_to_viewer_log || log_to_sim) if (log_to_viewer_log || log_to_sim)
{ {
mFetcher->mTextureInfo.setRequestStartTime(mID, mMetricsStartTime.value()); mFetcher->mTextureInfo.setRequestStartTime(mID, mMetricsStartTime.value());
...@@ -2087,6 +2090,7 @@ void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRe ...@@ -2087,6 +2090,7 @@ void LLTextureFetchWorker::onCompleted(LLCore::HttpHandle handle, LLCore::HttpRe
mFetcher->mTextureInfo.setRequestOffset(mID, mRequestedOffset); mFetcher->mTextureInfo.setRequestOffset(mID, mRequestedOffset);
mFetcher->mTextureInfo.setRequestCompleteTimeAndLog(mID, LLTimer::getTotalTime()); mFetcher->mTextureInfo.setRequestCompleteTimeAndLog(mID, LLTimer::getTotalTime());
} }
#endif
static LLCachedControl<F32> fake_failure_rate(gSavedSettings, "TextureFetchFakeFailureRate", 0.0f); static LLCachedControl<F32> fake_failure_rate(gSavedSettings, "TextureFetchFakeFailureRate", 0.0f);
F32 rand_val = ll_frand(); F32 rand_val = ll_frand();
...@@ -2633,11 +2637,15 @@ LLTextureFetch::LLTextureFetch(LLTextureCache* cache, LLImageDecodeThread* image ...@@ -2633,11 +2637,15 @@ LLTextureFetch::LLTextureFetch(LLTextureCache* cache, LLImageDecodeThread* image
mFetchDebugger(NULL), mFetchDebugger(NULL),
mFetchSource(LLTextureFetch::FROM_ALL), mFetchSource(LLTextureFetch::FROM_ALL),
mOriginFetchSource(LLTextureFetch::FROM_ALL), mOriginFetchSource(LLTextureFetch::FROM_ALL),
mFetcherLocked(FALSE), mFetcherLocked(FALSE)
mTextureInfoMainThread(false) #ifndef LL_RELEASE_FOR_DOWNLOAD
, mTextureInfoMainThread(false)
#endif
{ {
mMaxBandwidth = gSavedSettings.getF32("ThrottleBandwidthKBPS"); mMaxBandwidth = gSavedSettings.getF32("ThrottleBandwidthKBPS");
#ifndef LL_RELEASE_FOR_DOWNLOAD
mTextureInfo.setLogging(true); mTextureInfo.setLogging(true);
#endif
LLAppCoreHttp & app_core_http(LLAppViewer::instance()->getAppCoreHttp()); LLAppCoreHttp & app_core_http(LLAppViewer::instance()->getAppCoreHttp());
mHttpRequest = new LLCore::HttpRequest; mHttpRequest = new LLCore::HttpRequest;
...@@ -3182,7 +3190,9 @@ void LLTextureFetch::shutDownImageDecodeThread() ...@@ -3182,7 +3190,9 @@ void LLTextureFetch::shutDownImageDecodeThread()
// Threads: Ttf // Threads: Ttf
void LLTextureFetch::startThread() void LLTextureFetch::startThread()
{ {
#ifndef LL_RELEASE_FOR_DOWNLOAD
mTextureInfo.startRecording(); mTextureInfo.startRecording();
#endif
} }
// Threads: Ttf // Threads: Ttf
...@@ -3193,8 +3203,9 @@ void LLTextureFetch::endThread() ...@@ -3193,8 +3203,9 @@ void LLTextureFetch::endThread()
<< ", ResWaits: " << mTotalResourceWaitCount << ", ResWaits: " << mTotalResourceWaitCount
<< ", TotalHTTPReq: " << getTotalNumHTTPRequests() << ", TotalHTTPReq: " << getTotalNumHTTPRequests()
<< LL_ENDL; << LL_ENDL;
#ifndef LL_RELEASE_FOR_DOWNLOAD
mTextureInfo.stopRecording(); mTextureInfo.stopRecording();
#endif
} }
// Threads: Ttf // Threads: Ttf
...@@ -3340,6 +3351,7 @@ void LLTextureFetch::sendRequestListToSimulators() ...@@ -3340,6 +3351,7 @@ void LLTextureFetch::sendRequestListToSimulators()
// LL_INFOS(LOG_TXT) << "IMAGE REQUEST: " << req->mID << " Discard: " << req->mDesiredDiscard // LL_INFOS(LOG_TXT) << "IMAGE REQUEST: " << req->mID << " Discard: " << req->mDesiredDiscard
// << " Packet: " << packet << " Priority: " << req->mImagePriority << LL_ENDL; // << " Packet: " << packet << " Priority: " << req->mImagePriority << LL_ENDL;
#ifndef LL_RELEASE_FOR_DOWNLOAD
static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false); static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false);
static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator", false); static LLCachedControl<bool> log_to_sim(gSavedSettings,"LogTextureDownloadsToSimulator", false);
if (log_to_viewer_log || log_to_sim) if (log_to_viewer_log || log_to_sim)
...@@ -3349,6 +3361,7 @@ void LLTextureFetch::sendRequestListToSimulators() ...@@ -3349,6 +3361,7 @@ void LLTextureFetch::sendRequestListToSimulators()
mTextureInfo.setRequestSize(req->mID, 0); mTextureInfo.setRequestSize(req->mID, 0);
mTextureInfo.setRequestType(req->mID, LLTextureInfoDetails::REQUEST_TYPE_UDP); mTextureInfo.setRequestType(req->mID, LLTextureInfoDetails::REQUEST_TYPE_UDP);
} }
#endif
req->lockWorkMutex(); // +Mw req->lockWorkMutex(); // +Mw
req->mSentRequest = LLTextureFetchWorker::SENT_SIM; req->mSentRequest = LLTextureFetchWorker::SENT_SIM;
...@@ -3587,6 +3600,7 @@ bool LLTextureFetch::receiveImagePacket(const LLHost& host, const LLUUID& id, U1 ...@@ -3587,6 +3600,7 @@ bool LLTextureFetch::receiveImagePacket(const LLHost& host, const LLUUID& id, U1
removeFromNetworkQueue(worker, true); // failsafe removeFromNetworkQueue(worker, true); // failsafe
} }
#ifndef LL_RELEASE_FOR_DOWNLOAD
if (packet_num >= (worker->mTotalPackets - 1)) if (packet_num >= (worker->mTotalPackets - 1))
{ {
static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false); static LLCachedControl<bool> log_to_viewer_log(gSavedSettings,"LogTextureDownloadsToViewerLog", false);
...@@ -3599,6 +3613,7 @@ bool LLTextureFetch::receiveImagePacket(const LLHost& host, const LLUUID& id, U1 ...@@ -3599,6 +3613,7 @@ bool LLTextureFetch::receiveImagePacket(const LLHost& host, const LLUUID& id, U1
mTextureInfoMainThread.setRequestCompleteTimeAndLog(id, timeNow); mTextureInfoMainThread.setRequestCompleteTimeAndLog(id, timeNow);
} }
} }
#endif
worker->unlockWorkMutex(); // -Mw worker->unlockWorkMutex(); // -Mw
return res; return res;
......
...@@ -334,8 +334,10 @@ class LLTextureFetch : public LLWorkerThread ...@@ -334,8 +334,10 @@ class LLTextureFetch : public LLWorkerThread
cancel_queue_t mCancelQueue; // Mfnq cancel_queue_t mCancelQueue; // Mfnq
F32 mTextureBandwidth; // <none> F32 mTextureBandwidth; // <none>
std::atomic<F32> mMaxBandwidth; std::atomic<F32> mMaxBandwidth;
#ifndef LL_RELEASE_FOR_DOWNLOAD
LLTextureInfo mTextureInfo; LLTextureInfo mTextureInfo;
LLTextureInfo mTextureInfoMainThread; LLTextureInfo mTextureInfoMainThread;
#endif
// XXX possible delete // XXX possible delete
std::atomic<U32Bits> mHTTPTextureBits; std::atomic<U32Bits> mHTTPTextureBits;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment