X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fgallium%2Fdrivers%2Fllvmpipe%2Flp_test_main.c;h=8a896becf5346843e73709adf97eeaad61537460;hb=7c027666da1cd3691983bbc238847a2af57f336e;hp=d229c6203109f39214b7a6a3f92105a060c1ed08;hpb=b922a0ce12916a91cfc3e56714913fcf63279ff2;p=mesa.git diff --git a/src/gallium/drivers/llvmpipe/lp_test_main.c b/src/gallium/drivers/llvmpipe/lp_test_main.c index d229c620310..8a896becf53 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_main.c +++ b/src/gallium/drivers/llvmpipe/lp_test_main.c @@ -39,6 +39,7 @@ #include "gallivm/lp_bld_const.h" #include "gallivm/lp_bld_init.h" +#include "gallivm/lp_bld_debug.h" #include "lp_test.h" @@ -369,7 +370,11 @@ int main(int argc, char **argv) unsigned i; boolean success; boolean single = FALSE; - struct gallivm_state *gallivm; + unsigned fpstate; + + util_cpu_detect(); + fpstate = util_fpstate_get(); + util_fpstate_set_denorms_to_zero(fpstate); for(i = 1; i < argc; ++i) { if(strcmp(argv[i], "-v") == 0) @@ -384,23 +389,28 @@ int main(int argc, char **argv) lp_build_init(); - gallivm = gallivm_create(); +#ifdef DEBUG + if (verbose >= 2) { + gallivm_debug |= GALLIVM_DEBUG_IR; + gallivm_debug |= GALLIVM_DEBUG_ASM; + } +#endif util_cpu_detect(); if(fp) { /* Warm up the caches */ - test_some(gallivm, 0, NULL, 100); + test_some(0, NULL, 100); write_tsv_header(fp); } if (single) - success = test_single(gallivm, verbose, fp); + success = test_single(verbose, fp); else if (n) - success = test_some(gallivm, verbose, fp, n); + success = test_some(verbose, fp, n); else - success = test_all(gallivm, verbose, fp); + success = test_all(verbose, fp); if(fp) fclose(fp);