R600: Recommit 199842: Add work-around for the CF stack entry HW bug
authorTom Stellard <thomas.stellard@amd.com>
Thu, 23 Jan 2014 16:18:02 +0000 (16:18 +0000)
committerTom Stellard <thomas.stellard@amd.com>
Thu, 23 Jan 2014 16:18:02 +0000 (16:18 +0000)
commit7d3b9d96b6405c1a0b6d1ae73d5a4a1d506d500d
tree6b2c2f1ebc797eca2bc9921c0ac47e59d83568bd
parent03b94a460d9cfd86e438cd88596d93c63fc3c3e0
R600: Recommit 199842: Add work-around for the CF stack entry HW bug

The unit test is now disabled on non-asserts builds.

The CF stack can be corrupted if you use CF_ALU_PUSH_BEFORE,
CF_ALU_ELSE_AFTER, CF_ALU_BREAK, or CF_ALU_CONTINUE when the number of
sub-entries on the stack is greater than or equal to the stack entry
size and sub-entries modulo 4 is either 0 or 3 (on cedar the bug is
present when number of sub-entries module 8 is either 7 or 0)

We choose to be conservative and always apply the work-around when the
number of sub-enries is greater than or equal to the stack entry size,
so that we can safely over-allocate the stack when we are unsure of the
stack allocation rules.

reviewed-by: Vincent Lejeune <vljn at ovi.com>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199905 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/R600/AMDGPU.td
lib/Target/R600/AMDGPUSubtarget.cpp
lib/Target/R600/AMDGPUSubtarget.h
lib/Target/R600/Processors.td
lib/Target/R600/R600ControlFlowFinalizer.cpp
test/CodeGen/R600/cf-stack-bug.ll [new file with mode: 0644]