Compare commits
57 Commits
explicit-s
...
mesa-18.3.
Author | SHA1 | Date | |
---|---|---|---|
|
4b3f884673 | ||
|
65926d5d94 | ||
|
f25fb52eae | ||
|
0b48c82ad9 | ||
|
087f1534ae | ||
|
a57a727617 | ||
|
971ce9f854 | ||
|
bfe7eda028 | ||
|
221a8e3366 | ||
|
c8fef27cd3 | ||
|
4505df1676 | ||
|
8b5ce5fa70 | ||
|
cfd333c768 | ||
|
3853b9c14d | ||
|
98c0d87acd | ||
|
fc99358bdc | ||
|
9650fc05a5 | ||
|
e1dc5715b2 | ||
|
fbe2a54991 | ||
|
940d3a4ef8 | ||
|
9d92b603f1 | ||
|
e2494a9387 | ||
|
8a79c536d5 | ||
|
cc572038bf | ||
|
ad99afdce6 | ||
|
7ea4e43c55 | ||
|
6a706763d0 | ||
|
9b8380a4f9 | ||
|
fff64af317 | ||
|
5f137e94b9 | ||
|
c64a78ec0a | ||
|
73f457f486 | ||
|
f55265776f | ||
|
4c995fcae7 | ||
|
09c5e548c4 | ||
|
15442cac5c | ||
|
61c64f64d7 | ||
|
5b35600422 | ||
|
ede46c67ea | ||
|
ecb1bef871 | ||
|
a93d19f542 | ||
|
7053fe50c3 | ||
|
327330e77c | ||
|
422c905f4b | ||
|
1348e6e255 | ||
|
97a3ef3d1c | ||
|
6463af186c | ||
|
45fe51a0ee | ||
|
5adc1920ee | ||
|
6adbf17ce9 | ||
|
d5e33d2aa6 | ||
|
959a9d42d7 | ||
|
52e01585c4 | ||
|
12c5eb2fd3 | ||
|
949b1048f7 | ||
|
22201d2048 | ||
|
60fe2f6ecc |
@@ -1,81 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Script for generating a list of candidates [referenced by a Fixes tag] for
|
||||
# cherry-picking to a stable branch
|
||||
#
|
||||
# Usage examples:
|
||||
#
|
||||
# $ bin/get-fixes-pick-list.sh
|
||||
# $ bin/get-fixes-pick-list.sh > picklist
|
||||
# $ bin/get-fixes-pick-list.sh | tee picklist
|
||||
|
||||
# Use the last branchpoint as our limit for the search
|
||||
latest_branchpoint=`git merge-base origin/master HEAD`
|
||||
|
||||
# List all the commits between day 1 and the branch point...
|
||||
git log --reverse --pretty=%H $latest_branchpoint > already_landed
|
||||
|
||||
# ... and the ones cherry-picked.
|
||||
git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
|
||||
grep "cherry picked from commit" |\
|
||||
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
|
||||
|
||||
# Grep for commits with Fixes tag
|
||||
git log --reverse --pretty=%H -i --grep="fixes:" $latest_branchpoint..origin/master |\
|
||||
while read sha
|
||||
do
|
||||
# Check to see whether the patch is on the ignore list ...
|
||||
if [ -f bin/.cherry-ignore ] ; then
|
||||
if grep -q ^$sha bin/.cherry-ignore ; then
|
||||
continue
|
||||
fi
|
||||
fi
|
||||
|
||||
# Skip if it has been already cherry-picked.
|
||||
if grep -q ^$sha already_picked ; then
|
||||
continue
|
||||
fi
|
||||
|
||||
# Place every "fixes:" tag on its own line and join with the next word
|
||||
# on its line or a later one.
|
||||
fixes=`git show --pretty=medium -s $sha | tr -d "\n" | sed -e 's/fixes:[[:space:]]*/\nfixes:/Ig' | grep "fixes:" | sed -e 's/\(fixes:[a-zA-Z0-9]*\).*$/\1/'`
|
||||
|
||||
# For each one try to extract the tag
|
||||
fixes_count=`echo "$fixes" | wc -l`
|
||||
warn=`(test $fixes_count -gt 1 && echo $fixes_count) || echo 0`
|
||||
while [ $fixes_count -gt 0 ] ; do
|
||||
# Treat only the current line
|
||||
id=`echo "$fixes" | tail -n $fixes_count | head -n 1 | cut -d : -f 2`
|
||||
fixes_count=$(($fixes_count-1))
|
||||
|
||||
# Bail out if we cannot find suitable id.
|
||||
# Any specific validation the $id is valid and not some junk, is
|
||||
# implied with the follow up code
|
||||
if [ "x$id" = x ] ; then
|
||||
continue
|
||||
fi
|
||||
|
||||
# Check if the offending commit is in branch.
|
||||
|
||||
# Be that cherry-picked ...
|
||||
# ... or landed before the branchpoint.
|
||||
if grep -q ^$id already_picked ||
|
||||
grep -q ^$id already_landed ; then
|
||||
|
||||
printf "Commit \"%s\" fixes %s\n" \
|
||||
"`git log -n1 --pretty=oneline $sha`" \
|
||||
"$id"
|
||||
warn=$(($warn-1))
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
if [ $warn -gt 0 ] ; then
|
||||
printf "WARNING: Commit \"%s\" has more than one Fixes tag\n" \
|
||||
"`git log -n1 --pretty=oneline $sha`"
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
rm -f already_picked
|
||||
rm -f already_landed
|
@@ -7,21 +7,92 @@
|
||||
# $ bin/get-pick-list.sh
|
||||
# $ bin/get-pick-list.sh > picklist
|
||||
# $ bin/get-pick-list.sh | tee picklist
|
||||
#
|
||||
# The output is as follows:
|
||||
# [nomination_type] commit_sha commit summary
|
||||
|
||||
is_stable_nomination()
|
||||
{
|
||||
git show --summary "$1" | grep -q -i -o "CC:.*mesa-stable"
|
||||
}
|
||||
|
||||
is_typod_nomination()
|
||||
{
|
||||
git show --summary "$1" | grep -q -i -o "CC:.*mesa-dev"
|
||||
}
|
||||
|
||||
# Helper to handle various mistypos of the fixes tag.
|
||||
# The tag string itself is passed as argument and normalised within.
|
||||
is_sha_nomination()
|
||||
{
|
||||
fixes=`git show --pretty=medium -s $1 | tr -d "\n" | \
|
||||
sed -e 's/'"$2"'/\nfixes:/Ig' | \
|
||||
grep -Eo 'fixes:[a-f0-9]{8,40}'`
|
||||
|
||||
fixes_count=`echo "$fixes" | wc -l`
|
||||
if test $fixes_count -eq 0; then
|
||||
return 0
|
||||
fi
|
||||
while test $fixes_count -gt 0; do
|
||||
# Treat only the current line
|
||||
id=`echo "$fixes" | tail -n $fixes_count | head -n 1 | cut -d : -f 2`
|
||||
fixes_count=$(($fixes_count-1))
|
||||
|
||||
# Bail out if we cannot find suitable id.
|
||||
# Any specific validation the $id is valid and not some junk, is
|
||||
# implied with the follow up code
|
||||
if test "x$id" = x; then
|
||||
continue
|
||||
fi
|
||||
|
||||
#Check if the offending commit is in branch.
|
||||
|
||||
# Be that cherry-picked ...
|
||||
# ... or landed before the branchpoint.
|
||||
if grep -q ^$id already_picked ||
|
||||
grep -q ^$id already_landed ; then
|
||||
return 0
|
||||
fi
|
||||
done
|
||||
return 1
|
||||
}
|
||||
|
||||
is_fixes_nomination()
|
||||
{
|
||||
is_sha_nomination "$1" "fixes:[[:space:]]*"
|
||||
if test $? -eq 0; then
|
||||
return 0
|
||||
fi
|
||||
is_sha_nomination "$1" "fixes[[:space:]]\+"
|
||||
}
|
||||
|
||||
is_brokenby_nomination()
|
||||
{
|
||||
is_sha_nomination "$1" "broken by"
|
||||
}
|
||||
|
||||
is_revert_nomination()
|
||||
{
|
||||
is_sha_nomination "$1" "This reverts commit "
|
||||
}
|
||||
|
||||
# Use the last branchpoint as our limit for the search
|
||||
latest_branchpoint=`git merge-base origin/master HEAD`
|
||||
|
||||
# Grep for commits with "cherry picked from commit" in the commit message.
|
||||
# List all the commits between day 1 and the branch point...
|
||||
git log --reverse --pretty=%H $latest_branchpoint > already_landed
|
||||
|
||||
# ... and the ones cherry-picked.
|
||||
git log --reverse --pretty=medium --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
|
||||
grep "cherry picked from commit" |\
|
||||
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
|
||||
|
||||
# Grep for commits that were marked as a candidate for the stable tree.
|
||||
git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable' $latest_branchpoint..origin/master |\
|
||||
# Grep for potential candidates
|
||||
git log --reverse --pretty=%H -i --grep='^CC:.*mesa-stable\|^CC:.*mesa-dev\|\<fixes\>\|\<broken by\>\|This reverts commit' $latest_branchpoint..origin/master |\
|
||||
while read sha
|
||||
do
|
||||
# Check to see whether the patch is on the ignore list.
|
||||
if [ -f bin/.cherry-ignore ] ; then
|
||||
if test -f bin/.cherry-ignore; then
|
||||
if grep -q ^$sha bin/.cherry-ignore ; then
|
||||
continue
|
||||
fi
|
||||
@@ -32,7 +103,23 @@ do
|
||||
continue
|
||||
fi
|
||||
|
||||
git log -n1 --pretty=oneline $sha | cat
|
||||
if is_stable_nomination "$sha"; then
|
||||
tag=stable
|
||||
elif is_typod_nomination "$sha"; then
|
||||
tag=typod
|
||||
elif is_fixes_nomination "$sha"; then
|
||||
tag=fixes
|
||||
elif is_brokenby_nomination "$sha"; then
|
||||
tag=brokenby
|
||||
elif is_revert_nomination "$sha"; then
|
||||
tag=revert
|
||||
else
|
||||
continue
|
||||
fi
|
||||
|
||||
printf "[ %8s ] " "$tag"
|
||||
git --no-pager show --summary --oneline $sha
|
||||
done
|
||||
|
||||
rm -f already_picked
|
||||
rm -f already_landed
|
||||
|
@@ -1,42 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Script for generating a list of candidates which have typos in the nomination line
|
||||
#
|
||||
# Usage examples:
|
||||
#
|
||||
# $ bin/get-typod-pick-list.sh
|
||||
# $ bin/get-typod-pick-list.sh > picklist
|
||||
# $ bin/get-typod-pick-list.sh | tee picklist
|
||||
|
||||
# NB:
|
||||
# This script intentionally _never_ checks for specific version tag
|
||||
# Should we consider folding it with the original get-pick-list.sh
|
||||
|
||||
# Use the last branchpoint as our limit for the search
|
||||
latest_branchpoint=`git merge-base origin/master HEAD`
|
||||
|
||||
# Grep for commits with "cherry picked from commit" in the commit message.
|
||||
git log --reverse --grep="cherry picked from commit" $latest_branchpoint..HEAD |\
|
||||
grep "cherry picked from commit" |\
|
||||
sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
|
||||
|
||||
# Grep for commits that were marked as a candidate for the stable tree.
|
||||
git log --reverse --pretty=%H -i --grep='^CC:.*mesa-dev' $latest_branchpoint..origin/master |\
|
||||
while read sha
|
||||
do
|
||||
# Check to see whether the patch is on the ignore list.
|
||||
if [ -f bin/.cherry-ignore ] ; then
|
||||
if grep -q ^$sha bin/.cherry-ignore ; then
|
||||
continue
|
||||
fi
|
||||
fi
|
||||
|
||||
# Check to see if it has already been picked over.
|
||||
if grep -q ^$sha already_picked ; then
|
||||
continue
|
||||
fi
|
||||
|
||||
git log -n1 --pretty=oneline $sha | cat
|
||||
done
|
||||
|
||||
rm -f already_picked
|
@@ -21,6 +21,7 @@
|
||||
<li><a href="#overview">Overview</a>
|
||||
<li><a href="#schedule">Release schedule</a>
|
||||
<li><a href="#pickntest">Cherry-pick and test</a>
|
||||
<li><a href="#stagingbranch">Staging branch</a>
|
||||
<li><a href="#branch">Making a branchpoint</a>
|
||||
<li><a href="#prerelease">Pre-release announcement</a>
|
||||
<li><a href="#release">Making a new release</a>
|
||||
@@ -209,6 +210,25 @@ system and making some every day's use until the release may be a good
|
||||
idea too.
|
||||
</p>
|
||||
|
||||
<h1 id="stagingbranch">Staging branch</h1>
|
||||
|
||||
<p>
|
||||
A live branch, which contains the currently merge/rejected patches is available
|
||||
in the main repository under <code>staging/X.Y</code>. For example:
|
||||
</p>
|
||||
<pre>
|
||||
staging/18.1 - WIP branch for the 18.1 series
|
||||
staging/18.2 - WIP branch for the 18.2 series
|
||||
</pre>
|
||||
|
||||
<p>
|
||||
Notes:
|
||||
</p>
|
||||
<ul>
|
||||
<li>People are encouraged to test the branch and report regressions.</li>
|
||||
<li>The branch history is not stable and it <strong>will</strong> be rebased,</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<h1 id="branch">Making a branchpoint</h1>
|
||||
|
||||
|
@@ -251,6 +251,9 @@ If you are not the author of the original patch, please Cc: them in your
|
||||
nomination request.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
The current patch status can be observed in the <a href="releasing.html#stagingbranch">staging branch</a>.
|
||||
</p>
|
||||
|
||||
<h3 id="thetag">The stable tag</h3>
|
||||
|
||||
|
14
meson.build
14
meson.build
@@ -787,7 +787,7 @@ endif
|
||||
|
||||
# Check for generic C arguments
|
||||
c_args = []
|
||||
foreach a : ['-Wall', '-Werror=implicit-function-declaration',
|
||||
foreach a : ['-Werror=implicit-function-declaration',
|
||||
'-Werror=missing-prototypes', '-Werror=return-type',
|
||||
'-fno-math-errno',
|
||||
'-fno-trapping-math', '-Qunused-arguments']
|
||||
@@ -809,7 +809,7 @@ endif
|
||||
|
||||
# Check for generic C++ arguments
|
||||
cpp_args = []
|
||||
foreach a : ['-Wall', '-Werror=return-type',
|
||||
foreach a : ['-Werror=return-type',
|
||||
'-fno-math-errno', '-fno-trapping-math',
|
||||
'-Qunused-arguments']
|
||||
if cpp.has_argument(a)
|
||||
@@ -905,8 +905,9 @@ if not cc.links('''#include <stdint.h>
|
||||
int main() {
|
||||
return __sync_add_and_fetch(&v, (uint64_t)1);
|
||||
}''',
|
||||
dependencies : dep_atomic,
|
||||
name : 'GCC 64bit atomics')
|
||||
pre_args += '-DMISSING_64_BIT_ATOMICS'
|
||||
pre_args += '-DMISSING_64BIT_ATOMICS'
|
||||
endif
|
||||
|
||||
# TODO: shared/static? Is this even worth doing?
|
||||
@@ -1317,13 +1318,6 @@ if with_platform_wayland
|
||||
'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
|
||||
)
|
||||
pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
|
||||
else
|
||||
prog_wl_scanner = []
|
||||
wl_scanner_arg = ''
|
||||
dep_wl_protocols = null_dep
|
||||
dep_wayland_client = null_dep
|
||||
dep_wayland_server = null_dep
|
||||
wayland_dmabuf_xml = ''
|
||||
endif
|
||||
|
||||
dep_x11 = null_dep
|
||||
|
@@ -311,9 +311,18 @@ static LLVMValueRef emit_uint_carry(struct ac_llvm_context *ctx,
|
||||
}
|
||||
|
||||
static LLVMValueRef emit_b2f(struct ac_llvm_context *ctx,
|
||||
LLVMValueRef src0)
|
||||
LLVMValueRef src0,
|
||||
unsigned bitsize)
|
||||
{
|
||||
return LLVMBuildAnd(ctx->builder, src0, LLVMBuildBitCast(ctx->builder, LLVMConstReal(ctx->f32, 1.0), ctx->i32, ""), "");
|
||||
LLVMValueRef result = LLVMBuildAnd(ctx->builder, src0,
|
||||
LLVMBuildBitCast(ctx->builder, LLVMConstReal(ctx->f32, 1.0), ctx->i32, ""),
|
||||
"");
|
||||
result = LLVMBuildBitCast(ctx->builder, result, ctx->f32, "");
|
||||
|
||||
if (bitsize == 32)
|
||||
return result;
|
||||
|
||||
return LLVMBuildFPExt(ctx->builder, result, ctx->f64, "");
|
||||
}
|
||||
|
||||
static LLVMValueRef emit_f2b(struct ac_llvm_context *ctx,
|
||||
@@ -932,7 +941,7 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr)
|
||||
result = emit_uint_carry(&ctx->ac, "llvm.usub.with.overflow.i32", src[0], src[1]);
|
||||
break;
|
||||
case nir_op_b2f:
|
||||
result = emit_b2f(&ctx->ac, src[0]);
|
||||
result = emit_b2f(&ctx->ac, src[0], instr->dest.dest.ssa.bit_size);
|
||||
break;
|
||||
case nir_op_f2b:
|
||||
result = emit_f2b(&ctx->ac, src[0]);
|
||||
|
@@ -74,7 +74,8 @@ LOCAL_C_INCLUDES := \
|
||||
$(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_vulkan_util,,)/util
|
||||
|
||||
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
||||
libmesa_vulkan_util
|
||||
libmesa_vulkan_util \
|
||||
libmesa_git_sha1
|
||||
|
||||
LOCAL_GENERATED_SOURCES += $(intermediates)/radv_entrypoints.c
|
||||
LOCAL_GENERATED_SOURCES += $(intermediates)/radv_entrypoints.h
|
||||
|
@@ -1950,6 +1950,8 @@ radv_flush_streamout_descriptors(struct radv_cmd_buffer *cmd_buffer)
|
||||
|
||||
va = radv_buffer_get_va(buffer->bo) + buffer->offset;
|
||||
|
||||
va += sb[i].offset;
|
||||
|
||||
/* Set the descriptor.
|
||||
*
|
||||
* On VI, the format must be non-INVALID, otherwise
|
||||
@@ -3518,8 +3520,13 @@ static bool radv_need_late_scissor_emission(struct radv_cmd_buffer *cmd_buffer,
|
||||
|
||||
uint32_t used_states = cmd_buffer->state.pipeline->graphics.needed_dynamic_state | ~RADV_CMD_DIRTY_DYNAMIC_ALL;
|
||||
|
||||
/* Index & Vertex buffer don't change context regs, and pipeline is handled later. */
|
||||
used_states &= ~(RADV_CMD_DIRTY_INDEX_BUFFER | RADV_CMD_DIRTY_VERTEX_BUFFER | RADV_CMD_DIRTY_PIPELINE);
|
||||
/* Index, vertex and streamout buffers don't change context regs, and
|
||||
* pipeline is handled later.
|
||||
*/
|
||||
used_states &= ~(RADV_CMD_DIRTY_INDEX_BUFFER |
|
||||
RADV_CMD_DIRTY_VERTEX_BUFFER |
|
||||
RADV_CMD_DIRTY_STREAMOUT_BUFFER |
|
||||
RADV_CMD_DIRTY_PIPELINE);
|
||||
|
||||
/* Assume all state changes except these two can imply context rolls. */
|
||||
if (cmd_buffer->state.dirty & used_states)
|
||||
@@ -4741,28 +4748,30 @@ void radv_CmdBeginTransformFeedbackEXT(
|
||||
struct radv_streamout_binding *sb = cmd_buffer->streamout_bindings;
|
||||
struct radv_streamout_state *so = &cmd_buffer->state.streamout;
|
||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||
uint32_t i;
|
||||
|
||||
radv_flush_vgt_streamout(cmd_buffer);
|
||||
|
||||
assert(firstCounterBuffer + counterBufferCount <= MAX_SO_BUFFERS);
|
||||
for (uint32_t i = firstCounterBuffer; i < counterBufferCount; i++) {
|
||||
if (!(so->enabled_mask & (1 << i)))
|
||||
continue;
|
||||
for_each_bit(i, so->enabled_mask) {
|
||||
int32_t counter_buffer_idx = i - firstCounterBuffer;
|
||||
if (counter_buffer_idx >= 0 && counter_buffer_idx > counterBufferCount)
|
||||
counter_buffer_idx = -1;
|
||||
|
||||
/* SI binds streamout buffers as shader resources.
|
||||
* VGT only counts primitives and tells the shader through
|
||||
* SGPRs what to do.
|
||||
*/
|
||||
radeon_set_context_reg_seq(cs, R_028AD0_VGT_STRMOUT_BUFFER_SIZE_0 + 16*i, 2);
|
||||
radeon_emit(cs, (sb[i].offset + sb[i].size) >> 2); /* BUFFER_SIZE (in DW) */
|
||||
radeon_emit(cs, sb[i].size >> 2); /* BUFFER_SIZE (in DW) */
|
||||
radeon_emit(cs, so->stride_in_dw[i]); /* VTX_STRIDE (in DW) */
|
||||
|
||||
if (pCounterBuffers && pCounterBuffers[i]) {
|
||||
if (counter_buffer_idx >= 0 && pCounterBuffers && pCounterBuffers[counter_buffer_idx]) {
|
||||
/* The array of counter buffers is optional. */
|
||||
RADV_FROM_HANDLE(radv_buffer, buffer, pCounterBuffers[i]);
|
||||
RADV_FROM_HANDLE(radv_buffer, buffer, pCounterBuffers[counter_buffer_idx]);
|
||||
uint64_t va = radv_buffer_get_va(buffer->bo);
|
||||
|
||||
va += buffer->offset + pCounterBufferOffsets[i];
|
||||
va += buffer->offset + pCounterBufferOffsets[counter_buffer_idx];
|
||||
|
||||
/* Append */
|
||||
radeon_emit(cs, PKT3(PKT3_STRMOUT_BUFFER_UPDATE, 4, 0));
|
||||
@@ -4783,7 +4792,7 @@ void radv_CmdBeginTransformFeedbackEXT(
|
||||
STRMOUT_OFFSET_SOURCE(STRMOUT_OFFSET_FROM_PACKET)); /* control */
|
||||
radeon_emit(cs, 0); /* unused */
|
||||
radeon_emit(cs, 0); /* unused */
|
||||
radeon_emit(cs, sb[i].offset >> 2); /* buffer offset in DW */
|
||||
radeon_emit(cs, 0); /* unused */
|
||||
radeon_emit(cs, 0); /* unused */
|
||||
}
|
||||
}
|
||||
@@ -4801,20 +4810,22 @@ void radv_CmdEndTransformFeedbackEXT(
|
||||
RADV_FROM_HANDLE(radv_cmd_buffer, cmd_buffer, commandBuffer);
|
||||
struct radv_streamout_state *so = &cmd_buffer->state.streamout;
|
||||
struct radeon_cmdbuf *cs = cmd_buffer->cs;
|
||||
uint32_t i;
|
||||
|
||||
radv_flush_vgt_streamout(cmd_buffer);
|
||||
|
||||
assert(firstCounterBuffer + counterBufferCount <= MAX_SO_BUFFERS);
|
||||
for (uint32_t i = firstCounterBuffer; i < counterBufferCount; i++) {
|
||||
if (!(so->enabled_mask & (1 << i)))
|
||||
continue;
|
||||
for_each_bit(i, so->enabled_mask) {
|
||||
int32_t counter_buffer_idx = i - firstCounterBuffer;
|
||||
if (counter_buffer_idx >= 0 && counter_buffer_idx > counterBufferCount)
|
||||
counter_buffer_idx = -1;
|
||||
|
||||
if (pCounterBuffers && pCounterBuffers[i]) {
|
||||
if (counter_buffer_idx >= 0 && pCounterBuffers && pCounterBuffers[counter_buffer_idx]) {
|
||||
/* The array of counters buffer is optional. */
|
||||
RADV_FROM_HANDLE(radv_buffer, buffer, pCounterBuffers[i]);
|
||||
RADV_FROM_HANDLE(radv_buffer, buffer, pCounterBuffers[counter_buffer_idx]);
|
||||
uint64_t va = radv_buffer_get_va(buffer->bo);
|
||||
|
||||
va += buffer->offset + pCounterBufferOffsets[i];
|
||||
va += buffer->offset + pCounterBufferOffsets[counter_buffer_idx];
|
||||
|
||||
radeon_emit(cs, PKT3(PKT3_STRMOUT_BUFFER_UPDATE, 4, 0));
|
||||
radeon_emit(cs, STRMOUT_SELECT_BUFFER(i) |
|
||||
|
@@ -1054,16 +1054,14 @@ void radv_GetPhysicalDeviceProperties2(
|
||||
(VkPhysicalDeviceSubgroupProperties*)ext;
|
||||
properties->subgroupSize = 64;
|
||||
properties->supportedStages = VK_SHADER_STAGE_ALL;
|
||||
/* TODO: Enable VK_SUBGROUP_FEATURE_VOTE_BIT when wwm
|
||||
* is fixed in LLVM.
|
||||
*/
|
||||
properties->supportedOperations =
|
||||
VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
|
||||
VK_SUBGROUP_FEATURE_BASIC_BIT |
|
||||
VK_SUBGROUP_FEATURE_BALLOT_BIT |
|
||||
VK_SUBGROUP_FEATURE_QUAD_BIT;
|
||||
VK_SUBGROUP_FEATURE_QUAD_BIT |
|
||||
VK_SUBGROUP_FEATURE_VOTE_BIT;
|
||||
if (pdevice->rad_info.chip_class >= VI) {
|
||||
properties->supportedOperations |=
|
||||
VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
|
||||
VK_SUBGROUP_FEATURE_SHUFFLE_BIT |
|
||||
VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT;
|
||||
}
|
||||
|
@@ -595,6 +595,7 @@ struct radv_meta_state {
|
||||
VkPipelineLayout p_layout;
|
||||
VkPipeline occlusion_query_pipeline;
|
||||
VkPipeline pipeline_statistics_query_pipeline;
|
||||
VkPipeline tfb_query_pipeline;
|
||||
} query;
|
||||
};
|
||||
|
||||
|
@@ -512,11 +512,233 @@ build_pipeline_statistics_query_shader(struct radv_device *device) {
|
||||
return b.shader;
|
||||
}
|
||||
|
||||
static nir_shader *
|
||||
build_tfb_query_shader(struct radv_device *device)
|
||||
{
|
||||
/* the shader this builds is roughly
|
||||
*
|
||||
* uint32_t src_stride = 32;
|
||||
*
|
||||
* location(binding = 0) buffer dst_buf;
|
||||
* location(binding = 1) buffer src_buf;
|
||||
*
|
||||
* void main() {
|
||||
* uint64_t result[2] = {};
|
||||
* bool available = false;
|
||||
* uint64_t src_offset = src_stride * global_id.x;
|
||||
* uint64_t dst_offset = dst_stride * global_id.x;
|
||||
* uint64_t *src_data = src_buf[src_offset];
|
||||
* uint32_t avail = (src_data[0] >> 32) &
|
||||
* (src_data[1] >> 32) &
|
||||
* (src_data[2] >> 32) &
|
||||
* (src_data[3] >> 32);
|
||||
* if (avail & 0x80000000) {
|
||||
* result[0] = src_data[3] - src_data[1];
|
||||
* result[1] = src_data[2] - src_data[0];
|
||||
* available = true;
|
||||
* }
|
||||
* uint32_t result_size = flags & VK_QUERY_RESULT_64_BIT ? 16 : 8;
|
||||
* if ((flags & VK_QUERY_RESULT_PARTIAL_BIT) || available) {
|
||||
* if (flags & VK_QUERY_RESULT_64_BIT) {
|
||||
* dst_buf[dst_offset] = result;
|
||||
* } else {
|
||||
* dst_buf[dst_offset] = (uint32_t)result;
|
||||
* }
|
||||
* }
|
||||
* if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) {
|
||||
* dst_buf[dst_offset + result_size] = available;
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
nir_builder b;
|
||||
nir_builder_init_simple_shader(&b, NULL, MESA_SHADER_COMPUTE, NULL);
|
||||
b.shader->info.name = ralloc_strdup(b.shader, "tfb_query");
|
||||
b.shader->info.cs.local_size[0] = 64;
|
||||
b.shader->info.cs.local_size[1] = 1;
|
||||
b.shader->info.cs.local_size[2] = 1;
|
||||
|
||||
/* Create and initialize local variables. */
|
||||
nir_variable *result =
|
||||
nir_local_variable_create(b.impl,
|
||||
glsl_vector_type(GLSL_TYPE_UINT64, 2),
|
||||
"result");
|
||||
nir_variable *available =
|
||||
nir_local_variable_create(b.impl, glsl_int_type(), "available");
|
||||
|
||||
nir_store_var(&b, result,
|
||||
nir_vec2(&b, nir_imm_int64(&b, 0),
|
||||
nir_imm_int64(&b, 0)), 0x3);
|
||||
nir_store_var(&b, available, nir_imm_int(&b, 0), 0x1);
|
||||
|
||||
nir_ssa_def *flags = radv_load_push_int(&b, 0, "flags");
|
||||
|
||||
/* Load resources. */
|
||||
nir_intrinsic_instr *dst_buf = nir_intrinsic_instr_create(b.shader,
|
||||
nir_intrinsic_vulkan_resource_index);
|
||||
dst_buf->src[0] = nir_src_for_ssa(nir_imm_int(&b, 0));
|
||||
nir_intrinsic_set_desc_set(dst_buf, 0);
|
||||
nir_intrinsic_set_binding(dst_buf, 0);
|
||||
nir_ssa_dest_init(&dst_buf->instr, &dst_buf->dest, 1, 32, NULL);
|
||||
nir_builder_instr_insert(&b, &dst_buf->instr);
|
||||
|
||||
nir_intrinsic_instr *src_buf = nir_intrinsic_instr_create(b.shader,
|
||||
nir_intrinsic_vulkan_resource_index);
|
||||
src_buf->src[0] = nir_src_for_ssa(nir_imm_int(&b, 0));
|
||||
nir_intrinsic_set_desc_set(src_buf, 0);
|
||||
nir_intrinsic_set_binding(src_buf, 1);
|
||||
nir_ssa_dest_init(&src_buf->instr, &src_buf->dest, 1, 32, NULL);
|
||||
nir_builder_instr_insert(&b, &src_buf->instr);
|
||||
|
||||
/* Compute global ID. */
|
||||
nir_ssa_def *invoc_id = nir_load_system_value(&b, nir_intrinsic_load_local_invocation_id, 0);
|
||||
nir_ssa_def *wg_id = nir_load_system_value(&b, nir_intrinsic_load_work_group_id, 0);
|
||||
nir_ssa_def *block_size = nir_imm_ivec4(&b,
|
||||
b.shader->info.cs.local_size[0],
|
||||
b.shader->info.cs.local_size[1],
|
||||
b.shader->info.cs.local_size[2], 0);
|
||||
nir_ssa_def *global_id = nir_iadd(&b, nir_imul(&b, wg_id, block_size), invoc_id);
|
||||
global_id = nir_channel(&b, global_id, 0); // We only care about x here.
|
||||
|
||||
/* Compute src/dst strides. */
|
||||
nir_ssa_def *input_stride = nir_imm_int(&b, 32);
|
||||
nir_ssa_def *input_base = nir_imul(&b, input_stride, global_id);
|
||||
nir_ssa_def *output_stride = radv_load_push_int(&b, 4, "output_stride");
|
||||
nir_ssa_def *output_base = nir_imul(&b, output_stride, global_id);
|
||||
|
||||
/* Load data from the query pool. */
|
||||
nir_intrinsic_instr *load1 = nir_intrinsic_instr_create(b.shader, nir_intrinsic_load_ssbo);
|
||||
load1->src[0] = nir_src_for_ssa(&src_buf->dest.ssa);
|
||||
load1->src[1] = nir_src_for_ssa(input_base);
|
||||
nir_ssa_dest_init(&load1->instr, &load1->dest, 4, 32, NULL);
|
||||
load1->num_components = 4;
|
||||
nir_builder_instr_insert(&b, &load1->instr);
|
||||
|
||||
nir_intrinsic_instr *load2 = nir_intrinsic_instr_create(b.shader, nir_intrinsic_load_ssbo);
|
||||
load2->src[0] = nir_src_for_ssa(&src_buf->dest.ssa);
|
||||
load2->src[1] = nir_src_for_ssa(nir_iadd(&b, input_base, nir_imm_int(&b, 16)));
|
||||
nir_ssa_dest_init(&load2->instr, &load2->dest, 4, 32, NULL);
|
||||
load2->num_components = 4;
|
||||
nir_builder_instr_insert(&b, &load2->instr);
|
||||
|
||||
/* Check if result is available. */
|
||||
nir_ssa_def *avails[2];
|
||||
avails[0] = nir_iand(&b, nir_channel(&b, &load1->dest.ssa, 1),
|
||||
nir_channel(&b, &load1->dest.ssa, 3));
|
||||
avails[1] = nir_iand(&b, nir_channel(&b, &load2->dest.ssa, 1),
|
||||
nir_channel(&b, &load2->dest.ssa, 3));
|
||||
nir_ssa_def *result_is_available =
|
||||
nir_iand(&b, nir_iand(&b, avails[0], avails[1]),
|
||||
nir_imm_int(&b, 0x80000000));
|
||||
|
||||
/* Only compute result if available. */
|
||||
nir_if *available_if = nir_if_create(b.shader);
|
||||
available_if->condition = nir_src_for_ssa(result_is_available);
|
||||
nir_cf_node_insert(b.cursor, &available_if->cf_node);
|
||||
|
||||
b.cursor = nir_after_cf_list(&available_if->then_list);
|
||||
|
||||
/* Pack values. */
|
||||
nir_ssa_def *packed64[4];
|
||||
packed64[0] = nir_pack_64_2x32(&b, nir_vec2(&b,
|
||||
nir_channel(&b, &load1->dest.ssa, 0),
|
||||
nir_channel(&b, &load1->dest.ssa, 1)));
|
||||
packed64[1] = nir_pack_64_2x32(&b, nir_vec2(&b,
|
||||
nir_channel(&b, &load1->dest.ssa, 2),
|
||||
nir_channel(&b, &load1->dest.ssa, 3)));
|
||||
packed64[2] = nir_pack_64_2x32(&b, nir_vec2(&b,
|
||||
nir_channel(&b, &load2->dest.ssa, 0),
|
||||
nir_channel(&b, &load2->dest.ssa, 1)));
|
||||
packed64[3] = nir_pack_64_2x32(&b, nir_vec2(&b,
|
||||
nir_channel(&b, &load2->dest.ssa, 2),
|
||||
nir_channel(&b, &load2->dest.ssa, 3)));
|
||||
|
||||
/* Compute result. */
|
||||
nir_ssa_def *num_primitive_written =
|
||||
nir_isub(&b, packed64[3], packed64[1]);
|
||||
nir_ssa_def *primitive_storage_needed =
|
||||
nir_isub(&b, packed64[2], packed64[0]);
|
||||
|
||||
nir_store_var(&b, result,
|
||||
nir_vec2(&b, num_primitive_written,
|
||||
primitive_storage_needed), 0x3);
|
||||
nir_store_var(&b, available, nir_imm_int(&b, 1), 0x1);
|
||||
|
||||
b.cursor = nir_after_cf_node(&available_if->cf_node);
|
||||
|
||||
/* Determine if result is 64 or 32 bit. */
|
||||
nir_ssa_def *result_is_64bit =
|
||||
nir_iand(&b, flags, nir_imm_int(&b, VK_QUERY_RESULT_64_BIT));
|
||||
nir_ssa_def *result_size =
|
||||
nir_bcsel(&b, result_is_64bit, nir_imm_int(&b, 16),
|
||||
nir_imm_int(&b, 8));
|
||||
|
||||
/* Store the result if complete or partial results have been requested. */
|
||||
nir_if *store_if = nir_if_create(b.shader);
|
||||
store_if->condition =
|
||||
nir_src_for_ssa(nir_ior(&b, nir_iand(&b, flags,
|
||||
nir_imm_int(&b, VK_QUERY_RESULT_PARTIAL_BIT)),
|
||||
nir_load_var(&b, available)));
|
||||
nir_cf_node_insert(b.cursor, &store_if->cf_node);
|
||||
|
||||
b.cursor = nir_after_cf_list(&store_if->then_list);
|
||||
|
||||
/* Store result. */
|
||||
nir_if *store_64bit_if = nir_if_create(b.shader);
|
||||
store_64bit_if->condition = nir_src_for_ssa(result_is_64bit);
|
||||
nir_cf_node_insert(b.cursor, &store_64bit_if->cf_node);
|
||||
|
||||
b.cursor = nir_after_cf_list(&store_64bit_if->then_list);
|
||||
|
||||
nir_intrinsic_instr *store = nir_intrinsic_instr_create(b.shader, nir_intrinsic_store_ssbo);
|
||||
store->src[0] = nir_src_for_ssa(nir_load_var(&b, result));
|
||||
store->src[1] = nir_src_for_ssa(&dst_buf->dest.ssa);
|
||||
store->src[2] = nir_src_for_ssa(output_base);
|
||||
nir_intrinsic_set_write_mask(store, 0x3);
|
||||
store->num_components = 2;
|
||||
nir_builder_instr_insert(&b, &store->instr);
|
||||
|
||||
b.cursor = nir_after_cf_list(&store_64bit_if->else_list);
|
||||
|
||||
store = nir_intrinsic_instr_create(b.shader, nir_intrinsic_store_ssbo);
|
||||
store->src[0] = nir_src_for_ssa(nir_u2u32(&b, nir_load_var(&b, result)));
|
||||
store->src[1] = nir_src_for_ssa(&dst_buf->dest.ssa);
|
||||
store->src[2] = nir_src_for_ssa(output_base);
|
||||
nir_intrinsic_set_write_mask(store, 0x3);
|
||||
store->num_components = 2;
|
||||
nir_builder_instr_insert(&b, &store->instr);
|
||||
|
||||
b.cursor = nir_after_cf_node(&store_64bit_if->cf_node);
|
||||
|
||||
b.cursor = nir_after_cf_node(&store_if->cf_node);
|
||||
|
||||
/* Store the availability bit if requested. */
|
||||
nir_if *availability_if = nir_if_create(b.shader);
|
||||
availability_if->condition =
|
||||
nir_src_for_ssa(nir_iand(&b, flags,
|
||||
nir_imm_int(&b, VK_QUERY_RESULT_WITH_AVAILABILITY_BIT)));
|
||||
nir_cf_node_insert(b.cursor, &availability_if->cf_node);
|
||||
|
||||
b.cursor = nir_after_cf_list(&availability_if->then_list);
|
||||
|
||||
store = nir_intrinsic_instr_create(b.shader, nir_intrinsic_store_ssbo);
|
||||
store->src[0] = nir_src_for_ssa(nir_load_var(&b, available));
|
||||
store->src[1] = nir_src_for_ssa(&dst_buf->dest.ssa);
|
||||
store->src[2] = nir_src_for_ssa(nir_iadd(&b, result_size, output_base));
|
||||
nir_intrinsic_set_write_mask(store, 0x1);
|
||||
store->num_components = 1;
|
||||
nir_builder_instr_insert(&b, &store->instr);
|
||||
|
||||
b.cursor = nir_after_cf_node(&availability_if->cf_node);
|
||||
|
||||
return b.shader;
|
||||
}
|
||||
|
||||
static VkResult radv_device_init_meta_query_state_internal(struct radv_device *device)
|
||||
{
|
||||
VkResult result;
|
||||
struct radv_shader_module occlusion_cs = { .nir = NULL };
|
||||
struct radv_shader_module pipeline_statistics_cs = { .nir = NULL };
|
||||
struct radv_shader_module tfb_cs = { .nir = NULL };
|
||||
|
||||
mtx_lock(&device->meta_state.mtx);
|
||||
if (device->meta_state.query.pipeline_statistics_query_pipeline) {
|
||||
@@ -525,6 +747,7 @@ static VkResult radv_device_init_meta_query_state_internal(struct radv_device *d
|
||||
}
|
||||
occlusion_cs.nir = build_occlusion_query_shader(device);
|
||||
pipeline_statistics_cs.nir = build_pipeline_statistics_query_shader(device);
|
||||
tfb_cs.nir = build_tfb_query_shader(device);
|
||||
|
||||
VkDescriptorSetLayoutCreateInfo occlusion_ds_create_info = {
|
||||
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
||||
@@ -611,12 +834,34 @@ static VkResult radv_device_init_meta_query_state_internal(struct radv_device *d
|
||||
radv_pipeline_cache_to_handle(&device->meta_state.cache),
|
||||
1, &pipeline_statistics_vk_pipeline_info, NULL,
|
||||
&device->meta_state.query.pipeline_statistics_query_pipeline);
|
||||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
VkPipelineShaderStageCreateInfo tfb_pipeline_shader_stage = {
|
||||
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
||||
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
||||
.module = radv_shader_module_to_handle(&tfb_cs),
|
||||
.pName = "main",
|
||||
.pSpecializationInfo = NULL,
|
||||
};
|
||||
|
||||
VkComputePipelineCreateInfo tfb_pipeline_info = {
|
||||
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
||||
.stage = tfb_pipeline_shader_stage,
|
||||
.flags = 0,
|
||||
.layout = device->meta_state.query.p_layout,
|
||||
};
|
||||
|
||||
result = radv_CreateComputePipelines(radv_device_to_handle(device),
|
||||
radv_pipeline_cache_to_handle(&device->meta_state.cache),
|
||||
1, &tfb_pipeline_info, NULL,
|
||||
&device->meta_state.query.tfb_query_pipeline);
|
||||
fail:
|
||||
if (result != VK_SUCCESS)
|
||||
radv_device_finish_meta_query_state(device);
|
||||
ralloc_free(occlusion_cs.nir);
|
||||
ralloc_free(pipeline_statistics_cs.nir);
|
||||
ralloc_free(tfb_cs.nir);
|
||||
mtx_unlock(&device->meta_state.mtx);
|
||||
return result;
|
||||
}
|
||||
@@ -631,6 +876,11 @@ VkResult radv_device_init_meta_query_state(struct radv_device *device, bool on_d
|
||||
|
||||
void radv_device_finish_meta_query_state(struct radv_device *device)
|
||||
{
|
||||
if (device->meta_state.query.tfb_query_pipeline)
|
||||
radv_DestroyPipeline(radv_device_to_handle(device),
|
||||
device->meta_state.query.tfb_query_pipeline,
|
||||
&device->meta_state.alloc);
|
||||
|
||||
if (device->meta_state.query.pipeline_statistics_query_pipeline)
|
||||
radv_DestroyPipeline(radv_device_to_handle(device),
|
||||
device->meta_state.query.pipeline_statistics_query_pipeline,
|
||||
@@ -663,6 +913,7 @@ static void radv_query_shader(struct radv_cmd_buffer *cmd_buffer,
|
||||
{
|
||||
struct radv_device *device = cmd_buffer->device;
|
||||
struct radv_meta_saved_state saved_state;
|
||||
bool old_predicating;
|
||||
|
||||
if (!*pipeline) {
|
||||
VkResult ret = radv_device_init_meta_query_state_internal(device);
|
||||
@@ -677,6 +928,12 @@ static void radv_query_shader(struct radv_cmd_buffer *cmd_buffer,
|
||||
RADV_META_SAVE_CONSTANTS |
|
||||
RADV_META_SAVE_DESCRIPTORS);
|
||||
|
||||
/* VK_EXT_conditional_rendering says that copy commands should not be
|
||||
* affected by conditional rendering.
|
||||
*/
|
||||
old_predicating = cmd_buffer->state.predicating;
|
||||
cmd_buffer->state.predicating = false;
|
||||
|
||||
struct radv_buffer dst_buffer = {
|
||||
.bo = dst_bo,
|
||||
.offset = dst_offset,
|
||||
@@ -758,6 +1015,8 @@ static void radv_query_shader(struct radv_cmd_buffer *cmd_buffer,
|
||||
cmd_buffer->state.flush_bits |= RADV_CMD_FLAG_INV_GLOBAL_L2 |
|
||||
RADV_CMD_FLAG_INV_VMEM_L1 |
|
||||
RADV_CMD_FLAG_CS_PARTIAL_FLUSH;
|
||||
/* Restore conditional rendering. */
|
||||
cmd_buffer->state.predicating = old_predicating;
|
||||
|
||||
radv_meta_restore(&saved_state, cmd_buffer);
|
||||
}
|
||||
@@ -1115,6 +1374,33 @@ void radv_CmdCopyQueryPoolResults(
|
||||
assert(cs->cdw <= cdw_max);
|
||||
}
|
||||
break;
|
||||
case VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT:
|
||||
if (flags & VK_QUERY_RESULT_WAIT_BIT) {
|
||||
for(unsigned i = 0; i < queryCount; i++) {
|
||||
unsigned query = firstQuery + i;
|
||||
uint64_t src_va = va + query * pool->stride;
|
||||
|
||||
/* Wait on the upper word of all results. */
|
||||
for (unsigned j = 0; j < 4; j++, src_va += 8) {
|
||||
radeon_emit(cs, PKT3(PKT3_WAIT_REG_MEM, 5, 0));
|
||||
radeon_emit(cs, WAIT_REG_MEM_GREATER_OR_EQUAL |
|
||||
WAIT_REG_MEM_MEM_SPACE(1));
|
||||
radeon_emit(cs, (src_va + 4));
|
||||
radeon_emit(cs, (src_va + 4) >> 32);
|
||||
radeon_emit(cs, 0x80000000); /* reference value */
|
||||
radeon_emit(cs, 0xffffffff); /* mask */
|
||||
radeon_emit(cs, 4); /* poll interval */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
radv_query_shader(cmd_buffer, &cmd_buffer->device->meta_state.query.tfb_query_pipeline,
|
||||
pool->bo, dst_buffer->bo,
|
||||
firstQuery * pool->stride,
|
||||
dst_buffer->offset + dstOffset,
|
||||
pool->stride, stride,
|
||||
queryCount, flags, 0, 0);
|
||||
break;
|
||||
default:
|
||||
unreachable("trying to get results of unhandled query type");
|
||||
}
|
||||
|
@@ -892,7 +892,8 @@ validate_assignment(struct _mesa_glsl_parse_state *state,
|
||||
}
|
||||
if (unsized_array) {
|
||||
if (is_initializer) {
|
||||
return rhs;
|
||||
if (rhs->type->get_scalar_type() == lhs->type->get_scalar_type())
|
||||
return rhs;
|
||||
} else {
|
||||
_mesa_glsl_error(&loc, state,
|
||||
"implicitly sized arrays cannot be assigned");
|
||||
|
@@ -195,9 +195,12 @@ nir_remove_unused_varyings(nir_shader *producer, nir_shader *consumer)
|
||||
}
|
||||
|
||||
static uint8_t
|
||||
get_interp_type(nir_variable *var, bool default_to_smooth_interp)
|
||||
get_interp_type(nir_variable *var, const struct glsl_type *type,
|
||||
bool default_to_smooth_interp)
|
||||
{
|
||||
if (var->data.interpolation != INTERP_MODE_NONE)
|
||||
if (glsl_type_is_integer(type))
|
||||
return INTERP_MODE_FLAT;
|
||||
else if (var->data.interpolation != INTERP_MODE_NONE)
|
||||
return var->data.interpolation;
|
||||
else if (default_to_smooth_interp)
|
||||
return INTERP_MODE_SMOOTH;
|
||||
@@ -252,7 +255,7 @@ get_slot_component_masks_and_interp_types(struct exec_list *var_list,
|
||||
unsigned comps_slot2 = 0;
|
||||
for (unsigned i = 0; i < slots; i++) {
|
||||
interp_type[location + i] =
|
||||
get_interp_type(var, default_to_smooth_interp);
|
||||
get_interp_type(var, type, default_to_smooth_interp);
|
||||
interp_loc[location + i] = get_interp_loc(var);
|
||||
|
||||
if (dual_slot) {
|
||||
@@ -424,7 +427,7 @@ compact_components(nir_shader *producer, nir_shader *consumer, uint8_t *comps,
|
||||
continue;
|
||||
|
||||
bool found_new_offset = false;
|
||||
uint8_t interp = get_interp_type(var, default_to_smooth_interp);
|
||||
uint8_t interp = get_interp_type(var, type, default_to_smooth_interp);
|
||||
for (; cursor[interp] < 32; cursor[interp]++) {
|
||||
uint8_t cursor_used_comps = comps[cursor[interp]];
|
||||
|
||||
|
@@ -194,6 +194,7 @@ lower_alu_instr_scalar(nir_alu_instr *instr, nir_builder *b)
|
||||
}
|
||||
|
||||
case nir_op_unpack_64_2x32:
|
||||
case nir_op_unpack_32_2x16:
|
||||
return false;
|
||||
|
||||
LOWER_REDUCTION(nir_op_fdot, nir_op_fmul, nir_op_fadd);
|
||||
|
@@ -391,6 +391,34 @@ evaluate_if_condition(nir_if *nif, nir_cursor cursor, bool *value)
|
||||
}
|
||||
}
|
||||
|
||||
static nir_ssa_def *
|
||||
clone_alu_and_replace_src_defs(nir_builder *b, const nir_alu_instr *alu,
|
||||
nir_ssa_def **src_defs)
|
||||
{
|
||||
nir_alu_instr *nalu = nir_alu_instr_create(b->shader, alu->op);
|
||||
nalu->exact = alu->exact;
|
||||
|
||||
nir_ssa_dest_init(&nalu->instr, &nalu->dest.dest,
|
||||
alu->dest.dest.ssa.num_components,
|
||||
alu->dest.dest.ssa.bit_size, alu->dest.dest.ssa.name);
|
||||
|
||||
nalu->dest.saturate = alu->dest.saturate;
|
||||
nalu->dest.write_mask = alu->dest.write_mask;
|
||||
|
||||
for (unsigned i = 0; i < nir_op_infos[alu->op].num_inputs; i++) {
|
||||
assert(alu->src[i].src.is_ssa);
|
||||
nalu->src[i].src = nir_src_for_ssa(src_defs[i]);
|
||||
nalu->src[i].negate = alu->src[i].negate;
|
||||
nalu->src[i].abs = alu->src[i].abs;
|
||||
memcpy(nalu->src[i].swizzle, alu->src[i].swizzle,
|
||||
sizeof(nalu->src[i].swizzle));
|
||||
}
|
||||
|
||||
nir_builder_instr_insert(b, &nalu->instr);
|
||||
|
||||
return &nalu->dest.dest.ssa;;
|
||||
}
|
||||
|
||||
/*
|
||||
* This propagates if condition evaluation down the chain of some alu
|
||||
* instructions. For example by checking the use of some of the following alu
|
||||
@@ -448,7 +476,7 @@ propagate_condition_eval(nir_builder *b, nir_if *nif, nir_src *use_src,
|
||||
if (!evaluate_if_condition(nif, b->cursor, &bool_value))
|
||||
return false;
|
||||
|
||||
nir_ssa_def *def[2] = {0};
|
||||
nir_ssa_def *def[4] = {0};
|
||||
for (unsigned i = 0; i < nir_op_infos[alu->op].num_inputs; i++) {
|
||||
if (alu->src[i].src.ssa == use_src->ssa) {
|
||||
def[i] = nir_imm_bool(b, bool_value);
|
||||
@@ -456,7 +484,8 @@ propagate_condition_eval(nir_builder *b, nir_if *nif, nir_src *use_src,
|
||||
def[i] = alu->src[i].src.ssa;
|
||||
}
|
||||
}
|
||||
nir_ssa_def *nalu = nir_build_alu(b, alu->op, def[0], def[1], NULL, NULL);
|
||||
|
||||
nir_ssa_def *nalu = clone_alu_and_replace_src_defs(b, alu, def);
|
||||
|
||||
/* Rewrite use to use new alu instruction */
|
||||
nir_src new_src = nir_src_for_ssa(nalu);
|
||||
@@ -472,14 +501,21 @@ propagate_condition_eval(nir_builder *b, nir_if *nif, nir_src *use_src,
|
||||
static bool
|
||||
can_propagate_through_alu(nir_src *src)
|
||||
{
|
||||
if (src->parent_instr->type == nir_instr_type_alu &&
|
||||
(nir_instr_as_alu(src->parent_instr)->op == nir_op_ior ||
|
||||
nir_instr_as_alu(src->parent_instr)->op == nir_op_iand ||
|
||||
nir_instr_as_alu(src->parent_instr)->op == nir_op_inot ||
|
||||
nir_instr_as_alu(src->parent_instr)->op == nir_op_b2i))
|
||||
return true;
|
||||
if (src->parent_instr->type != nir_instr_type_alu)
|
||||
return false;
|
||||
|
||||
return false;
|
||||
nir_alu_instr *alu = nir_instr_as_alu(src->parent_instr);
|
||||
switch (alu->op) {
|
||||
case nir_op_ior:
|
||||
case nir_op_iand:
|
||||
case nir_op_inot:
|
||||
case nir_op_b2i:
|
||||
return true;
|
||||
case nir_op_bcsel:
|
||||
return src == &alu->src[0].src;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static bool
|
||||
|
@@ -301,6 +301,11 @@ glsl_type_is_boolean(const struct glsl_type *type)
|
||||
{
|
||||
return type->is_boolean();
|
||||
}
|
||||
bool
|
||||
glsl_type_is_integer(const struct glsl_type *type)
|
||||
{
|
||||
return type->is_integer();
|
||||
}
|
||||
|
||||
const glsl_type *
|
||||
glsl_void_type(void)
|
||||
|
@@ -142,6 +142,7 @@ bool glsl_type_is_image(const struct glsl_type *type);
|
||||
bool glsl_type_is_dual_slot(const struct glsl_type *type);
|
||||
bool glsl_type_is_numeric(const struct glsl_type *type);
|
||||
bool glsl_type_is_boolean(const struct glsl_type *type);
|
||||
bool glsl_type_is_integer(const struct glsl_type *type);
|
||||
bool glsl_sampler_type_is_shadow(const struct glsl_type *type);
|
||||
bool glsl_sampler_type_is_array(const struct glsl_type *type);
|
||||
bool glsl_contains_atomic(const struct glsl_type *type);
|
||||
|
@@ -1811,6 +1811,26 @@ vtn_handle_constant(struct vtn_builder *b, SpvOp opcode,
|
||||
src[j] = src_val->constant->values[0];
|
||||
}
|
||||
|
||||
/* fix up fixed size sources */
|
||||
switch (op) {
|
||||
case nir_op_ishl:
|
||||
case nir_op_ishr:
|
||||
case nir_op_ushr: {
|
||||
if (bit_size == 32)
|
||||
break;
|
||||
for (unsigned i = 0; i < num_components; ++i) {
|
||||
switch (bit_size) {
|
||||
case 64: src[1].u32[i] = src[1].u64[i]; break;
|
||||
case 16: src[1].u32[i] = src[1].u16[i]; break;
|
||||
case 8: src[1].u32[i] = src[1].u8[i]; break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
val->constant->values[0] =
|
||||
nir_eval_const_opcode(op, num_components, bit_size, src);
|
||||
break;
|
||||
|
@@ -696,6 +696,17 @@ vtn_handle_alu(struct vtn_builder *b, SpvOp opcode,
|
||||
src[1] = tmp;
|
||||
}
|
||||
|
||||
switch (op) {
|
||||
case nir_op_ishl:
|
||||
case nir_op_ishr:
|
||||
case nir_op_ushr:
|
||||
if (src[1]->bit_size != 32)
|
||||
src[1] = nir_u2u32(&b->nb, src[1]);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
val->ssa->def = nir_build_alu(&b->nb, op, src[0], src[1], src[2], src[3]);
|
||||
break;
|
||||
} /* default */
|
||||
|
@@ -1661,8 +1661,8 @@ swrast_update_buffers(struct dri2_egl_surface *dri2_surf)
|
||||
if (dri2_surf->back)
|
||||
return 0;
|
||||
|
||||
if (dri2_surf->base.Width != dri2_surf->wl_win->attached_width ||
|
||||
dri2_surf->base.Height != dri2_surf->wl_win->attached_height) {
|
||||
if (dri2_surf->base.Width != dri2_surf->wl_win->width ||
|
||||
dri2_surf->base.Height != dri2_surf->wl_win->height) {
|
||||
|
||||
dri2_wl_release_buffers(dri2_surf);
|
||||
|
||||
|
@@ -196,8 +196,18 @@ EGL_FUNCTIONS = (
|
||||
# EGL_ANDROID_native_fence_sync
|
||||
_eglFunc("eglDupNativeFenceFDANDROID", "display"),
|
||||
|
||||
# EGL_ANDROID_blob_cache
|
||||
_eglFunc("eglSetBlobCacheFuncsANDROID", "display"),
|
||||
|
||||
# EGL_EXT_image_dma_buf_import_modifiers
|
||||
_eglFunc("eglQueryDmaBufFormatsEXT", "display"),
|
||||
_eglFunc("eglQueryDmaBufModifiersEXT", "display"),
|
||||
|
||||
# EGL_EXT_device_base
|
||||
_eglFunc("eglQueryDeviceAttribEXT", "device"),
|
||||
_eglFunc("eglQueryDeviceStringEXT", "device"),
|
||||
_eglFunc("eglQueryDevicesEXT", "none"),
|
||||
_eglFunc("eglQueryDisplayAttribEXT", "display"),
|
||||
|
||||
)
|
||||
|
||||
|
@@ -59,6 +59,11 @@ static __eglMustCastToProperFunctionPointerType FetchVendorFunc(__EGLvendorInfo
|
||||
}
|
||||
if (func == NULL) {
|
||||
if (errorCode != EGL_SUCCESS) {
|
||||
// Since we have no vendor, the follow-up eglGetError() call will
|
||||
// end up using the GLVND error code. Set it here.
|
||||
if (vendor == NULL) {
|
||||
exports->setEGLError(errorCode);
|
||||
}
|
||||
_eglError(errorCode, __EGL_DISPATCH_FUNC_NAMES[index]);
|
||||
}
|
||||
return NULL;
|
||||
|
@@ -36,7 +36,8 @@ LOCAL_SRC_FILES := \
|
||||
util/u_debug_stack_android.cpp
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(GALLIUM_TOP)/auxiliary/util
|
||||
$(GALLIUM_TOP)/auxiliary/util \
|
||||
$(MESA_TOP)/src/util
|
||||
|
||||
ifeq ($(MESA_ENABLE_LLVM),true)
|
||||
LOCAL_SRC_FILES += \
|
||||
|
@@ -567,7 +567,7 @@ int bc_builder::build_fetch_gds(fetch_node *n) {
|
||||
const fetch_op_info *fop = bc.op_ptr;
|
||||
unsigned gds_op = (ctx.fetch_opcode(bc.op) >> 8) & 0x3f;
|
||||
unsigned mem_op = 4;
|
||||
assert(fop->flags && FF_GDS);
|
||||
assert(fop->flags & FF_GDS);
|
||||
|
||||
if (bc.op == FETCH_OP_TF_WRITE) {
|
||||
mem_op = 5;
|
||||
|
@@ -580,10 +580,12 @@ static int si_get_video_param(struct pipe_screen *screen,
|
||||
case PIPE_VIDEO_CAP_SUPPORTED:
|
||||
return (codec == PIPE_VIDEO_FORMAT_MPEG4_AVC &&
|
||||
(si_vce_is_fw_version_supported(sscreen) ||
|
||||
sscreen->info.family == CHIP_RAVEN)) ||
|
||||
sscreen->info.family == CHIP_RAVEN ||
|
||||
sscreen->info.family == CHIP_RAVEN2)) ||
|
||||
(profile == PIPE_VIDEO_PROFILE_HEVC_MAIN &&
|
||||
(sscreen->info.family == CHIP_RAVEN ||
|
||||
si_radeon_uvd_enc_supported(sscreen)));
|
||||
sscreen->info.family == CHIP_RAVEN2 ||
|
||||
si_radeon_uvd_enc_supported(sscreen)));
|
||||
case PIPE_VIDEO_CAP_NPOT_TEXTURES:
|
||||
return 1;
|
||||
case PIPE_VIDEO_CAP_MAX_WIDTH:
|
||||
@@ -631,7 +633,8 @@ static int si_get_video_param(struct pipe_screen *screen,
|
||||
return profile == PIPE_VIDEO_PROFILE_HEVC_MAIN;
|
||||
return false;
|
||||
case PIPE_VIDEO_FORMAT_JPEG:
|
||||
if (sscreen->info.family == CHIP_RAVEN)
|
||||
if (sscreen->info.family == CHIP_RAVEN ||
|
||||
sscreen->info.family == CHIP_RAVEN2)
|
||||
return true;
|
||||
if (sscreen->info.family < CHIP_CARRIZO || sscreen->info.family >= CHIP_VEGA10)
|
||||
return false;
|
||||
|
@@ -146,7 +146,8 @@ struct pipe_video_codec *si_uvd_create_decoder(struct pipe_context *context,
|
||||
const struct pipe_video_codec *templ)
|
||||
{
|
||||
struct si_context *ctx = (struct si_context *)context;
|
||||
bool vcn = (ctx->family == CHIP_RAVEN) ? true : false;
|
||||
bool vcn = ctx->family == CHIP_RAVEN ||
|
||||
ctx->family == CHIP_RAVEN2;
|
||||
|
||||
if (templ->entrypoint == PIPE_VIDEO_ENTRYPOINT_ENCODE) {
|
||||
if (vcn) {
|
||||
|
@@ -572,7 +572,15 @@ vc4_resource_create_with_modifiers(struct pipe_screen *pscreen,
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (screen->ro && tmpl->bind & PIPE_BIND_SCANOUT) {
|
||||
/* Set up the "scanout resource" (the dmabuf export of our buffer to
|
||||
* the KMS handle) if the buffer might ever have
|
||||
* resource_get_handle(WINSYS_HANDLE_TYPE_KMS) called on it.
|
||||
* create_with_modifiers() doesn't give us usage flags, so we have to
|
||||
* assume that all calls with modifiers are scanout-possible.
|
||||
*/
|
||||
if (screen->ro &&
|
||||
((tmpl->bind & PIPE_BIND_SCANOUT) ||
|
||||
!(count == 1 && modifiers[0] == DRM_FORMAT_MOD_INVALID))) {
|
||||
rsc->scanout =
|
||||
renderonly_scanout_for_resource(prsc, screen->ro, NULL);
|
||||
if (!rsc->scanout)
|
||||
|
@@ -37,6 +37,7 @@
|
||||
#include "os/os_thread.h"
|
||||
#include "threadpool.h"
|
||||
|
||||
/* POSIX thread function */
|
||||
static void *
|
||||
threadpool_worker(void *data)
|
||||
{
|
||||
@@ -76,6 +77,15 @@ threadpool_worker(void *data)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Windows thread function */
|
||||
static DWORD NINE_WINAPI
|
||||
wthreadpool_worker(void *data)
|
||||
{
|
||||
threadpool_worker(data);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct threadpool *
|
||||
_mesa_threadpool_create(struct NineSwapChain9 *swapchain)
|
||||
{
|
||||
@@ -87,7 +97,9 @@ _mesa_threadpool_create(struct NineSwapChain9 *swapchain)
|
||||
pthread_mutex_init(&pool->m, NULL);
|
||||
pthread_cond_init(&pool->new_work, NULL);
|
||||
|
||||
pool->wthread = NineSwapChain9_CreateThread(swapchain, threadpool_worker, pool);
|
||||
/* This uses WINE's CreateThread, so the thread function needs to use
|
||||
* the Windows ABI */
|
||||
pool->wthread = NineSwapChain9_CreateThread(swapchain, wthreadpool_worker, pool);
|
||||
if (!pool->wthread) {
|
||||
/* using pthread as fallback */
|
||||
pthread_create(&pool->pthread, NULL, threadpool_worker, pool);
|
||||
|
@@ -598,10 +598,8 @@ surface_from_external_memory(VADriverContextP ctx, vlVaSurface *surface,
|
||||
return VA_STATUS_SUCCESS;
|
||||
|
||||
fail:
|
||||
for (i = 0; i < VL_NUM_COMPONENTS; i++) {
|
||||
if (resources[i])
|
||||
pscreen->resource_destroy(pscreen, resources[i]);
|
||||
}
|
||||
for (i = 0; i < VL_NUM_COMPONENTS; i++)
|
||||
pipe_resource_reference(&resources[i], NULL);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@@ -53,7 +53,7 @@ libgallium_nine = shared_library(
|
||||
libswkmsdri,
|
||||
],
|
||||
dependencies : [
|
||||
dep_selinux, dep_expat, dep_libdrm, dep_llvm,
|
||||
dep_selinux, dep_expat, dep_libdrm, dep_llvm, dep_thread,
|
||||
driver_swrast, driver_r300, driver_r600, driver_radeonsi, driver_nouveau,
|
||||
driver_i915, driver_svga,
|
||||
],
|
||||
|
@@ -559,7 +559,7 @@ virgl_cs_create_fence(struct virgl_winsys *vws)
|
||||
res = virgl_vtest_winsys_resource_cache_create(vws,
|
||||
PIPE_BUFFER,
|
||||
PIPE_FORMAT_R8_UNORM,
|
||||
PIPE_BIND_CUSTOM,
|
||||
VIRGL_BIND_CUSTOM,
|
||||
8, 1, 1, 0, 0, 0, 8);
|
||||
|
||||
return (struct pipe_fence_handle *)res;
|
||||
|
@@ -32,7 +32,6 @@ args_gbm = []
|
||||
deps_gbm = []
|
||||
incs_gbm = [
|
||||
include_directories('main'), inc_include, inc_src, inc_loader,
|
||||
inc_wayland_drm,
|
||||
]
|
||||
|
||||
if with_dri2
|
||||
|
@@ -214,7 +214,7 @@ handle_state_base_address(struct gen_batch_decode_ctx *ctx, const uint32_t *p)
|
||||
surface_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Dynamic State Base Address Modify Enable") == 0) {
|
||||
dynamic_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Insntruction Base Address Modify Enable") == 0) {
|
||||
} else if (strcmp(iter.name, "Instruction Base Address Modify Enable") == 0) {
|
||||
instruction_modify = iter.raw_value;
|
||||
}
|
||||
}
|
||||
|
@@ -172,7 +172,7 @@ handle_state_base_address(struct aub_viewer_decode_ctx *ctx,
|
||||
surface_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Dynamic State Base Address Modify Enable") == 0) {
|
||||
dynamic_modify = iter.raw_value;
|
||||
} else if (strcmp(iter.name, "Insntruction Base Address Modify Enable") == 0) {
|
||||
} else if (strcmp(iter.name, "Instruction Base Address Modify Enable") == 0) {
|
||||
instruction_modify = iter.raw_value;
|
||||
}
|
||||
}
|
||||
|
@@ -128,7 +128,7 @@ anv_image_from_gralloc(VkDevice device_h,
|
||||
*/
|
||||
int dma_buf = gralloc_info->handle->data[0];
|
||||
|
||||
uint64_t bo_flags = 0;
|
||||
uint64_t bo_flags = ANV_BO_EXTERNAL;
|
||||
if (device->instance->physicalDevice.supports_48bit_addresses)
|
||||
bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS;
|
||||
if (device->instance->physicalDevice.use_softpin)
|
||||
|
@@ -167,7 +167,7 @@ static void
|
||||
brw_dispatch_compute_common(struct gl_context *ctx)
|
||||
{
|
||||
struct brw_context *brw = brw_context(ctx);
|
||||
bool fail_next;
|
||||
bool fail_next = false;
|
||||
|
||||
if (!_mesa_check_conditional_render(ctx))
|
||||
return;
|
||||
@@ -185,7 +185,6 @@ brw_dispatch_compute_common(struct gl_context *ctx)
|
||||
intel_batchbuffer_require_space(brw, 600);
|
||||
brw_require_statebuffer_space(brw, 2500);
|
||||
intel_batchbuffer_save_state(brw);
|
||||
fail_next = intel_batchbuffer_saved_state_is_empty(brw);
|
||||
|
||||
retry:
|
||||
brw->batch.no_wrap = true;
|
||||
|
@@ -885,7 +885,7 @@ brw_draw_single_prim(struct gl_context *ctx,
|
||||
{
|
||||
struct brw_context *brw = brw_context(ctx);
|
||||
const struct gen_device_info *devinfo = &brw->screen->devinfo;
|
||||
bool fail_next;
|
||||
bool fail_next = false;
|
||||
|
||||
/* Flag BRW_NEW_DRAW_CALL on every draw. This allows us to have
|
||||
* atoms that happen on every draw call.
|
||||
@@ -898,7 +898,6 @@ brw_draw_single_prim(struct gl_context *ctx,
|
||||
intel_batchbuffer_require_space(brw, 1500);
|
||||
brw_require_statebuffer_space(brw, 2400);
|
||||
intel_batchbuffer_save_state(brw);
|
||||
fail_next = intel_batchbuffer_saved_state_is_empty(brw);
|
||||
|
||||
if (brw->num_instances != prim->num_instances ||
|
||||
brw->basevertex != prim->basevertex ||
|
||||
|
@@ -1499,18 +1499,6 @@ update_buffer_image_param(struct brw_context *brw,
|
||||
param->stride[0] = _mesa_get_format_bytes(u->_ActualFormat);
|
||||
}
|
||||
|
||||
static unsigned
|
||||
get_image_num_layers(const struct intel_mipmap_tree *mt, GLenum target,
|
||||
unsigned level)
|
||||
{
|
||||
if (target == GL_TEXTURE_CUBE_MAP)
|
||||
return 6;
|
||||
|
||||
return target == GL_TEXTURE_3D ?
|
||||
minify(mt->surf.logical_level0_px.depth, level) :
|
||||
mt->surf.logical_level0_px.array_len;
|
||||
}
|
||||
|
||||
static void
|
||||
update_image_surface(struct brw_context *brw,
|
||||
struct gl_image_unit *u,
|
||||
@@ -1541,14 +1529,29 @@ update_image_surface(struct brw_context *brw,
|
||||
} else {
|
||||
struct intel_texture_object *intel_obj = intel_texture_object(obj);
|
||||
struct intel_mipmap_tree *mt = intel_obj->mt;
|
||||
const unsigned num_layers = u->Layered ?
|
||||
get_image_num_layers(mt, obj->Target, u->Level) : 1;
|
||||
|
||||
unsigned base_layer, num_layers;
|
||||
if (u->Layered) {
|
||||
if (obj->Target == GL_TEXTURE_3D) {
|
||||
base_layer = 0;
|
||||
num_layers = minify(mt->surf.logical_level0_px.depth, u->Level);
|
||||
} else {
|
||||
assert(obj->Immutable || obj->MinLayer == 0);
|
||||
base_layer = obj->MinLayer;
|
||||
num_layers = obj->Immutable ?
|
||||
obj->NumLayers :
|
||||
mt->surf.logical_level0_px.array_len;
|
||||
}
|
||||
} else {
|
||||
base_layer = obj->MinLayer + u->_Layer;
|
||||
num_layers = 1;
|
||||
}
|
||||
|
||||
struct isl_view view = {
|
||||
.format = format,
|
||||
.base_level = obj->MinLevel + u->Level,
|
||||
.levels = 1,
|
||||
.base_array_layer = obj->MinLayer + u->_Layer,
|
||||
.base_array_layer = base_layer,
|
||||
.array_len = num_layers,
|
||||
.swizzle = ISL_SWIZZLE_IDENTITY,
|
||||
.usage = ISL_SURF_USAGE_STORAGE_BIT,
|
||||
|
@@ -268,7 +268,7 @@ genX(blorp_exec)(struct blorp_batch *batch,
|
||||
assert(batch->blorp->driver_ctx == batch->driver_batch);
|
||||
struct brw_context *brw = batch->driver_batch;
|
||||
struct gl_context *ctx = &brw->ctx;
|
||||
bool check_aperture_failed_once;
|
||||
bool check_aperture_failed_once = false;
|
||||
|
||||
#if GEN_GEN >= 11
|
||||
/* The PIPE_CONTROL command description says:
|
||||
@@ -309,7 +309,6 @@ retry:
|
||||
intel_batchbuffer_require_space(brw, 1400);
|
||||
brw_require_statebuffer_space(brw, 600);
|
||||
intel_batchbuffer_save_state(brw);
|
||||
check_aperture_failed_once = intel_batchbuffer_saved_state_is_empty(brw);
|
||||
brw->batch.no_wrap = true;
|
||||
|
||||
#if GEN_GEN == 6
|
||||
|
@@ -301,13 +301,6 @@ intel_batchbuffer_save_state(struct brw_context *brw)
|
||||
brw->batch.saved.exec_count = brw->batch.exec_count;
|
||||
}
|
||||
|
||||
bool
|
||||
intel_batchbuffer_saved_state_is_empty(struct brw_context *brw)
|
||||
{
|
||||
struct intel_batchbuffer *batch = &brw->batch;
|
||||
return (batch->saved.map_next == batch->batch.map);
|
||||
}
|
||||
|
||||
void
|
||||
intel_batchbuffer_reset_to_saved(struct brw_context *brw)
|
||||
{
|
||||
|
@@ -24,7 +24,6 @@ struct intel_batchbuffer;
|
||||
void intel_batchbuffer_init(struct brw_context *brw);
|
||||
void intel_batchbuffer_free(struct intel_batchbuffer *batch);
|
||||
void intel_batchbuffer_save_state(struct brw_context *brw);
|
||||
bool intel_batchbuffer_saved_state_is_empty(struct brw_context *brw);
|
||||
void intel_batchbuffer_reset_to_saved(struct brw_context *brw);
|
||||
void intel_batchbuffer_require_space(struct brw_context *brw, GLuint sz);
|
||||
int _intel_batchbuffer_flush_fence(struct brw_context *brw,
|
||||
|
@@ -40,6 +40,7 @@
|
||||
#include "shaderapi.h"
|
||||
#include "shaderobj.h"
|
||||
|
||||
#include "program/program.h"
|
||||
#include "program/prog_parameter.h"
|
||||
|
||||
struct using_program_tuple
|
||||
@@ -470,6 +471,7 @@ begin_transform_feedback(struct gl_context *ctx, GLenum mode, bool no_error)
|
||||
|
||||
if (obj->program != source) {
|
||||
ctx->NewDriverState |= ctx->DriverFlags.NewTransformFeedbackProg;
|
||||
_mesa_reference_program_(ctx, &obj->program, source);
|
||||
obj->program = source;
|
||||
}
|
||||
|
||||
@@ -504,6 +506,7 @@ end_transform_feedback(struct gl_context *ctx,
|
||||
assert(ctx->Driver.EndTransformFeedback);
|
||||
ctx->Driver.EndTransformFeedback(ctx, obj);
|
||||
|
||||
_mesa_reference_program_(ctx, &obj->program, NULL);
|
||||
ctx->TransformFeedback.CurrentObject->Active = GL_FALSE;
|
||||
ctx->TransformFeedback.CurrentObject->Paused = GL_FALSE;
|
||||
ctx->TransformFeedback.CurrentObject->EndedAnytime = GL_TRUE;
|
||||
|
@@ -1069,15 +1069,6 @@ st_api_make_current(struct st_api *stapi, struct st_context_iface *stctxi,
|
||||
* of the referenced drawables no longer exist.
|
||||
*/
|
||||
st_framebuffers_purge(st);
|
||||
|
||||
/* Notify the driver that the context thread may have been changed.
|
||||
* This should pin all driver threads to a specific L3 cache for optimal
|
||||
* performance on AMD Zen CPUs.
|
||||
*/
|
||||
struct glthread_state *glthread = st->ctx->GLThread;
|
||||
thrd_t *upper_thread = glthread ? &glthread->queue.threads[0] : NULL;
|
||||
|
||||
util_context_thread_changed(st->pipe, upper_thread);
|
||||
}
|
||||
else {
|
||||
ret = _mesa_make_current(NULL, NULL, NULL);
|
||||
|
@@ -51,8 +51,12 @@ subdir('util')
|
||||
subdir('mapi')
|
||||
# TODO: opengl
|
||||
subdir('compiler')
|
||||
subdir('egl/wayland/wayland-drm')
|
||||
subdir('vulkan')
|
||||
if with_platform_wayland
|
||||
subdir('egl/wayland/wayland-drm')
|
||||
endif
|
||||
if with_any_vk
|
||||
subdir('vulkan')
|
||||
endif
|
||||
if with_gallium_radeonsi or with_amd_vk
|
||||
subdir('amd')
|
||||
endif
|
||||
|
@@ -60,7 +60,8 @@ libmesautil_la_LIBADD = \
|
||||
$(PTHREAD_LIBS) \
|
||||
$(CLOCK_LIB) \
|
||||
$(ZLIB_LIBS) \
|
||||
$(LIBATOMIC_LIBS)
|
||||
$(LIBATOMIC_LIBS) \
|
||||
-lm
|
||||
|
||||
libxmlconfig_la_SOURCES = $(XMLCONFIG_FILES)
|
||||
libxmlconfig_la_CFLAGS = \
|
||||
|
@@ -119,7 +119,7 @@ libmesa_util = static_library(
|
||||
'mesa_util',
|
||||
[files_mesa_util, format_srgb],
|
||||
include_directories : inc_common,
|
||||
dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic],
|
||||
dependencies : [dep_zlib, dep_clock, dep_thread, dep_atomic, dep_m],
|
||||
c_args : [c_msvc_compat_args, c_vis_args],
|
||||
build_by_default : false
|
||||
)
|
||||
|
@@ -554,10 +554,18 @@ ralloc_vasprintf_rewrite_tail(char **str, size_t *start, const char *fmt,
|
||||
*/
|
||||
|
||||
#define MIN_LINEAR_BUFSIZE 2048
|
||||
#define SUBALLOC_ALIGNMENT sizeof(uintptr_t)
|
||||
#define SUBALLOC_ALIGNMENT 8
|
||||
#define LMAGIC 0x87b9c7d3
|
||||
|
||||
struct linear_header {
|
||||
struct
|
||||
#ifdef _MSC_VER
|
||||
__declspec(align(8))
|
||||
#elif defined(__LP64__)
|
||||
__attribute__((aligned(16)))
|
||||
#else
|
||||
__attribute__((aligned(8)))
|
||||
#endif
|
||||
linear_header {
|
||||
#ifdef DEBUG
|
||||
unsigned magic; /* for debugging */
|
||||
#endif
|
||||
@@ -651,6 +659,8 @@ linear_alloc_child(void *parent, unsigned size)
|
||||
ptr = (linear_size_chunk *)((char*)&latest[1] + latest->offset);
|
||||
ptr->size = size;
|
||||
latest->offset += full_size;
|
||||
|
||||
assert((uintptr_t)&ptr[1] % SUBALLOC_ALIGNMENT == 0);
|
||||
return &ptr[1];
|
||||
}
|
||||
|
||||
|
@@ -455,10 +455,11 @@ wsi_wl_get_presentation_support(struct wsi_device *wsi_device,
|
||||
(struct wsi_wayland *)wsi_device->wsi[VK_ICD_WSI_PLATFORM_WAYLAND];
|
||||
|
||||
struct wsi_wl_display display;
|
||||
int ret = wsi_wl_display_init(wsi, &display, wl_display, false);
|
||||
wsi_wl_display_finish(&display);
|
||||
VkResult ret = wsi_wl_display_init(wsi, &display, wl_display, false);
|
||||
if (ret == VK_SUCCESS)
|
||||
wsi_wl_display_finish(&display);
|
||||
|
||||
return ret == 0;
|
||||
return ret == VK_SUCCESS;
|
||||
}
|
||||
|
||||
static VkResult
|
||||
|
Reference in New Issue
Block a user