radv: remove the validation layer and some related bits.

As pointed out by Emil this isn't used in anv anymore,
and it was totally unused in radv anyways.

Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Dave Airlie
2016-10-12 08:37:14 +10:00
parent 014ec78fb2
commit 8cc9f89d26
2 changed files with 2 additions and 37 deletions

View File

@@ -128,7 +128,6 @@ if opt_header:
for type, name, args, num, h in entrypoints:
print_guard_start(name)
print "%s radv_%s%s;" % (type, name, args)
print "%s radv_validate_%s%s;" % (type, name, args)
print_guard_end(name)
exit()
@@ -181,7 +180,7 @@ for type, name, args, num, h in entrypoints:
i += 2 + len(name) + 1
print " ;"
# Now generate the table of all entry points and their validation functions
# Now generate the table of all entry points
print "\nstatic const struct radv_entrypoint entrypoints[] = {"
for type, name, args, num, h in entrypoints:
@@ -196,7 +195,7 @@ print """
*/
"""
for layer in [ "radv", "validate" ]:
for layer in [ "radv" ]:
for type, name, args, num, h in entrypoints:
print_guard_start(name)
print "%s %s_%s%s __attribute__ ((weak));" % (type, layer, name, args)
@@ -209,33 +208,10 @@ for layer in [ "radv", "validate" ]:
print "};\n"
print """
#ifdef DEBUG
static bool enable_validate = true;
#else
static bool enable_validate = false;
#endif
/* We can't use symbols that need resolving (like, oh, getenv) in the resolve
* function. This means that we have to determine whether or not to use the
* validation layer sometime before that. The constructor function attribute asks
* the dynamic linker to invoke determine_validate() at dlopen() time which
* works.
*/
static void __attribute__ ((constructor))
determine_validate(void)
{
const char *s = getenv("ANV_VALIDATE");
if (s)
enable_validate = atoi(s);
}
void * __attribute__ ((noinline))
radv_resolve_entrypoint(uint32_t index)
{
if (enable_validate && validate_layer.entrypoints[index])
return validate_layer.entrypoints[index];
return radv_layer.entrypoints[index];
}
"""