summaryrefslogtreecommitdiffstats
path: root/llvm/test/Analysis/Profiling
Commit message (Collapse)AuthorAgeFilesLines
* Remove the very substantial, largely unmaintained legacy PGOChandler Carruth2013-10-026-828/+0
| | | | | | | | | | | | | | | | | | | | infrastructure. This was essentially work toward PGO based on a design that had several flaws, partially dating from a time when LLVM had a different architecture, and with an effort to modernize it abandoned without being completed. Since then, it has bitrotted for several years further. The result is nearly unusable, and isn't helping any of the modern PGO efforts. Instead, it is getting in the way, adding confusion about PGO in LLVM and distracting everyone with maintenance on essentially dead code. Removing it paves the way for modern efforts around PGO. Among other effects, this removes the last of the runtime libraries from LLVM. Those are being developed in the separate 'compiler-rt' project now, with somewhat different licensing specifically more approriate for runtimes. llvm-svn: 191835
* [tests] Cleanup initialization of test suffixes.Daniel Dunbar2013-08-161-10/+1
| | | | | | | | | | | | | | | | | - Instead of setting the suffixes in a bunch of places, just set one master list in the top-level config. We now only modify the suffix list in a few suites that have one particular unique suffix (.ml, .mc, .yaml, .td, .py). - Aside from removing the need for a bunch of lit.local.cfg files, this enables 4 tests that were inadvertently being skipped (one in Transforms/BranchFolding, a .s file each in DebugInfo/AArch64 and CodeGen/PowerPC, and one in CodeGen/SI which is now failing and has been XFAILED). - This commit also fixes a bunch of config files to use config.root instead of older copy-pasted code. llvm-svn: 188513
* AArch64: use MCJIT by default and enable related tests.Tim Northover2013-05-061-5/+0
| | | | | | | This just enables some testing I'd missed after implementing MCJIT support. llvm-svn: 181215
* Disable profiling tests for Hexagon since it doesn't support JIT.Jyotsna Verma2013-03-251-0/+3
| | | | llvm-svn: 177917
* AArch64: adjust tests which rely on a default JITTim Northover2013-02-181-0/+12
| | | | | | | | | | | | | Profiling tests *do* need a JIT. They'll pass if a cross-compiler targetting AArch64 by default has been built, but fail if a native AArch64 compiler has been build. Therefore XFAIL is inappropriate and we mark them unsupported. ExecutionEngine tests are JIT by definition, they should also be unsupported. Transforms/LICM only uses the interpreter to check the output is still sane after optimisation. It can be switched to use an interpreter. llvm-svn: 175433
* Add default JIT LIT variable.James Molloy2012-10-023-3/+3
| | | | | | Patch by David Tweed! llvm-svn: 164996
* llvm/test/Analysis/Profiling: Mark 3 of them as REQUIRES: loadable_module.NAKAMURA Takumi2012-08-293-0/+9
| | | | | FIXME: profile_rt.dll could be built on win32. llvm-svn: 162811
* Profile: set branch weight metadata with data generated from profiling.Manman Ren2012-08-283-0/+466
| | | | | | | | | This patch implements ProfileDataLoader which loads profile data generated by -insert-edge-profiling and updates branch weight metadata accordingly. Patch by Alastair Murray. llvm-svn: 162799
* Replace all instances of dg.exp file with lit.local.cfg, since all tests are ↵Eli Bendersky2012-02-162-4/+1
| | | | | | | | run with LIT now and now Dejagnu. dg.exp is no longer needed. Patch reviewed by Daniel Dunbar. It will be followed by additional cleanup patches. llvm-svn: 150664
* test: Check the feature 'loadable_module' with load modules in %llvmshlibdir.NAKAMURA Takumi2010-11-291-2/+2
| | | | | | %llvmshlibdir should be 'bin' on Cygming. llvm-svn: 120282
* Change tests from "opt %s" to "opt < %s" so that opt doesn't see theDan Gohman2009-09-111-1/+1
| | | | | | | | input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537
* Use opt -S instead of piping bitcode output through llvm-dis.Dan Gohman2009-09-081-1/+1
| | | | llvm-svn: 81257
* Change these tests to feed the assembly files to opt directly, insteadDan Gohman2009-09-081-1/+1
| | | | | | of using llvm-as, now that opt supports this. llvm-svn: 81226
* Updated tests to use ProfileVerifer to test ProfileLoader and ProfileEstimator.Andreas Neustifter2009-09-042-3/+13
| | | | | | (Keep disabled test disabled until selfhosted build issue is resolved.) llvm-svn: 81008
* Revert "--- Reverse-merging r80908 into '.':", I already "fixed" this.Daniel Dunbar2009-09-033-0/+345
| | | | llvm-svn: 80970
* --- Reverse-merging r80908 into '.':Bill Wendling2009-09-033-345/+0
| | | | | | | | | | | D test/Analysis/Profiling --- Reverse-merging r80907 into '.': U lib/Analysis/ProfileInfoLoaderPass.cpp Attempt to remove failure in the self-hosting build bot. llvm-svn: 80966
* Disable some parts of the profiling-tool-chain test, which is currently failingDaniel Dunbar2009-09-031-5/+9
| | | | | | | on a self-hosted build (although it seems to work on non-self hosted). I'll work with Andreas to figure this out. llvm-svn: 80947
* Reapply profiling tests.Daniel Dunbar2009-09-033-0/+341
| | | | llvm-svn: 80908
* Removed temporarily because of breaking Darwin builds.Andreas Neustifter2009-09-023-341/+0
| | | | | | (See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090831/086214.html) llvm-svn: 80799
* Changed profiling-tool-chain.ll test to use optimal-edge-profiling instead ofAndreas Neustifter2009-09-022-7/+164
| | | | | | | | | edge-profiling, this is more useful since the loading of the optimal-edge-profiling is more complicated. The edge-profiling is tested in edge-profiling.ll where only the instrumentation is tested. llvm-svn: 80791
* Don't force the triple or data layout in this test. We just have to get themDaniel Dunbar2009-09-021-2/+0
| | | | | | from the host and hope that works. llvm-svn: 80751
* rm needs -fTorok Edwin2009-08-281-1/+1
| | | | llvm-svn: 80363
* Remove the llvmprof.out from the test output, otherwise runningTorok Edwin2009-08-281-1/+1
| | | | | | | make check in a non-clean directory causes it to fail (for example when running make check twice), since execution counts will differ. llvm-svn: 80362
* Remove profiling output file because two consecutive runs of make check giveAndreas Neustifter2009-08-281-0/+1
| | | | | | error. llvm-svn: 80357
* Removed unnecessary file creation during test.Andreas Neustifter2009-08-281-1/+1
| | | | llvm-svn: 80356
* Pulled all tests into one test. Removed some redundant tests. Rename.Andreas Neustifter2009-08-284-326/+181
| | | | llvm-svn: 80355
* Readded test from r79615, this tests the complete profiling tool chain. FurhterAndreas Neustifter2009-08-284-0/+330
| | | | | | tests can test only parts of this system. llvm-svn: 80348
* Removed profiling test, lli not available on all platforms.Andreas Neustifter2009-08-214-330/+0
| | | | llvm-svn: 79633
* Added tests for Profiling Infrastructure.Andreas Neustifter2009-08-214-0/+330
llvm-svn: 79615
OpenPOWER on IntegriCloud