Skip to content
  • Paulo Zanoni's avatar
    vulkan: don't zero-initialize STACK_ARRAY()'s stack array · b0653370
    Paulo Zanoni authored and Marge Bot's avatar Marge Bot committed
    STACK_ARRAY() is used in a lot of places. When games are running we
    see STACK_ARRAY() arrays being used all the time: each queue
    submission uses 6, WaitSemaphores and syncobj waiting also uses them:
    they're constantly present in Vulkan runtime.
    
    There's no need for STACK_ARRAY()'s stack array to be initialized,
    callers cannot not depend on it. If the number of elements is greater
    than STACK_ARRAY_SIZE, then STACK_ARRAY() will just malloc() the array
    and return it not initialized: anybody depending of
    zero-initialization is going to break when the array is big.
    
    The reason why we're zero-intializing STACK_ARRAY()'s stack array is
    to silence -Wmaybe-uninitialized warnings: see commit d7957df3
    ("vulkan: fix uninitialized variables"). I don't think that commit is
    the ideal way to deal with the problem, so this patch proposes a
    better solution.
    
    The problem here is that zero-initializing it adds code we don't need
    for every single caller. STACK_ARRAY() already has 63 callers and only
    3 of them are affected by the -Wmaybe-uninitialized warining. So here
    we undo what commit d7957df3 did and instead we fix the 3 cases
    that actually generate the -Wmaybe-uninitialized warnings.
    
    Gcc is only emitting those warinings because it knows that the number
    of elements in the array may be zero, so the loops we have that set
    elements to the array may end up do nothing, and then we pass the
    array uninitialized to other functions.
    
    For the cases related to vk_sync this is just returning VK_SUCCESS
    earlier, instead of relying on the check that eventually happens at
    __vk_sync_wait_many(). For the vkCmdWaitEvents() function, the Vulkan
    spec says that "eventCount must be greater than 0", so the early
    return doesn't hurt anybody either. In both cases we make the zero
    case faster by not defining an 8-sized array, zero-initializing it,
    then returning success without using it.
    
    Reference: d7957df3
    
     ("vulkan: fix uninitialized variables")
    Acked-by: default avatarYonggang Luo <luoyonggang@gmail.com>
    Reviewed-by: default avatarYiwei Zhang <zzyiwei@chromium.org>
    Signed-off-by: default avatarPaulo Zanoni <paulo.r.zanoni@intel.com>
    Part-of: <!28288>
    b0653370