Dan Gohman [Thu, 29 Jan 2009 19:49:27 +0000 (19:49 +0000)]
Make a few things const, fix some comments, and simplify
some assertions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63328
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 29 Jan 2009 18:53:28 +0000 (18:53 +0000)]
Fix windows build, patch by Marius Wachtler!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63325
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 18:37:30 +0000 (18:37 +0000)]
Local register allocator shouldn't assume only the entry and landing pad basic blocks have live-ins.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63323
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Thu, 29 Jan 2009 16:18:12 +0000 (16:18 +0000)]
Fix two typos that Duncan spotted in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63312
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Thu, 29 Jan 2009 16:10:46 +0000 (16:10 +0000)]
In the case of an extractelement on an insertelement value,
the element indices may be equal if either one is not a
constant.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63311
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 09:31:54 +0000 (09:31 +0000)]
Add a always_inline test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63304
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Thu, 29 Jan 2009 09:01:55 +0000 (09:01 +0000)]
Revert r63273. This was already implemented by Dale. There's no need for my
change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63301
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 08:59:46 +0000 (08:59 +0000)]
Add a test case for Chris lvalue alignment fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63300
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Thu, 29 Jan 2009 08:22:06 +0000 (08:22 +0000)]
Fix an issue where restores could be inserted after a terminator instruction,
and an iterator invalidation issue.
FreeBench/pifft no longer miscompiles with these fixes!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63293
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Thu, 29 Jan 2009 05:41:02 +0000 (05:41 +0000)]
Comments are good. :-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63276
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Thu, 29 Jan 2009 05:28:55 +0000 (05:28 +0000)]
Add support for aggressive load-use-store folding. This takes care of the
vast majority of code size regressions introduced by pre-alloc-splitting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63274
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Thu, 29 Jan 2009 05:27:31 +0000 (05:27 +0000)]
- Add DebugLoc to getTargetNode().
- Modify TableGen to add the DebugLoc when calling getTargetNode.
(The light-weight wrappers are only temporary. The non-DebugLoc version will be
removed once the whole debug info stuff is finished with.)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63273
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 29 Jan 2009 04:43:42 +0000 (04:43 +0000)]
Fix PR3424, a static constructor ordering issue. Patch by Robert Schuster!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63269
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 02:20:59 +0000 (02:20 +0000)]
Exit with nice warnings when register allocator run out of registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63267
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Thu, 29 Jan 2009 01:59:02 +0000 (01:59 +0000)]
Make x86's BT instruction matching more thorough, and add some
dagcombines that help it match in several more cases. Add
several more cases to test/CodeGen/X86/bt.ll. This doesn't
yet include matching for BT with an immediate operand, it
just covers more register+register cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63266
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Thu, 29 Jan 2009 01:37:18 +0000 (01:37 +0000)]
Move the code that starts printing the Select_* functions
after the code that sorts the patterns. This doesn't
affect the output, but it makes the code a little easier
to follow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63265
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 01:13:00 +0000 (01:13 +0000)]
A slight compile time optimization. If the caller knows there isn't a free register getReg() should not call getFreeReg().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63263
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Thu, 29 Jan 2009 00:47:48 +0000 (00:47 +0000)]
Add DebugLoc-sensitive versions of many node creation
functions. Currently omitted: memcpy, memmove, memset.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63259
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 29 Jan 2009 00:06:09 +0000 (00:06 +0000)]
Fix comment about removeRange.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63255
91177308-0d34-0410-b5e6-
96231b3b80d8
Mon P Wang [Wed, 28 Jan 2009 23:11:14 +0000 (23:11 +0000)]
Fixed lowering of v816 shuffles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63252
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Wed, 28 Jan 2009 22:20:56 +0000 (22:20 +0000)]
Make test platform agnostic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63247
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Wed, 28 Jan 2009 22:17:52 +0000 (22:17 +0000)]
Add DebugLoc to the getNode() methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63245
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 22:14:58 +0000 (22:14 +0000)]
Give this test an explicit target, to make it host-independent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63244
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 21:36:46 +0000 (21:36 +0000)]
SDOperand has been renamed to SDValue. SDNode::Val is now
accessed via SDNode::getNode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63240
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 21:34:36 +0000 (21:34 +0000)]
Add more comments describing SDNode operator codes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63239
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Wed, 28 Jan 2009 21:18:29 +0000 (21:18 +0000)]
Add DebugLoc-aware constructors for SDNode derived
classes (those that reasonably have a DebugLoc
associated with them).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63236
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 21:13:08 +0000 (21:13 +0000)]
Add some comments on ISD::NodeType.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63234
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Wed, 28 Jan 2009 21:08:20 +0000 (21:08 +0000)]
Do not forget to derived type while constructing an array type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63233
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 28 Jan 2009 20:16:43 +0000 (20:16 +0000)]
Fix some issues with volatility, move "CanConvertToScalar" check
after the others.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63227
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 28 Jan 2009 19:29:30 +0000 (19:29 +0000)]
strengthen this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63222
91177308-0d34-0410-b5e6-
96231b3b80d8
Mon P Wang [Wed, 28 Jan 2009 18:53:39 +0000 (18:53 +0000)]
Fixed extract element when the result needs to be promoted and the input widened.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63217
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 18:03:09 +0000 (18:03 +0000)]
Delete unnecessary elses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63214
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 28 Jan 2009 17:49:03 +0000 (17:49 +0000)]
Enable PACKAGE_VERSION in cmake builds, this unbreaks the clang build with cmake.
Patch by Piotr Rak!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63213
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 17:46:25 +0000 (17:46 +0000)]
Make isOperationLegal do what its name suggests, and introduce a
new isOperationLegalOrCustom, which does what isOperationLegal
previously did.
Update a bunch of callers to use isOperationLegalOrCustom
instead of isOperationLegal. In some case it wasn't obvious
which behavior is desired; when in doubt I changed then to
isOperationLegalOrCustom as that preserves their previous
behavior.
This is for the second half of PR3376.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63212
91177308-0d34-0410-b5e6-
96231b3b80d8
Duncan Sands [Wed, 28 Jan 2009 14:42:54 +0000 (14:42 +0000)]
Formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63199
91177308-0d34-0410-b5e6-
96231b3b80d8
Duncan Sands [Wed, 28 Jan 2009 13:14:17 +0000 (13:14 +0000)]
Rename getAnalysisToUpdate to getAnalysisIfAvailable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63198
91177308-0d34-0410-b5e6-
96231b3b80d8
Duncan Sands [Wed, 28 Jan 2009 11:33:59 +0000 (11:33 +0000)]
Fix PR3415 (infinite loop in EscapeAnalysis) by
deleting the escape analysis pass.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63197
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 28 Jan 2009 08:35:02 +0000 (08:35 +0000)]
The memory alignment requirement on some of the mov{h|l}p{d|s} patterns are 16-byte. That is overly strict. These instructions read / write f64 memory locations without alignment requirement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63195
91177308-0d34-0410-b5e6-
96231b3b80d8
Mon P Wang [Wed, 28 Jan 2009 08:13:56 +0000 (08:13 +0000)]
Added sse test patterns for r62979 and r63193.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63194
91177308-0d34-0410-b5e6-
96231b3b80d8
Mon P Wang [Wed, 28 Jan 2009 08:12:05 +0000 (08:12 +0000)]
Add shuffle splat pattern for x86 sse shifts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63193
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 28 Jan 2009 03:47:58 +0000 (03:47 +0000)]
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63174
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 28 Jan 2009 03:47:38 +0000 (03:47 +0000)]
Update the generated docs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63173
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 28 Jan 2009 03:47:20 +0000 (03:47 +0000)]
Add three new option properties.
Adds new option properties 'multi_val', 'one_or_more' and 'zero_or_one'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63172
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 28 Jan 2009 03:46:22 +0000 (03:46 +0000)]
Clarify comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63171
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 03:10:52 +0000 (03:10 +0000)]
Use ValueType::bitsLT to simplify some code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63170
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 28 Jan 2009 02:58:31 +0000 (02:58 +0000)]
Use ZERO_EXTEND instead of ANY_EXTEND when promoting
shift amounts, to avoid implicitly assuming that
target architectures will ignore the high bits.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63169
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Wed, 28 Jan 2009 01:19:52 +0000 (01:19 +0000)]
Comment fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63164
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 28 Jan 2009 00:53:34 +0000 (00:53 +0000)]
Suppress a compile time warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63161
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Tue, 27 Jan 2009 23:32:10 +0000 (23:32 +0000)]
Embalm my ideas of how things should work. Not that
anyone will pay attention.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63155
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 27 Jan 2009 23:22:55 +0000 (23:22 +0000)]
Add type DIE into appropriate context DIE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63154
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Tue, 27 Jan 2009 23:20:29 +0000 (23:20 +0000)]
Add a DebugLoc field and some simple accessors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63152
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Tue, 27 Jan 2009 23:19:41 +0000 (23:19 +0000)]
Reorder args, constify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63151
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Tue, 27 Jan 2009 23:00:53 +0000 (23:00 +0000)]
Add testcase for r63142.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63149
91177308-0d34-0410-b5e6-
96231b3b80d8
Anton Korobeynikov [Tue, 27 Jan 2009 22:29:24 +0000 (22:29 +0000)]
Treat [1 x i8] zeroinitializer as a C string, placing such stuff into
mergeable string section. I don't see any bad impact of such decision
(rather then placing it into mergeable const section, as it was before),
but at least Darwin linker won't complain anymore.
The problem in LLVM is that we don't have special type for string constants
(like gcc does). Even more, we have two separate types: ConstatArray for non-null
strings and ConstantAggregateZero for null stuff.... It's a bit weird :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63142
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 22:12:23 +0000 (22:12 +0000)]
Use .empty() instead of comparing .size() with 0.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63139
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Tue, 27 Jan 2009 22:09:11 +0000 (22:09 +0000)]
Update to latest spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63138
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Tue, 27 Jan 2009 21:41:04 +0000 (21:41 +0000)]
Add DebugLoc field and simple accessors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63136
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 27 Jan 2009 21:15:07 +0000 (21:15 +0000)]
Refine DebugLoc per review comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63132
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 20:39:34 +0000 (20:39 +0000)]
Add an assertion to the form of SelectionDAG::getConstant that takes
a uint64_t to verify that the value is in range for the given type,
to help catch accidental overflow. Fix a few places that relied on
getConstant implicitly truncating the value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63128
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 19:25:38 +0000 (19:25 +0000)]
Reformat the allocation-order arrays to a more conventional style.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63121
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 19:23:22 +0000 (19:23 +0000)]
Delete redundant return statements.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63120
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 19:19:28 +0000 (19:19 +0000)]
Respect the DisableRedZone flag on PowerPC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63119
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 19:04:30 +0000 (19:04 +0000)]
Simplify findNonImmUse; return the result using the return value
instead of via a by-reference argument. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63118
91177308-0d34-0410-b5e6-
96231b3b80d8
Torok Edwin [Tue, 27 Jan 2009 18:06:03 +0000 (18:06 +0000)]
APInt's countLeadingOnes() was broken for negative i128 values,
causing assertion failures in getSExtValue().
Fix it by making highWordBits actually contain what its name says,
and add some more unit-tests for APInt.
This fixes PR3419.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63107
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 17:28:23 +0000 (17:28 +0000)]
Make some comments doxygen-friendly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63104
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Tue, 27 Jan 2009 05:01:15 +0000 (05:01 +0000)]
Make the pre-split-limit option more useful by using a per-function counter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63091
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 27 Jan 2009 03:30:42 +0000 (03:30 +0000)]
Implement multiple with overflow by 2 with an add instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63090
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 27 Jan 2009 02:59:39 +0000 (02:59 +0000)]
Forgot this test case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63089
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 02:37:43 +0000 (02:37 +0000)]
Eliminate unnecessary operands-list traversals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63088
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 00:59:55 +0000 (00:59 +0000)]
Add a FrontendC testcase for the x86-64 Red Zone feature,
to help verify that the feature may be disabled through
the -mno-red-zone option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63079
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 00:58:47 +0000 (00:58 +0000)]
Enable the red zone on x86-64 by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63078
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 27 Jan 2009 00:45:04 +0000 (00:45 +0000)]
Assorted debug info fixes.
- DW_AT_bit_size is only suitable for bitfields.
- Encode source location info for derived types.
- Source location and type size info is not useful for subroutine_type (info is included in respective DISubprogram) and array_type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63077
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 00:40:27 +0000 (00:40 +0000)]
Add a regression test for x86-64 red zone usage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63075
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 00:40:06 +0000 (00:40 +0000)]
Fix the Red Zone calculation for functions with frame pointers.
Don't use the Red Zone when dynamic stack realignment is needed.
This could be implemented, but most x86-64 ABIs don't require
dynamic stack realignment so it isn't urgent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63074
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 27 Jan 2009 00:37:09 +0000 (00:37 +0000)]
Add an svn:ignore property.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63073
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 23:47:30 +0000 (23:47 +0000)]
No need to keep size of DebugLocations vector separately.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63070
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Mon, 26 Jan 2009 23:22:19 +0000 (23:22 +0000)]
Testcase for
6522054.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63067
91177308-0d34-0410-b5e6-
96231b3b80d8
Scott Michel [Mon, 26 Jan 2009 22:33:37 +0000 (22:33 +0000)]
CellSPU:
- Update DWARF debugging support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63059
91177308-0d34-0410-b5e6-
96231b3b80d8
Scott Michel [Mon, 26 Jan 2009 22:32:51 +0000 (22:32 +0000)]
Make the Dwarf macro information section optional; CellSPU's assembler
doesn't support it. The default is set to 'true', so this should not
impact any other target backends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63058
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Mon, 26 Jan 2009 22:22:31 +0000 (22:22 +0000)]
Implement Red Zone utilization on x86-64. This is currently
disabled by default; I'll enable it when I hook it up with
the llvm-gcc flag which controls it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63056
91177308-0d34-0410-b5e6-
96231b3b80d8
Steve Naroff [Mon, 26 Jan 2009 22:03:42 +0000 (22:03 +0000)]
More updates to VC proj...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63050
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Mon, 26 Jan 2009 21:57:31 +0000 (21:57 +0000)]
Reapply r63025 and r63026, with fixes for the failing testcases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63049
91177308-0d34-0410-b5e6-
96231b3b80d8
Duncan Sands [Mon, 26 Jan 2009 21:54:18 +0000 (21:54 +0000)]
Fix PR3393, which amounts to a bug in the expensive
checking logic. Rather than make the checking more
complicated, I've tweaked some logic to make things
conform to how the checking thought things ought to
be, since this results in a simpler "mental model".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63048
91177308-0d34-0410-b5e6-
96231b3b80d8
Ted Kremenek [Mon, 26 Jan 2009 21:42:04 +0000 (21:42 +0000)]
Add method raw_fd_ostream::seek() for random access within a file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63044
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Mon, 26 Jan 2009 21:36:31 +0000 (21:36 +0000)]
At Nick Lewycky's request, rename this test with a more informative name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63042
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Mon, 26 Jan 2009 21:30:17 +0000 (21:30 +0000)]
Also revert r63206
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63041
91177308-0d34-0410-b5e6-
96231b3b80d8
Bill Wendling [Mon, 26 Jan 2009 21:27:03 +0000 (21:27 +0000)]
Temporarily revert r63025 until the testsuite failures can be fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63040
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Mon, 26 Jan 2009 20:27:11 +0000 (20:27 +0000)]
Fix the name of an argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63037
91177308-0d34-0410-b5e6-
96231b3b80d8
Anton Korobeynikov [Mon, 26 Jan 2009 19:26:01 +0000 (19:26 +0000)]
During bittest switch lowering emit shift in the test block, which should (theoretically)
allow us to generate more efficient code. We don't do this now though :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63027
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Mon, 26 Jan 2009 19:18:06 +0000 (19:18 +0000)]
Get rid of a bunch of dead code now that interval reconstruction is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63026
91177308-0d34-0410-b5e6-
96231b3b80d8
Owen Anderson [Mon, 26 Jan 2009 19:12:06 +0000 (19:12 +0000)]
Fix an issue where LiveIntervals was trying to be smart about removing kill
markers, and ended up foiling the interval reconstruction.
This allows us to turn on reconstruction in the pre alloc splitter, which
fixes a number of miscompilations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63025
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 18:43:34 +0000 (18:43 +0000)]
Enhance logic in X86DAGToDAGISel::PreprocessForRMW which move load inside callseq_start to allow it to be folded into a call. It was not considering the cases where a token factor is between the load and the callseq_start.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63022
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 18:33:51 +0000 (18:33 +0000)]
Silence a bogus compiler warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63021
91177308-0d34-0410-b5e6-
96231b3b80d8
Steve Naroff [Mon, 26 Jan 2009 18:08:55 +0000 (18:08 +0000)]
Update VS project files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63017
91177308-0d34-0410-b5e6-
96231b3b80d8
Roman Levenstein [Mon, 26 Jan 2009 11:07:20 +0000 (11:07 +0000)]
Fix a bug in BitVector.h. All assignment operations (except the usual
assignment operator) were returning a copy of the bit vector, instead of a
reference! This old semantics probably did not meet the expectations.
With this patch, chained assignments happen to the right object.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63012
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 07:53:42 +0000 (07:53 +0000)]
Actually source file has already been uniquified into an id during isel. Eliminate the StringMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63009
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 07:41:49 +0000 (07:41 +0000)]
Add data structure to define and track debug location during codegen.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63008
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 07:40:13 +0000 (07:40 +0000)]
Looks like comments were chopped off.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63007
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Mon, 26 Jan 2009 07:31:20 +0000 (07:31 +0000)]
LLVM_SUPPORT_DEBUGINFO_H -> LLVM_ANALYSIS_DEBUGINFO_H since DebugInfo.h is under Analysis.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63005
91177308-0d34-0410-b5e6-
96231b3b80d8
Mon P Wang [Mon, 26 Jan 2009 04:39:00 +0000 (04:39 +0000)]
Fixed optimization of combining two shuffles where the first shuffle inputs
has a different number of elements than the output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62998
91177308-0d34-0410-b5e6-
96231b3b80d8