oota-llvm.git
13 years agoFix what seems like a clear buffer overflow, noticed by cppcheck.
Duncan Sands [Sat, 17 Jul 2010 20:23:37 +0000 (20:23 +0000)]
Fix what seems like a clear buffer overflow, noticed by cppcheck.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108629 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse isPrologLabel() instead of checking the opcode directly.
Bill Wendling [Sat, 17 Jul 2010 19:18:44 +0000 (19:18 +0000)]
Use isPrologLabel() instead of checking the opcode directly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108628 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agothe stackifier is global!
Chris Lattner [Sat, 17 Jul 2010 17:42:04 +0000 (17:42 +0000)]
the stackifier is global!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108626 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agodoxygenify some comments.
Chris Lattner [Sat, 17 Jul 2010 17:40:51 +0000 (17:40 +0000)]
doxygenify some comments.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108625 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoupdate CMakeLists.txt
Zhongxing Xu [Sat, 17 Jul 2010 12:12:42 +0000 (12:12 +0000)]
update CMakeLists.txt

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108620 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemoved unused inRange variable.
Lang Hames [Sat, 17 Jul 2010 11:43:07 +0000 (11:43 +0000)]
Removed unused inRange variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108618 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSwitched to array_pod_sort as per Chris's suggestion.
Lang Hames [Sat, 17 Jul 2010 09:21:53 +0000 (09:21 +0000)]
Switched to array_pod_sort as per Chris's suggestion.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108616 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoLoopSplitter - intended to split live intervals over loop boundaries.
Lang Hames [Sat, 17 Jul 2010 07:34:01 +0000 (07:34 +0000)]
LoopSplitter - intended to split live intervals over loop boundaries.
Still very much under development. Comments and fixes will be forthcoming.

(This commit includes some small tweaks to LiveIntervals & LoopInfo to support the splitter)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108615 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAnother attempt at getting the clang self-host to like my instcombine patch.
Owen Anderson [Sat, 17 Jul 2010 06:56:35 +0000 (06:56 +0000)]
Another attempt at getting the clang self-host to like my instcombine patch.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108614 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoIterating over sets of pointers in a heuristic was a bad idea. Switching
Lang Hames [Sat, 17 Jul 2010 06:31:41 +0000 (06:31 +0000)]
Iterating over sets of pointers in a heuristic was a bad idea. Switching
any command line paramater changed the register allocation produced by
PBQP.

Turns out variety is not the spice of life.

Fixed some comparators, added others. All good now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108613 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoStart of .sleb128/.uleb128 parsing support.
Eli Friedman [Sat, 17 Jul 2010 06:27:28 +0000 (06:27 +0000)]
Start of .sleb128/.uleb128 parsing support.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108612 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agounit test to go along with r108610
Chris Lattner [Sat, 17 Jul 2010 06:14:03 +0000 (06:14 +0000)]
unit test to go along with r108610

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108611 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix PR7658, a problem where type refinement can trigger
Chris Lattner [Sat, 17 Jul 2010 06:13:52 +0000 (06:13 +0000)]
Fix PR7658, a problem where type refinement can trigger
constant replacement which was botching its handling of
types.  Use of getType() instead of getRawType() was causing
the type map in constant folding to be updated wrong.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108610 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoWork-in-progress parsing for ELF .section directive.
Eli Friedman [Sat, 17 Jul 2010 04:29:04 +0000 (04:29 +0000)]
Work-in-progress parsing for ELF .section directive.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108609 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd combiner patterns to more effectively utilize the BFI (bitfield insert)
Jim Grosbach [Sat, 17 Jul 2010 03:30:54 +0000 (03:30 +0000)]
Add combiner patterns to more effectively utilize the BFI (bitfield insert)
instruction for non-constant operands. This includes the case referenced
in the README.txt regarding a bitfield copy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108608 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoTest for ELF .size directive.
Eli Friedman [Sat, 17 Jul 2010 03:15:24 +0000 (03:15 +0000)]
Test for ELF .size directive.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108607 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd support for parsing .size directives for ELF.
Eli Friedman [Sat, 17 Jul 2010 03:09:18 +0000 (03:09 +0000)]
Add support for parsing .size directives for ELF.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108606 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMC/AsmParser: Lift Run() and TargetParser to base class.
Daniel Dunbar [Sat, 17 Jul 2010 02:26:10 +0000 (02:26 +0000)]
MC/AsmParser: Lift Run() and TargetParser to base class.

Also, add constructor function for creating AsmParser instances.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108604 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoadd BFI to getTargetNodeName()
Jim Grosbach [Sat, 17 Jul 2010 01:50:57 +0000 (01:50 +0000)]
add BFI to getTargetNodeName()

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108603 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix logic think-o
Jim Grosbach [Sat, 17 Jul 2010 01:22:19 +0000 (01:22 +0000)]
Fix logic think-o

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108601 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove unnecessary check that was subsumed into canRealignStack.
Eric Christopher [Sat, 17 Jul 2010 00:33:04 +0000 (00:33 +0000)]
Remove unnecessary check that was subsumed into canRealignStack.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108588 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoPropagate alloca alignment information via variable size object frame
Eric Christopher [Sat, 17 Jul 2010 00:28:22 +0000 (00:28 +0000)]
Propagate alloca alignment information via variable size object frame
information.

No functional change yet.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108583 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMake more explicit and add some currently disabled error messages for
Eric Christopher [Sat, 17 Jul 2010 00:27:24 +0000 (00:27 +0000)]
Make more explicit and add some currently disabled error messages for
stack realignment on ARM.

Also check for function attributes as we do on X86 as well as
make explicit that we're checking can as well as needs in this function.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108582 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMake comment a bit more clear as well as return statement since
Eric Christopher [Sat, 17 Jul 2010 00:25:41 +0000 (00:25 +0000)]
Make comment a bit more clear as well as return statement since
needsStackRealignment is currently checking the can conditions as well.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108581 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUpdate comment.
Bill Wendling [Fri, 16 Jul 2010 23:10:00 +0000 (23:10 +0000)]
Update comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108571 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd basic support to code-gen the ARM/Thumb2 bit-field insert (BFI) instruction
Jim Grosbach [Fri, 16 Jul 2010 23:05:05 +0000 (23:05 +0000)]
Add basic support to code-gen the ARM/Thumb2 bit-field insert (BFI) instruction
and a combine pattern to use it for setting a bit-field to a constant
value. More to come for non-constant stores.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108570 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix whitespace.
Dan Gohman [Fri, 16 Jul 2010 22:58:39 +0000 (22:58 +0000)]
Fix whitespace.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108569 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoConsider this function:
Bill Wendling [Fri, 16 Jul 2010 22:51:10 +0000 (22:51 +0000)]
Consider this function:

  void foo() { __builtin_unreachable(); }

It will output the following on Darwin X86:

_func1:
Leh_func_begin0:
        pushq %rbp
Ltmp0:
        movq %rsp, %rbp
Ltmp1:
Leh_func_end0:

This prolog adds a new Call Frame Information (CFI) row to the FDE with an
address that is not within the address range of the code it describes -- part is
equal to the end of the function -- and therefore results in an invalid EH
frame. If we emit a nop in this situation, then the CFI row is now within the
address range.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108568 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove the isMoveInstr() hook.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 22:35:46 +0000 (22:35 +0000)]
Remove the isMoveInstr() hook.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108567 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAvoid isMoveInstr when printing XCore pseudo-moves.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 22:35:37 +0000 (22:35 +0000)]
Avoid isMoveInstr when printing XCore pseudo-moves.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108566 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse MI.isCopy.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 22:35:34 +0000 (22:35 +0000)]
Use MI.isCopy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108565 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse a small local function for a single remaining late isMoveInstr call in
Jakob Stoklund Olesen [Fri, 16 Jul 2010 22:35:32 +0000 (22:35 +0000)]
Use a small local function for a single remaining late isMoveInstr call in
Thumb2ITBlockPass.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108564 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRename DBG_LABEL PROLOG_LABEL, because it's only used during prolog emission and
Bill Wendling [Fri, 16 Jul 2010 22:20:36 +0000 (22:20 +0000)]
Rename DBG_LABEL PROLOG_LABEL, because it's only used during prolog emission and
thus is a much more meaningful name.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108563 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoKeep valgrind quiet.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 22:00:33 +0000 (22:00 +0000)]
Keep valgrind quiet.

The isLive() method can read uninitialized memory, but it still gives correct
results.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108561 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agotidy up
Chris Lattner [Fri, 16 Jul 2010 21:20:46 +0000 (21:20 +0000)]
tidy up

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108560 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove remaining calls to TII::isMoveInstr.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 21:03:55 +0000 (21:03 +0000)]
Remove remaining calls to TII::isMoveInstr.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108556 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoEmit COPY instead of FMR/FMSD instructions for floating point conversion on
Jakob Stoklund Olesen [Fri, 16 Jul 2010 21:03:52 +0000 (21:03 +0000)]
Emit COPY instead of FMR/FMSD instructions for floating point conversion on
PowerPC.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108555 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoeliminate unlockedRefineAbstractTypeTo, types are all per-llvmcontext,
Chris Lattner [Fri, 16 Jul 2010 20:50:13 +0000 (20:50 +0000)]
eliminate unlockedRefineAbstractTypeTo, types are all per-llvmcontext,
so there is no locking involved in type refinement.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108553 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoget the first few tags from a precomputed table (count can be increased if desired)
Gabor Greif [Fri, 16 Jul 2010 20:35:19 +0000 (20:35 +0000)]
get the first few tags from a precomputed table (count can be increased if desired)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108549 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd missing attributes to cpp backend.
Eli Friedman [Fri, 16 Jul 2010 18:47:20 +0000 (18:47 +0000)]
Add missing attributes to cpp backend.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108547 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAccept registers with P modifier. PR 5314.
Dale Johannesen [Fri, 16 Jul 2010 18:35:46 +0000 (18:35 +0000)]
Accept registers with P modifier.  PR 5314.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108545 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoMake llvm-bcanalyzer print out the full enum name for all metadata
Dan Gohman [Fri, 16 Jul 2010 18:28:07 +0000 (18:28 +0000)]
Make llvm-bcanalyzer print out the full enum name for all metadata
code ids, not just some of them.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108543 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoTeach PPCInstrInfo::storeRegToStackSlot and loadRegFromStackSlot to add memory
Jakob Stoklund Olesen [Fri, 16 Jul 2010 18:22:00 +0000 (18:22 +0000)]
Teach PPCInstrInfo::storeRegToStackSlot and loadRegFromStackSlot to add memory
operands.

Hopefully this fixes the llvm-gcc-powerpc-darwin9 buildbot. It really shouldn't
since missing memoperands should not affect correctness.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108540 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoReorder the contents of various getAnalysisUsage functions, eliminating
Dan Gohman [Fri, 16 Jul 2010 17:58:45 +0000 (17:58 +0000)]
Reorder the contents of various getAnalysisUsage functions, eliminating
a redundant loopsimplify run from the default -O2 sequence.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108539 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRevert r108369, sorting llvm.dbg.declare information by source position,
Dan Gohman [Fri, 16 Jul 2010 17:54:27 +0000 (17:54 +0000)]
Revert r108369, sorting llvm.dbg.declare information by source position,
since it doesn't work for front-ends which don't emit column information
(which includes llvm-gcc in its present configuration), and doesn't
work for clang for K&R style variables where the variables are declared
in a different order from the parameter list.

Instead, make a separate pass through the instructions to collect the
llvm.dbg.declare instructions in order. This ensures that the debug
information for variables is emitted in this order.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108538 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove the X86::FP_REG_KILL pseudo-instruction and the X86FloatingPointRegKill
Jakob Stoklund Olesen [Fri, 16 Jul 2010 17:41:44 +0000 (17:41 +0000)]
Remove the X86::FP_REG_KILL pseudo-instruction and the X86FloatingPointRegKill
pass that inserted it.

It is no longer necessary to limit the live ranges of FP registers to a single
basic block.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108536 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSearch for a free FP register instead of just assuming FP7 is not in use.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 17:41:40 +0000 (17:41 +0000)]
Search for a free FP register instead of just assuming FP7 is not in use.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108535 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove the rest of my instcombine changes. Back to the drawing board on this one.
Owen Anderson [Fri, 16 Jul 2010 16:39:00 +0000 (16:39 +0000)]
Remove the rest of my instcombine changes.  Back to the drawing board on this one.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108530 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAllow x87 FP registers to be alive globally in a function.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 16:38:12 +0000 (16:38 +0000)]
Allow x87 FP registers to be alive globally in a function.

FP_REG_KILL instructions are still inserted, but can be disabled by passing
-live-x87 to llc. The X87FPRegKillInserterPass is going to be removed shortly.

CFG edges are partioned into bundles where the x87 stack must be allocated
identically. Code is insertad at the end of each basic block that shuffles the
live FP registers to match the outgoing bundles expectations.

This fix is in preparation for some upcoming register allocator improvements
that may extend the live range of registers beyond a basic block, similar to
LICM. It also provides a nice runtime speedup if you are building with
-mfpmath=387.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108529 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove extraneous semicolons after member functions
Douglas Gregor [Fri, 16 Jul 2010 15:03:23 +0000 (15:03 +0000)]
Remove extraneous semicolons after member functions

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108525 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFeed the right output into FileCheck.
Benjamin Kramer [Fri, 16 Jul 2010 10:58:02 +0000 (10:58 +0000)]
Feed the right output into FileCheck.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108523 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoeliminate CallInst::ArgOffset
Gabor Greif [Fri, 16 Jul 2010 09:38:02 +0000 (09:38 +0000)]
eliminate CallInst::ArgOffset

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108522 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoGet rid of a bunch of duplicated ELF enum values.
Eli Friedman [Fri, 16 Jul 2010 07:53:29 +0000 (07:53 +0000)]
Get rid of a bunch of duplicated ELF enum values.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108520 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoA few more minor additions to ELF.h.
Eli Friedman [Fri, 16 Jul 2010 07:48:07 +0000 (07:48 +0000)]
A few more minor additions to ELF.h.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108519 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove bogus link.
Eric Christopher [Fri, 16 Jul 2010 06:33:36 +0000 (06:33 +0000)]
Remove bogus link.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108518 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoArrays and vectors with different numbers of elements are not equivalent.
Nick Lewycky [Fri, 16 Jul 2010 06:31:12 +0000 (06:31 +0000)]
Arrays and vectors with different numbers of elements are not equivalent.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108517 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove unnecessary conditional.
Eric Christopher [Fri, 16 Jul 2010 06:13:24 +0000 (06:13 +0000)]
Remove unnecessary conditional.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108516 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoLoopSimplify does not update domfrontier correctly.
Tobias Grosser [Fri, 16 Jul 2010 05:59:45 +0000 (05:59 +0000)]
LoopSimplify does not update domfrontier correctly.

This fixes PR7649.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108513 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd dump() to DominanceFrontier
Tobias Grosser [Fri, 16 Jul 2010 05:59:39 +0000 (05:59 +0000)]
Add dump() to DominanceFrontier

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108512 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 04:45:42 +0000 (04:45 +0000)]
Remove many calls to TII::isMoveInstr. Targets should be producing COPY anyway.

TII::isMoveInstr is going tobe completely removed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108507 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAdd forgotten test case.
Jakob Stoklund Olesen [Fri, 16 Jul 2010 04:45:35 +0000 (04:45 +0000)]
Add forgotten test case.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108506 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse the source-order scheduler instead of the "fast" scheduler at -O0,
Dan Gohman [Fri, 16 Jul 2010 02:01:19 +0000 (02:01 +0000)]
Use the source-order scheduler instead of the "fast" scheduler at -O0,
because it's more likely to keep debug line information in its original
order.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108496 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agobuild/Darwin: Add an LLVM_LTO_VERSION_OFFSET make variable to allow offsetting
Daniel Dunbar [Fri, 16 Jul 2010 01:41:38 +0000 (01:41 +0000)]
build/Darwin: Add an LLVM_LTO_VERSION_OFFSET make variable to allow offsetting
the libLTO library version from the actual build version.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108495 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoAlso revert 108422, it's causing some test failures.
Eric Christopher [Fri, 16 Jul 2010 01:36:12 +0000 (01:36 +0000)]
Also revert 108422, it's causing some test failures.

Working on testcases for Owen.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108494 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agobuild/Clang: Build and install libLTO as part of clang-only/install-clang targets.
Daniel Dunbar [Fri, 16 Jul 2010 01:29:50 +0000 (01:29 +0000)]
build/Clang: Build and install libLTO as part of clang-only/install-clang targets.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108493 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix this test.
Dan Gohman [Fri, 16 Jul 2010 01:28:45 +0000 (01:28 +0000)]
Fix this test.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108491 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoThe SelectionDAGBuilder's handling of debug info, on rare
Dale Johannesen [Fri, 16 Jul 2010 00:02:08 +0000 (00:02 +0000)]
The SelectionDAGBuilder's handling of debug info, on rare
occasions, caused code to be generated in a different order.
All cases I've seen involved float softening in the type
legalizer, and this could be perhaps be fixed there, but
it's better not to generate things differently in the first
place.  7797940 (6/29/2010..7/15/2010).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108484 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRevert. This isn't the correct way to go.
Bill Wendling [Thu, 15 Jul 2010 23:42:21 +0000 (23:42 +0000)]
Revert. This isn't the correct way to go.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108478 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix the order that SCEVExpander considers add operands in so that
Dan Gohman [Thu, 15 Jul 2010 23:38:13 +0000 (23:38 +0000)]
Fix the order that SCEVExpander considers add operands in so that
it doesn't miss an opportunity to form a GEP, regardless of the
relative loop depths of the operands. This fixes rdar://8197217.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108475 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoHandle code gen for the unreachable instruction if it's the only instruction in
Bill Wendling [Thu, 15 Jul 2010 23:32:40 +0000 (23:32 +0000)]
Handle code gen for the unreachable instruction if it's the only instruction in
the function. We'll just turn it into a "trap" instruction instead.

The problem with not handling this is that it might generate a prologue without
the equivalent epilogue to go with it:

$ cat t.ll
define void @foo() {
entry:
  unreachable
}
$ llc -o - t.ll -relocation-model=pic -disable-fp-elim -unwind-tables
        .section        __TEXT,__text,regular,pure_instructions
        .globl  _foo
        .align  4, 0x90
_foo:                                   ## @foo
Leh_func_begin0:
## BB#0:                                ## %entry
        pushq   %rbp
Ltmp0:
        movq    %rsp, %rbp
Ltmp1:
Leh_func_end0:
...

The unwind tables then have bad data in them causing all sorts of problems.

Fixes <rdar://problem/8096481>.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108473 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSplit -enable-finite-only-fp-math to two options:
Evan Cheng [Thu, 15 Jul 2010 22:07:12 +0000 (22:07 +0000)]
Split -enable-finite-only-fp-math to two options:
-enable-no-nans-fp-math and -enable-no-infs-fp-math. All of the current codegen fp math optimizations only care whether the fp arithmetics arguments and results can never be NaN.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108465 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agobuild/Darwin: Add a missing directory dependency.
Daniel Dunbar [Thu, 15 Jul 2010 21:51:52 +0000 (21:51 +0000)]
build/Darwin: Add a missing directory dependency.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108463 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoremove some unneeded overloads that were causing
Chris Lattner [Thu, 15 Jul 2010 21:24:02 +0000 (21:24 +0000)]
remove some unneeded overloads that were causing
ambiguity problems on some systems.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108462 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agofix the definitions of ConstTextCoalSection/ConstDataCoalSection
Chris Lattner [Thu, 15 Jul 2010 21:22:00 +0000 (21:22 +0000)]
fix the definitions of ConstTextCoalSection/ConstDataCoalSection
to keep "Text" in sync with the "pure instructions" section attribute.
Lack of this attribute was preventing the assembler from emitting
multibyte noops instructions for templates (and inlines, and other
coalesced stuff) and was causing the assembler to mismatch .o files.

This fixes rdar://8018335

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108461 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agofix indentation and 80 cols
Chris Lattner [Thu, 15 Jul 2010 21:19:31 +0000 (21:19 +0000)]
fix indentation and 80 cols

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108460 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRevert 108456. i.e. bring back r108444.
Devang Patel [Thu, 15 Jul 2010 20:57:09 +0000 (20:57 +0000)]
Revert 108456.  i.e. bring back r108444.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108458 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRevert 108444. It breaks a build.
Devang Patel [Thu, 15 Jul 2010 20:25:51 +0000 (20:25 +0000)]
Revert 108444. It breaks a build.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108456 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDon't merge uses when they are targetting fixup sites with
Dan Gohman [Thu, 15 Jul 2010 20:24:58 +0000 (20:24 +0000)]
Don't merge uses when they are targetting fixup sites with
different widths. In a use with a narrower fixup, formulae
may be wider than the fixup, in which case the high bits
aren't necessarily meaningful, so it isn't safe to reuse
them for uses with wider fixups.

This fixes PR7618, though the testcase is too large for a
reasonable regression test, since it heavily dependes on
hitting LSR's heuristics in a certain way.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108455 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agofix the encoding of MMX_MOVFR642Qrr, it starts with 0xF2 not 0xF3,
Chris Lattner [Thu, 15 Jul 2010 20:13:34 +0000 (20:13 +0000)]
fix the encoding of MMX_MOVFR642Qrr, it starts with 0xF2 not 0xF3,
this fixes rdar://8192860.  Unfortunately it can only be triggered
with llc because llvm-mc matches another (correctly encoded) version
of this, so no testcase.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108454 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse dbgs() instead of errs() in a DEBUG.
Dan Gohman [Thu, 15 Jul 2010 20:12:42 +0000 (20:12 +0000)]
Use dbgs() instead of errs() in a DEBUG.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108453 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
Bill Wendling [Thu, 15 Jul 2010 20:04:36 +0000 (20:04 +0000)]
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108452 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoTeach ScalarEvolution how to fold trunc(undef) and anyext(undef) to undef.
Dan Gohman [Thu, 15 Jul 2010 20:02:11 +0000 (20:02 +0000)]
Teach ScalarEvolution how to fold trunc(undef) and anyext(undef) to undef.
This helps LSR behave more consistently on bugpoint-reduced testcases.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108451 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
Bill Wendling [Thu, 15 Jul 2010 20:01:02 +0000 (20:01 +0000)]
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108450 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This time
Bill Wendling [Thu, 15 Jul 2010 19:58:14 +0000 (19:58 +0000)]
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This time
make sure to allocate enough space in the std::vector.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108449 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoReserve a goodly amount of room for the vectors.
Bill Wendling [Thu, 15 Jul 2010 19:41:20 +0000 (19:41 +0000)]
Reserve a goodly amount of room for the vectors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108448 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agobuild/Darwin: Add support for embedding version information in tool executables.
Daniel Dunbar [Thu, 15 Jul 2010 19:33:38 +0000 (19:33 +0000)]
build/Darwin: Add support for embedding version information in tool executables.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108444 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoFix crash reported in PR7653.
Devang Patel [Thu, 15 Jul 2010 18:45:27 +0000 (18:45 +0000)]
Fix crash reported in PR7653.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108441 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
Bill Wendling [Thu, 15 Jul 2010 18:43:09 +0000 (18:43 +0000)]
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108440 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoUse std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
Bill Wendling [Thu, 15 Jul 2010 18:40:50 +0000 (18:40 +0000)]
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108438 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoSpeculatively revert r108429 to fix the clang self-host.
Owen Anderson [Thu, 15 Jul 2010 18:18:57 +0000 (18:18 +0000)]
Speculatively revert r108429 to fix the clang self-host.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108436 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoPer Chris' suggestion, get rid of the select canonicalization and just add
Owen Anderson [Thu, 15 Jul 2010 17:24:23 +0000 (17:24 +0000)]
Per Chris' suggestion, get rid of the select canonicalization and just add
the corresponding or-icmp-and pattern.  This has the added benefit of doing
the matching earlier, and thus being less susceptible to being confused by
earlier transforms.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108429 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoRemove unneeded check, and correct style.
Owen Anderson [Thu, 15 Jul 2010 16:38:22 +0000 (16:38 +0000)]
Remove unneeded check, and correct style.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108427 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoWatch out for a constant offset cancelling out a base register, forming
Dan Gohman [Thu, 15 Jul 2010 15:14:45 +0000 (15:14 +0000)]
Watch out for a constant offset cancelling out a base register, forming
a zero. This situation arrises in Fortran code with induction variables
that start at 1 instead of 0. This fixes PR7651.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108424 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoReapply r108378, with bugfixes, testcase, and improved comment formatting.
Owen Anderson [Thu, 15 Jul 2010 15:00:23 +0000 (15:00 +0000)]
Reapply r108378, with bugfixes, testcase, and improved comment formatting.
This now passes LIT, nighty test, and llvm-gcc bootstrap on my machine.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108422 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agocache another dereferenced iterator
Gabor Greif [Thu, 15 Jul 2010 10:19:23 +0000 (10:19 +0000)]
cache another dereferenced iterator

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108421 91177308-0d34-0410-b5e6-96231b3b80d8

13 years ago80-col.
Eric Christopher [Thu, 15 Jul 2010 07:49:30 +0000 (07:49 +0000)]
80-col.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108420 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agorevert bill's patches in an attempt to fix the buildbot.
Chris Lattner [Thu, 15 Jul 2010 06:51:46 +0000 (06:51 +0000)]
revert bill's patches in an attempt to fix the buildbot.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108419 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoThis is a full sentence.
Nick Lewycky [Thu, 15 Jul 2010 06:51:22 +0000 (06:51 +0000)]
This is a full sentence.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108418 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoDisable aliases on all platforms.
Nick Lewycky [Thu, 15 Jul 2010 06:48:56 +0000 (06:48 +0000)]
Disable aliases on all platforms.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108417 91177308-0d34-0410-b5e6-96231b3b80d8

13 years agoCorrectly set rpath on Mac OS X for executable tools. Note that I am not certain...
Ted Kremenek [Thu, 15 Jul 2010 06:36:57 +0000 (06:36 +0000)]
Correctly set rpath on Mac OS X for executable tools.  Note that I am not certain this is the best fix; the code immediately above looks confused, as it first checks to see if we are NOT on Darwin and then checks the Darwin version number.  This fix allows c-index-test (in Clang) to run outside of running the regression test suite.  I would appreciate if someone reviewed this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108416 91177308-0d34-0410-b5e6-96231b3b80d8