aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2016-11-04 08:41:01 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-11-04 08:41:01 -0700
commit12ae597ef54c35e9c447f5f52ecbc153503e8b73 (patch)
treee284d94b5c97fc67684791d393bc80a176f957a9
parentbab7945563c2b01f882b37a22b7b3c7ff0e8a3d8 (diff)
Use alignas to force alignment.
Using alignas reduces code and platform specific macros. Use alignas instead of std::aligned_storage because it is unimplemneted in MSVC 2015. Here is the bug from MS: https://connect.microsoft.com/VisualStudio/feedback/details/1559873/std-aligned-storage-cannot-align-type-with-16-byte BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2468243002 TBR=reed@google.com Review-Url: https://codereview.chromium.org/2473143002
-rw-r--r--include/core/SkPostConfig.h9
-rw-r--r--src/core/SkLinearBitmapPipeline.h20
-rw-r--r--src/core/SkSmallAllocator.h16
3 files changed, 12 insertions, 33 deletions
diff --git a/include/core/SkPostConfig.h b/include/core/SkPostConfig.h
index 1b1cb3e751..c34397cde6 100644
--- a/include/core/SkPostConfig.h
+++ b/include/core/SkPostConfig.h
@@ -77,15 +77,6 @@
# endif
#endif
-// As usual, there are two ways to increase alignment... the MSVC way and the everyone-else way.
-#ifndef SK_STRUCT_ALIGN
- #ifdef _MSC_VER
- #define SK_STRUCT_ALIGN(N) __declspec(align(N))
- #else
- #define SK_STRUCT_ALIGN(N) __attribute__((aligned(N)))
- #endif
-#endif
-
#if defined(_MSC_VER) && SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
#define SK_VECTORCALL __vectorcall
#elif defined(SK_CPU_ARM32) && defined(SK_ARM_HAS_NEON)
diff --git a/src/core/SkLinearBitmapPipeline.h b/src/core/SkLinearBitmapPipeline.h
index 91b573df5d..3abdb8014a 100644
--- a/src/core/SkLinearBitmapPipeline.h
+++ b/src/core/SkLinearBitmapPipeline.h
@@ -78,17 +78,14 @@ public:
// the pipeline on a new sampler.
Base* cloneStageTo(Next* next, Stage* cloneToStage) const;
- Base* get() const { return reinterpret_cast<Base*>(&fSpace); }
+ Base* get() const { return reinterpret_cast<Base*>(fSpace); }
Base* operator->() const { return this->get(); }
Base& operator*() const { return *(this->get()); }
private:
std::function<void (Next*, void*)> fStageCloner;
- struct SK_STRUCT_ALIGN(16) Space {
- char space[kSize];
- };
- bool fIsInitialized;
- mutable Space fSpace;
+ alignas(16) mutable char fSpace[kSize];
+ bool fIsInitialized;
};
///////////////////////////////////////////////////////////////////////////////////////////////////
@@ -111,16 +108,13 @@ public:
fIsInitialized = true;
}
- Base* get() const { return reinterpret_cast<Base*>(&fSpace); }
+ Base* get() const { return reinterpret_cast<Base*>(fSpace); }
Base* operator->() const { return this->get(); }
Base& operator*() const { return *(this->get()); }
private:
- struct SK_STRUCT_ALIGN(16) Space {
- char space[kSize];
- };
- mutable Space fSpace;
- bool fIsInitialized;
+ alignas(16) mutable char fSpace[kSize];
+ bool fIsInitialized;
};
@@ -134,7 +128,7 @@ public:
using MatrixStage = Stage<PointProcessorInterface, 160, PointProcessorInterface>;
using TileStage = Stage<PointProcessorInterface, 160, SampleProcessorInterface>;
using SampleStage = Stage<SampleProcessorInterface, 160, BlendProcessorInterface>;
- using BlenderStage = Stage<BlendProcessorInterface, 40>;
+ using BlenderStage = Stage<BlendProcessorInterface, 48>;
using Accessor = PolyMemory<PixelAccessorInterface, 64>;
private:
diff --git a/src/core/SkSmallAllocator.h b/src/core/SkSmallAllocator.h
index 9095fa57fc..67afe75691 100644
--- a/src/core/SkSmallAllocator.h
+++ b/src/core/SkSmallAllocator.h
@@ -93,7 +93,7 @@ public:
// There is space in fStorage.
rec->fStorageSize = storageRequired;
rec->fHeapStorage = nullptr;
- rec->fObj = static_cast<void*>(fStorage.fBytes + fStorageUsed);
+ rec->fObj = static_cast<void*>(fStorage + fStorageUsed);
fStorageUsed += storageRequired;
}
rec->fKillProc = DestroyT<T>;
@@ -129,17 +129,11 @@ private:
static_cast<T*>(ptr)->~T();
}
- struct SK_STRUCT_ALIGN(16) Storage {
- // we add kMaxObjects * 15 to account for the worst-case slop, where each allocation wasted
- // 15 bytes (due to forcing each to be 16-byte aligned)
- char fBytes[kTotalBytes + kMaxObjects * 15];
- };
-
- Storage fStorage;
+ alignas(16) char fStorage[kTotalBytes];
// Number of bytes used so far.
- size_t fStorageUsed;
- uint32_t fNumObjects;
- Rec fRecs[kMaxObjects];
+ size_t fStorageUsed;
+ uint32_t fNumObjects;
+ Rec fRecs[kMaxObjects];
};
#endif // SkSmallAllocator_DEFINED