mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
LoopVectorizer: Increase the number of pointers that can be tested at runtime. If we cant prove statically that the pointers are disjoint then we add the runtime check.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169334 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -90,7 +90,7 @@ const unsigned TinyTripCountThreshold = 16;
|
|||||||
|
|
||||||
/// When performing a runtime memory check, do not check more than this
|
/// When performing a runtime memory check, do not check more than this
|
||||||
/// number of pointers. Notice that the check is quadratic!
|
/// number of pointers. Notice that the check is quadratic!
|
||||||
const unsigned RuntimeMemoryCheckThreshold = 2;
|
const unsigned RuntimeMemoryCheckThreshold = 4;
|
||||||
|
|
||||||
/// This is the highest vector width that we try to generate.
|
/// This is the highest vector width that we try to generate.
|
||||||
const unsigned MaxVectorSize = 8;
|
const unsigned MaxVectorSize = 8;
|
||||||
|
Reference in New Issue
Block a user