Skip to content
  1. Jul 02, 2012
    • Chandler Carruth's avatar
      Extend the workaround from r159593 to cover a few explicit alias · a7f1f35e
      Chandler Carruth authored
      targets.
      
      llvm-svn: 159597
      a7f1f35e
    • Chandler Carruth's avatar
      Revert r159588, and apply a more principled fix. Place the fix for this · aec96181
      Chandler Carruth authored
      in the abstraction for lit test suites so that the various other layers
      of abstraction pick up the same behavioral fix, and so that we still get
      a complete list of dependencies for the 'check-all' target.
      
      This should fix the follow-on issues of the same nature with various
      other build targets, including Clang targets. Sorry for the churn, and
      again thanks to Matt for testing and breaking this more thoroughly.
      
      llvm-svn: 159593
      aec96181
    • Chandler Carruth's avatar
      Work around a really frustrating apparant CMake bug. · 6e80d593
      Chandler Carruth authored
      No functionality changed here, except that the CMake installed by
      default on Ubuntu Lucid should actually work with the makefile
      generators now.
      
      Thanks to Matt for the report and head-desking required to figure out
      why it was failing.
      
      llvm-svn: 159588
      6e80d593
    • Jack Carter's avatar
      Pass the correct ELFOSABI enumeration to the MipsELFObjectWriter constructor · 06de0fb0
      Jack Carter authored
      Contributer: Sasa Stankovic 
      llvm-svn: 159574
      06de0fb0
    • Bob Wilson's avatar
      Extend TargetPassConfig to allow running only a subset of the normal passes. · cac3b906
      Bob Wilson authored
      This is still a work in progress but I believe it is currently good enough
      to fix PR13122 "Need unit test driver for codegen IR passes".  For example,
      you can run llc with -stop-after=loop-reduce to have it dump out the IR after
      running LSR.  Serializing machine-level IR is not yet supported but we have
      some patches in progress for that.
      
      The plan is to serialize the IR to a YAML file, containing separate sections
      for the LLVM IR, machine-level IR, and whatever other info is needed.  Chad
      suggested that we stash the stop-after pass in the YAML file and use that
      instead of the start-after option to figure out where to restart the
      compilation.  I think that's a great idea, but since it's not implemented yet
      I put the -start-after option into this patch for testing purposes.
      
      llvm-svn: 159570
      cac3b906
    • Chandler Carruth's avatar
      Fix the remaining TCL-style quotes found in the testsuite. This is · ff123d5c
      Chandler Carruth authored
      another mechanical change accomplished though the power of terrible Perl
      scripts.
      
      I have manually switched some "s to 's to make escaping simpler.
      
      While I started this to fix tests that aren't run in all configurations,
      the massive number of tests is due to a really frustrating fragility of
      our testing infrastructure: things like 'grep -v', 'not grep', and
      'expected failures' can mask broken tests all too easily.
      
      Essentially, I'm deeply disturbed that I can change the testsuite so
      radically without causing any change in results for most platforms. =/
      
      llvm-svn: 159547
      ff123d5c
    • Duncan Sands's avatar
      e8ce94fc
    • Chandler Carruth's avatar
      Convert the uses of '|&' to use '2>&1 |' instead, which works on old · 5da53436
      Chandler Carruth authored
      versions of Bash. In addition, I can back out the change to the lit
      built-in shell test runner to support this.
      
      This should fix the majority of fallout on Darwin, but I suspect there
      will be a few straggling issues.
      
      llvm-svn: 159544
      5da53436
    • Bob Wilson's avatar
      Do not attempt to use ROR for Thumb1. · 22972210
      Bob Wilson authored
      Patch by Matt Fischer!
      
      llvm-svn: 159538
      22972210
    • Nuno Lopes's avatar
    • Chandler Carruth's avatar
      The built-in shell test runner for some reason doesn't like the quoting · 665c76bc
      Chandler Carruth authored
      and multi-line nature of this test. I don't really feel like bugging
      this kind of edge-case, so just put it on one line and use single
      quotes. With this, every test *really* passes with the built-in shell
      test runner.
      
      llvm-svn: 159530
      665c76bc
    • Chandler Carruth's avatar
      Fix the TCL-style quoting in one random test that somehow slipped · 872ac7cf
      Chandler Carruth authored
      through my perl nets.
      
      With this, the test suite passes even if I force it to run with the
      built-in shell test logic, except for a test which REQUIREs shell.
      
      llvm-svn: 159529
      872ac7cf
    • Stepan Dyatkovskiy's avatar
      IntRange: · 8b9ecca4
      Stepan Dyatkovskiy authored
        - Changed isSingleNumber method behaviour. Now this flag is calculated on demand.
      IntegersSubsetMapping
        - Optimized diff operation.
        - Replaced type of Items field from std::list with std::map.
        - Added new methods:
          bool isOverlapped(self &RHS)
          void add(self& RHS, SuccessorClass *S)
          void detachCase(self& NewMapping, SuccessorClass *Succ)
          void removeCase(SuccessorClass *Succ)
          SuccessorClass *findSuccessor(const IntTy& Val)
          const IntTy* getCaseSingleNumber(SuccessorClass *Succ)
      IntegersSubsetTest
        - DiffTest: Added checks for successors.
      SimplifyCFG
        Updated SwitchInst usage (now it is case-ragnes compatible) for
          - SimplifyEqualityComparisonWithOnlyPredecessor
          - FoldValueComparisonIntoPredecessors
      
      llvm-svn: 159527
      8b9ecca4
    • Chandler Carruth's avatar
      Convert all tests using TCL-style quoting to use shell-style quoting. · a5a29f97
      Chandler Carruth authored
      This was done through the aid of a terrible Perl creation. I will not
      paste any of the horrors here. Suffice to say, it require multiple
      staged rounds of replacements, state carried between, and a few
      nested-construct-parsing hacks that I'm not proud of. It happens, by
      luck, to be able to deal with all the TCL-quoting patterns in evidence
      in the LLVM test suite.
      
      If anyone is maintaining large out-of-tree test trees, feel free to poke
      me and I'll send you the steps I used to convert things, as well as
      answer any painful questions etc. IRC works best for this type of thing
      I find.
      
      Once converted, switch the LLVM lit config to use ShTests the same as
      Clang. In addition to being able to delete large amounts of Python code
      from 'lit', this will also simplify the entire test suite and some of
      lit's architecture.
      
      Finally, the test suite runs 33% faster on Linux now. ;]
      For my 16-hardware-thread (2x 4-core xeon e5520): 36s -> 24s
      
      llvm-svn: 159525
      a5a29f97
    • Chandler Carruth's avatar
      Make tests which first provide a negative assertion via 'not', then · 0a4a2613
      Chandler Carruth authored
      a pipeline, and then a positive assertion via grep, use two RUN lines
      instead.
      
      Supporting these complex ideas of 'success' and 'failure' across
      multiple stages of a pipeline is brittle in the shell world, and would
      block switching to ShTest format; it only worked due to contrivances
      introduced by the TclTest format.
      
      Writing this as two separate RUN lines seems clearer in any event.
      
      This is another step toward completely removing TclTests from lit.
      
      llvm-svn: 159524
      0a4a2613
    • Chandler Carruth's avatar
      Rewrite three tests that had truly egregious abuses of 'grep' in them to · ae00a808
      Chandler Carruth authored
      use FileCheck.
      
      Aside from removing a dependence on TCL-style quoting, this also makes
      the tests ... significantly more robust. =] It would be really, *really*
      great of the maintainer(s) of the CellSPU backend went through and
      systematically rewrite these tests to use FileCheck. There are a lot
      more that have nearly this bad of abuses.
      
      Another step along the path to a TclTest-free testsuite.
      
      llvm-svn: 159523
      ae00a808
    • Chandler Carruth's avatar
      Switch a bunch of Linker tests from using elaborate echo productions to · 8bdfe1ec
      Chandler Carruth authored
      just provide and reference separate input files from an Inputs
      subdirectory. This pattern works very well in the Clang tree and is
      easier to understand in my opinion. It also has fewer limitations and
      will remove one particularly annoying use of TCL-style {} quoting from
      the testsuite.
      
      Also teach the LLVM lit configuration to avoid recursing into 'Inputs'
      subdirectories. This wasn't required for the previous 'Inputs'
      subdirectories used due to fortuitous suffix patterns.
      
      This is the first step to completely removing support for TCL-style tests.
      
      llvm-svn: 159520
      8bdfe1ec
    • Alexey Samsonov's avatar
      This patch extends the libLLVMDebugInfo which contains a minimalistic DWARF parser: · f4462fa3
      Alexey Samsonov authored
      1) DIContext is now able to return function name for a given instruction address (besides file/line info).
      2) llvm-dwarfdump accepts flag --functions that prints the function name (if address is specified by --address flag).
      3) test case that checks the basic functionality of llvm-dwarfdump added
      
      llvm-svn: 159512
      f4462fa3
  2. Jul 01, 2012
  3. Jun 30, 2012
  4. Jun 29, 2012
  5. Jun 28, 2012
Loading