summaryrefslogtreecommitdiffstats
path: root/llvm
Commit message (Collapse)AuthorAgeFilesLines
* Remove hack now that Evan fixed it so that the frame pointer isn't saved twice.Bill Wendling2009-07-141-23/+0
| | | | llvm-svn: 75581
* Fix indvars to not assume that a loop with a single unique exitDan Gohman2009-07-142-7/+52
| | | | | | block has a single unique exiting block. llvm-svn: 75579
* Introduce a new LoopInfo utility function makeLoopInvariant, whichDan Gohman2009-07-142-1/+89
| | | | | | | | | | | works similar to isLoopInvariant, except that it will do trivial hoisting to try to make the value loop invariant if it isn't already. This makes it easier for transformation passes to clear trivial instructions out of the way (the regular LICM pass doesn't run until relatively late). This is code factored out of LoopSimplify and other places. llvm-svn: 75578
* use getValueName instead of makeNameProper.Chris Lattner2009-07-141-2/+2
| | | | llvm-svn: 75577
* Fix detection of valid BFC immediates.David Goodwin2009-07-142-10/+16
| | | | llvm-svn: 75576
* Do not use Mangler to remove '1' from linkage name.Devang Patel2009-07-142-17/+4
| | | | llvm-svn: 75574
* Check for the correct unnamed name.Bill Wendling2009-07-141-1/+1
| | | | llvm-svn: 75573
* Fix pr4544. When remating, make sure the destination register fits the ↵Evan Cheng2009-07-141-0/+11
| | | | | | | | instruction definition. It may be mismatched due to sub-register coalescing. No test case yet because the code doesn't trigger until 75408 is re-applied. llvm-svn: 75572
* Don't delete asm's just because their inputs are undefined;Dale Johannesen2009-07-142-8/+28
| | | | | | xor R, R is a common and valid idiom for zeroing a register, for example. llvm-svn: 75571
* Add a newline, now that Value's operator<< doesn't print one.Dan Gohman2009-07-141-0/+1
| | | | llvm-svn: 75568
* FreeInst is trapping.Dan Gohman2009-07-141-0/+1
| | | | llvm-svn: 75567
* Fix an obvious copy-and-paste error.Bob Wilson2009-07-141-8/+8
| | | | llvm-svn: 75566
* Revert 75308.Bob Wilson2009-07-144-203/+60
| | | | llvm-svn: 75565
* the mangler can never mangle intrinsics, don't allow this.Chris Lattner2009-07-141-4/+2
| | | | llvm-svn: 75564
* Fix obvious typo.Eli Friedman2009-07-141-1/+1
| | | | llvm-svn: 75563
* Revert 75309.Bob Wilson2009-07-141-106/+8
| | | | llvm-svn: 75562
* rename Memo/Count to AnonGlobalIDs/NextAnonGlobalID to be more Chris Lattner2009-07-142-24/+23
| | | | | | | | | | descriptive. Thange them to keep track of the ID of a global that is assigned, not the first mangled name returned for it. Without doing this, we are required to always use the same suffix for a global that gets mangled. This means that we can mangle the same global once with $stub and another time with $non_lazy_ptr or whatever. llvm-svn: 75561
* Move more functionality over to LLVMContext.Owen Anderson2009-07-134-91/+19
| | | | llvm-svn: 75559
* remove Mangler::getTypeID and related data, it was only used for manglingChris Lattner2009-07-132-19/+1
| | | | | | local symbols and we haven't had type planes since llvm 1.9. llvm-svn: 75558
* remove mangler support for mangling local names. Mangler should only be Chris Lattner2009-07-132-15/+0
| | | | | | used with globals. llvm-svn: 75557
* fix CBE & MSIL backends to not use the mangler for non-global symbols.Chris Lattner2009-07-133-27/+54
| | | | llvm-svn: 75556
* don't print redundant @PLT suffixesChris Lattner2009-07-131-4/+0
| | | | llvm-svn: 75554
* Revert an accidental commit.Evan Cheng2009-07-131-1/+1
| | | | llvm-svn: 75553
* the mangler should put suffixes on unnamed global's mangled names as well Chris Lattner2009-07-131-1/+1
| | | | | | if present. llvm-svn: 75547
* Move a bit more functionality to LLVMContext, which apparently wasn't being ↵Owen Anderson2009-07-134-25/+34
| | | | | | used anyways. llvm-svn: 75546
* Added llvm-mc support for parsing the .abort directive.Kevin Enderby2009-07-135-0/+52
| | | | llvm-svn: 75545
* Check in a reduced version of this testcase.Dan Gohman2009-07-131-17376/+563
| | | | llvm-svn: 75544
* Print a newline after printing a Value, now that Value's operator<<Dan Gohman2009-07-131-1/+1
| | | | | | doesn't print a newline. llvm-svn: 75543
* #include "llvm/Assembly/Writer.h" to get the declaration for WriteAsOperand.Dan Gohman2009-07-131-0/+1
| | | | llvm-svn: 75542
* Two changes:Chris Lattner2009-07-132-11/+3
| | | | | | | | | | | 1) unique globals with the existing "Count" local in Mangler, not with atomic nonsense. Using atomics will give us nondeterminstic output from the compiler when using multiple threads, which is bad. 2) Do not mangle an unknown global name with a type suffix. We don't need this anymore now that llvm ir doesn't have type planes. llvm-svn: 75541
* Use assertion.Devang Patel2009-07-131-2/+4
| | | | llvm-svn: 75540
* PR4548: optimize zext+udiv+trunc to udiv.Eli Friedman2009-07-132-1/+39
| | | | llvm-svn: 75539
* Inline EvalVectorOp in order to get rid of passing-pointer-to-static-methods ↵Owen Anderson2009-07-131-38/+132
| | | | | | behavior. llvm-svn: 75538
* Cleanup the global emission and refactor some codeBruno Cardoso Lopes2009-07-134-104/+110
| | | | llvm-svn: 75537
* Fix the build.Owen Anderson2009-07-131-0/+1
| | | | llvm-svn: 75536
* NewNightlyTest.pl - Add -configure-args option.Daniel Dunbar2009-07-131-0/+2
| | | | | | - For adding arbitrary arguments to pass to configure. llvm-svn: 75535
* Fix bug in run-line.Eli Friedman2009-07-131-3/+1
| | | | llvm-svn: 75534
* Add testcases for PR4538, PR4537, and PR4534.Dan Gohman2009-07-133-0/+17780
| | | | llvm-svn: 75533
* clean up some syntax.Chris Lattner2009-07-131-12/+11
| | | | llvm-svn: 75532
* Canonicalize boolean +/- a constant to a select.Eli Friedman2009-07-132-6/+39
| | | | | | | | (I think it's reasonably clear that we want to have a canonical form for constructs like this; if anyone thinks that a select is not the best canonical form, please tell me.) llvm-svn: 75531
* Fix a few assertion strings.Dan Gohman2009-07-131-2/+2
| | | | llvm-svn: 75530
* Forward-declare Loop and LoopInfo instead of #including LoopInfo.h.Dan Gohman2009-07-136-9/+18
| | | | llvm-svn: 75529
* These don't really need contexts either.Owen Anderson2009-07-137-20/+30
| | | | llvm-svn: 75528
* NewNightlyTest.pl - Add -noremoveatend option.Daniel Dunbar2009-07-131-1/+2
| | | | | | | | - Like -noremove, except the build directory is still purged prior to building but isn't removed at the end of the test run (so the build products can be examined if need be). llvm-svn: 75527
* eliminate a bunch of code in print_pcrel_imm for printing symbols, usingChris Lattner2009-07-131-73/+26
| | | | | | printSymbolOperand instead. llvm-svn: 75526
* Whitespace cleanups.Dan Gohman2009-07-131-5/+5
| | | | llvm-svn: 75525
* Fix an 80-column violation.Dan Gohman2009-07-131-4/+4
| | | | llvm-svn: 75524
* Move isLCSSAForm, isLoopInvariant, getCanonicalInductionVariable,Dan Gohman2009-07-134-222/+230
| | | | | | | | and related functions out of LoopBase and into Loop, since they are specific to BasicBlock-based loops. This also allows the code to be moved out-of-line. llvm-svn: 75523
* CMake: Refuses to work for out-of-source builds when tablegenned filesOscar Fuentes2009-07-131-0/+18
| | | | | | are found mixed with the sources. Fixes PR 4522. llvm-svn: 75522
* move a method and add a comment, no functionality change.Chris Lattner2009-07-131-86/+89
| | | | llvm-svn: 75520
OpenPOWER on IntegriCloud