Skip to content
Snippets Groups Projects
Commit 44cc14fb authored by Richard Linden's avatar Richard Linden
Browse files

fix for mac builds

parent 7b076298
No related branches found
No related tags found
No related merge requests found
...@@ -152,43 +152,48 @@ class LLThreadLocalSingleton ...@@ -152,43 +152,48 @@ class LLThreadLocalSingleton
virtual ~LLThreadLocalSingleton() virtual ~LLThreadLocalSingleton()
{ {
sInstance = NULL; sInstance = NULL;
sInitState = DELETED; setInitState(DELETED);
} }
static void deleteSingleton() static void deleteSingleton()
{ {
delete sInstance; delete sInstance;
sInstance = NULL; sInstance = NULL;
sInitState = DELETED; setInitState(DELETED);
} }
static DERIVED_TYPE* getInstance() static DERIVED_TYPE* getInstance()
{ {
if (sInitState == CONSTRUCTING) EInitState init_state = getInitState();
if (init_state == CONSTRUCTING)
{ {
llerrs << "Tried to access singleton " << typeid(DERIVED_TYPE).name() << " from singleton constructor!" << llendl; llerrs << "Tried to access singleton " << typeid(DERIVED_TYPE).name() << " from singleton constructor!" << llendl;
} }
if (sInitState == DELETED) if (init_state == DELETED)
{ {
llwarns << "Trying to access deleted singleton " << typeid(DERIVED_TYPE).name() << " creating new instance" << llendl; llwarns << "Trying to access deleted singleton " << typeid(DERIVED_TYPE).name() << " creating new instance" << llendl;
} }
if (!sInstance) if (!getIfExists())
{ {
sInitState = CONSTRUCTING; setInitState(CONSTRUCTING);
sInstance = new DERIVED_TYPE(); sInstance = new DERIVED_TYPE();
sInitState = INITIALIZING; setInitState(INITIALIZING);
sInstance->initSingleton(); sInstance->initSingleton();
sInitState = INITIALIZED; setInitState(INITIALIZED);
} }
return sInstance; return getIfExists();
} }
static DERIVED_TYPE* getIfExists() static DERIVED_TYPE* getIfExists()
{ {
#if LL_DARWIN
return sInstance.get();
#else
return sInstance; return sInstance;
#endif
} }
// Reference version of getInstance() // Reference version of getInstance()
...@@ -202,16 +207,33 @@ class LLThreadLocalSingleton ...@@ -202,16 +207,33 @@ class LLThreadLocalSingleton
// Use this to avoid accessing singletons before the can safely be constructed // Use this to avoid accessing singletons before the can safely be constructed
static bool instanceExists() static bool instanceExists()
{ {
return sInitState == INITIALIZED; return getInitState() == INITIALIZED;
} }
// Has this singleton already been deleted? // Has this singleton already been deleted?
// Use this to avoid accessing singletons from a static object's destructor // Use this to avoid accessing singletons from a static object's destructor
static bool destroyed() static bool destroyed()
{ {
return sInitState == DELETED; return getInitState() == DELETED;
} }
private: private:
static EInitState getInitState()
{
#if LL_DARWIN
return (EInitState)(int)sInitState.get();
#else
return sInitState;
#endif
}
static void setInitState(EInitState state)
{
#if LL_DARWIN
sInitState = (int*)state;
#else
sInitState = state;
#endif
}
LLThreadLocalSingleton(const LLThreadLocalSingleton& other); LLThreadLocalSingleton(const LLThreadLocalSingleton& other);
virtual void initSingleton() {} virtual void initSingleton() {}
...@@ -221,10 +243,13 @@ class LLThreadLocalSingleton ...@@ -221,10 +243,13 @@ class LLThreadLocalSingleton
#elif LL_LINUX #elif LL_LINUX
static __thread DERIVED_TYPE* sInstance; static __thread DERIVED_TYPE* sInstance;
static __thread EInitState sInitState; static __thread EInitState sInitState;
#elif LL_DARWIN
static LLThreadLocalPointer<DERIVED_TYPE> sInstance;
static LLThreadLocalPointer<int> sInitState;
#endif #endif
}; };
#ifdef LL_WINDOWS #if LL_WINDOWS
template<typename DERIVED_TYPE> template<typename DERIVED_TYPE>
__declspec(thread) DERIVED_TYPE* LLThreadLocalSingleton<DERIVED_TYPE>::sInstance = NULL; __declspec(thread) DERIVED_TYPE* LLThreadLocalSingleton<DERIVED_TYPE>::sInstance = NULL;
...@@ -236,6 +261,12 @@ __thread DERIVED_TYPE* LLThreadLocalSingleton<DERIVED_TYPE>::sInstance = NULL; ...@@ -236,6 +261,12 @@ __thread DERIVED_TYPE* LLThreadLocalSingleton<DERIVED_TYPE>::sInstance = NULL;
template<typename DERIVED_TYPE> template<typename DERIVED_TYPE>
__thread typename LLThreadLocalSingleton<DERIVED_TYPE>::EInitState LLThreadLocalSingleton<DERIVED_TYPE>::sInitState = LLThreadLocalSingleton<DERIVED_TYPE>::UNINITIALIZED; __thread typename LLThreadLocalSingleton<DERIVED_TYPE>::EInitState LLThreadLocalSingleton<DERIVED_TYPE>::sInitState = LLThreadLocalSingleton<DERIVED_TYPE>::UNINITIALIZED;
#elif LL_DARWIN
template<typename DERIVED_TYPE>
LLThreadLocalPointer<DERIVED_TYPE> LLThreadLocalSingleton<DERIVED_TYPE>::sInstance;
template<typename DERIVED_TYPE>
LLThreadLocalPointer<int> LLThreadLocalSingleton<DERIVED_TYPE>::sInitState;
#endif #endif
template<typename DERIVED_TYPE> template<typename DERIVED_TYPE>
...@@ -249,7 +280,11 @@ class LLThreadLocalSingletonPointer ...@@ -249,7 +280,11 @@ class LLThreadLocalSingletonPointer
LL_FORCE_INLINE static DERIVED_TYPE* getInstance() LL_FORCE_INLINE static DERIVED_TYPE* getInstance()
{ {
#if LL_DARWIN
return sInstance.get();
#else
return sInstance; return sInstance;
#endif
} }
LL_FORCE_INLINE static void setInstance(DERIVED_TYPE* instance) LL_FORCE_INLINE static void setInstance(DERIVED_TYPE* instance)
...@@ -258,18 +293,24 @@ class LLThreadLocalSingletonPointer ...@@ -258,18 +293,24 @@ class LLThreadLocalSingletonPointer
} }
private: private:
#ifdef LL_WINDOWS #if LL_WINDOWS
static __declspec(thread) DERIVED_TYPE* sInstance; static __declspec(thread) DERIVED_TYPE* sInstance;
#elif LL_LINUX #elif LL_LINUX
static __thread DERIVED_TYPE* sInstance; static __thread DERIVED_TYPE* sInstance;
#elif LL_DARWIN
static LLThreadLocalPointer<DERIVED_TYPE> sInstance;
#endif #endif
}; };
#if LL_WINDOWS
template<typename DERIVED_TYPE> template<typename DERIVED_TYPE>
#ifdef LL_WINDOWS
__declspec(thread) DERIVED_TYPE* LLThreadLocalSingletonPointer<DERIVED_TYPE>::sInstance = NULL; __declspec(thread) DERIVED_TYPE* LLThreadLocalSingletonPointer<DERIVED_TYPE>::sInstance = NULL;
#elif LL_LINUX #elif LL_LINUX
template<typename DERIVED_TYPE>
__thread DERIVED_TYPE* LLThreadLocalSingletonPointer<DERIVED_TYPE>::sInstance = NULL; __thread DERIVED_TYPE* LLThreadLocalSingletonPointer<DERIVED_TYPE>::sInstance = NULL;
#elif LL_DARWIN
template<typename DERIVED_TYPE>
LLThreadLocalPointer<DERIVED_TYPE> LLThreadLocalSingletonPointer<DERIVED_TYPE>::sInstance;
#endif #endif
#endif // LL_LLTHREADLOCALSTORAGE_H #endif // LL_LLTHREADLOCALSTORAGE_H
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include <Carbon/Carbon.h> #include <Carbon/Carbon.h>
#include <QuickTime/QuickTime.h> #include <QuickTime/QuickTime.h>
#include <AudioUnit/AudioUnit.h> #include <AudioUnit/AudioUnit.h>
#include <list>
struct VolumeCatcherStorage; struct VolumeCatcherStorage;
......
...@@ -514,7 +514,7 @@ void LLFastTimerView::draw() ...@@ -514,7 +514,7 @@ void LLFastTimerView::draw()
else else
{ {
ms = LLUnit<LLUnits::Seconds, F64>(frame_recording.getPeriodMean(*idp)); ms = LLUnit<LLUnits::Seconds, F64>(frame_recording.getPeriodMean(*idp));
calls = (S32)frame_recording.getPeriodMean((F32)idp->callCount()); calls = (S32)frame_recording.getPeriodMean(idp->callCount());
} }
if (mDisplayCalls) if (mDisplayCalls)
......
...@@ -394,7 +394,7 @@ BOOL LLVOWLSky::updateGeometry(LLDrawable * drawable) ...@@ -394,7 +394,7 @@ BOOL LLVOWLSky::updateGeometry(LLDrawable * drawable)
segment->flush(); segment->flush();
} }
llinfos << "completed in " << llformat("%.2f", timer.getElapsedTimeF32()) << "seconds" << llendl; llinfos << "completed in " << llformat("%.2f", timer.getElapsedTimeF32().value()) << "seconds" << llendl;
} }
#else #else
mStripsVerts = new LLVertexBuffer(LLDrawPoolWLSky::SKY_VERTEX_DATA_MASK, GL_STATIC_DRAW_ARB); mStripsVerts = new LLVertexBuffer(LLDrawPoolWLSky::SKY_VERTEX_DATA_MASK, GL_STATIC_DRAW_ARB);
......
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