Dan Gohman [Thu, 28 Jan 2010 02:43:22 +0000 (02:43 +0000)]
Make getAlignOf return an i64, for consistency with getSizeOf and
getOffsetOf, and remove the comment about assuming i8 is byte-aligned,
which is no longer applicable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94738
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Thu, 28 Jan 2010 02:15:55 +0000 (02:15 +0000)]
Remove SCEVAllocSizeExpr and SCEVFieldOffsetExpr, and in their place
use plain SCEVUnknowns with ConstantExpr::getSizeOf and
ConstantExpr::getOffsetOf constants. This eliminates a bunch of
special-case code.
Also add code for pattern-matching these expressions, for clients that
want to recognize them.
Move ScalarEvolution's logic for expanding array and vector sizeof
expressions into an element count times the element size, to expose
the multiplication to subsequent folding, into the regular constant
folder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94737
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:58:58 +0000 (01:58 +0000)]
add target hooks for emitting random gunk before and after the function body.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94732
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Thu, 28 Jan 2010 01:57:22 +0000 (01:57 +0000)]
Fix a bug introduced by r94490 where it created a X86ISD::CMP whose output type is different from its inputs.
This fixes PR6146.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94731
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:54:33 +0000 (01:54 +0000)]
switch blackfin to the default runOnMachineFunction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94729
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:50:22 +0000 (01:50 +0000)]
eliminate a now-useless class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94728
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:48:52 +0000 (01:48 +0000)]
Switch MSP430, SPU, Sparc, and SystemZ to use EmitFunctionBody().
Diffstat:
6 files changed, 30 insertions(+), 284 deletions(-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94727
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Grosbach [Thu, 28 Jan 2010 01:45:32 +0000 (01:45 +0000)]
Update of 94055 to track the IR level call site information via an intrinsic.
This allows code gen and the exception table writer to cooperate to make sure
landing pads are associated with the correct invoke locations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94726
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeffrey Yasskin [Thu, 28 Jan 2010 01:41:20 +0000 (01:41 +0000)]
Record the death of ModuleProvier and GhostLinkage in the release notes and
give upgrade instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94723
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:28:58 +0000 (01:28 +0000)]
Give AsmPrinter the most common expected implementation of
runOnMachineFunction, and switch PPC to use EmitFunctionBody.
The two ppc asmprinters now don't heave to define
runOnMachineFunction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94722
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeffrey Yasskin [Thu, 28 Jan 2010 01:14:43 +0000 (01:14 +0000)]
Truncate the release notes so they're ready to accumulate notes for the 2.7 release.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94720
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:10:34 +0000 (01:10 +0000)]
switch ARM to EmitFunctionBody().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94719
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:06:32 +0000 (01:06 +0000)]
emit a 0 byte instead of a noop if a function is empty on darwin.
"0" is nice and target independent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94718
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 01:02:27 +0000 (01:02 +0000)]
Remove the argument from EmitJumpTableInfo, because it doesn't need it.
Move the X86 implementation of function body emission up to
AsmPrinter::EmitFunctionBody, which works by calling the virtual
EmitInstruction method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94716
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 00:19:24 +0000 (00:19 +0000)]
Drop the argument to AsmPrinter::EmitConstantPool and make it virtual.
Overload it in the ARM backend to do nothing, since is does insane
constant pool emission.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94708
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 00:15:18 +0000 (00:15 +0000)]
don't emit constant pools twice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94706
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Thu, 28 Jan 2010 00:05:10 +0000 (00:05 +0000)]
rename printVisibility to EmitVisibility and make it private,
constify EmitLinkage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94705
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 23:58:11 +0000 (23:58 +0000)]
switch ARM to use EmitFunctionHeader.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94703
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 23:37:36 +0000 (23:37 +0000)]
eliminate the ARMFunctionInfo::Align member, using
MachineFunction::Alignment instead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94701
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 23:35:43 +0000 (23:35 +0000)]
add a helper function for bumping up the alignment of a machine function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94700
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 23:26:37 +0000 (23:26 +0000)]
switch blackfin to use EmitFunctionHeader. BlackfinAsmPrinter.cpp
is now less than 200 LOC!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94699
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 23:23:58 +0000 (23:23 +0000)]
switch mips to use the shared EmitFunctionHeader() function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94698
91177308-0d34-0410-b5e6-
96231b3b80d8
Sean Callanan [Wed, 27 Jan 2010 23:20:51 +0000 (23:20 +0000)]
Changed constants to an enum so as not to pollute the
global namespace needlessly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94697
91177308-0d34-0410-b5e6-
96231b3b80d8
Sean Callanan [Wed, 27 Jan 2010 23:03:46 +0000 (23:03 +0000)]
Added a header file defining the externally-visible C API
for the LLVM disassemblers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94696
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Wed, 27 Jan 2010 22:12:36 +0000 (22:12 +0000)]
If the only use of something is a DEBUG_VALUE, don't
let that stop it from being deleted, and change the
DEBUG_VALUE value to undef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94694
91177308-0d34-0410-b5e6-
96231b3b80d8
Dale Johannesen [Wed, 27 Jan 2010 22:11:16 +0000 (22:11 +0000)]
Treat MO_REG 0 location as undefined in DEBUG_VALUE,
per document.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94693
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Wed, 27 Jan 2010 22:06:46 +0000 (22:06 +0000)]
Add an svn:ignore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94692
91177308-0d34-0410-b5e6-
96231b3b80d8
Victor Hernandez [Wed, 27 Jan 2010 22:03:03 +0000 (22:03 +0000)]
Need to recurse for all operands of function-local metadata; and handle Instructions (which map to themselves)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94691
91177308-0d34-0410-b5e6-
96231b3b80d8
Bob Wilson [Wed, 27 Jan 2010 22:01:02 +0000 (22:01 +0000)]
Avoid creating redundant PHIs in SSAUpdater::GetValueInMiddleOfBlock.
This was already being done in SSAUpdater::GetValueAtEndOfBlock so I've
just changed SSAUpdater to check for existing PHIs in both places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94690
91177308-0d34-0410-b5e6-
96231b3b80d8
Ted Kremenek [Wed, 27 Jan 2010 20:44:12 +0000 (20:44 +0000)]
Update CMake build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94687
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeffrey Yasskin [Wed, 27 Jan 2010 20:34:15 +0000 (20:34 +0000)]
Kill ModuleProvider and ghost linkage by inverting the relationship between
Modules and ModuleProviders. Because the "ModuleProvider" simply materializes
GlobalValues now, and doesn't provide modules, it's renamed to
"GVMaterializer". Code that used to need a ModuleProvider to materialize
Functions can now materialize the Functions directly. Functions no longer use a
magic linkage to record that they're materializable; they simply ask the
GVMaterializer.
Because the C ABI must never change, we can't remove LLVMModuleProviderRef or
the functions that refer to it. Instead, because Module now exposes the same
functionality ModuleProvider used to, we store a Module* in any
LLVMModuleProviderRef and translate in the wrapper methods. The bindings to
other languages still use the ModuleProvider concept. It would probably be
worth some time to update them to follow the C++ more closely, but I don't
intend to do it.
Fixes http://llvm.org/PR5737 and http://llvm.org/PR5735.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94686
91177308-0d34-0410-b5e6-
96231b3b80d8
Benjamin Kramer [Wed, 27 Jan 2010 19:58:47 +0000 (19:58 +0000)]
Don't bother with sprintf, just pass the Twine through.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94684
91177308-0d34-0410-b5e6-
96231b3b80d8
Benjamin Kramer [Wed, 27 Jan 2010 19:46:52 +0000 (19:46 +0000)]
Use the less expensive getName function instead of getNameStr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94683
91177308-0d34-0410-b5e6-
96231b3b80d8
Chandler Carruth [Wed, 27 Jan 2010 10:36:15 +0000 (10:36 +0000)]
Quick fix to a test that is currently failing on every Linux build bot. No idea
if this is the "correct" fix, but it seems a strict improvement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94675
91177308-0d34-0410-b5e6-
96231b3b80d8
Chandler Carruth [Wed, 27 Jan 2010 10:27:10 +0000 (10:27 +0000)]
Silence GCC warnings with asserts turned off. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94673
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 27 Jan 2010 10:13:28 +0000 (10:13 +0000)]
Make SMDiagnostic::Print a const method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94672
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Wed, 27 Jan 2010 10:13:11 +0000 (10:13 +0000)]
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94671
91177308-0d34-0410-b5e6-
96231b3b80d8
Duncan Sands [Wed, 27 Jan 2010 10:08:08 +0000 (10:08 +0000)]
Revert commit 94666 (ddunbar) [Suppress clang warning about unused arguments].
It causes g++ to complain: unrecognized option '-Qunused-arguments'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94670
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 07:21:55 +0000 (07:21 +0000)]
add a new AsmPrinter::EmitFunctionEntryLabel virtual function,
which allows targets to override function entry label emission.
Use it to convert linux/ppc to use EmitFunctionHeader().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94667
91177308-0d34-0410-b5e6-
96231b3b80d8
Daniel Dunbar [Wed, 27 Jan 2010 07:10:10 +0000 (07:10 +0000)]
Suppress clang warning about unused arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94666
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 27 Jan 2010 06:25:16 +0000 (06:25 +0000)]
Perform trivial tail call optimization for callees with "C" ABI. These are done
even when -tailcallopt is not specified and it does not require changing ABI.
First case is the most trivial one. Perform tail call optimization when both
the caller and callee do not return values and when the callee does not take
any input arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94664
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 02:18:21 +0000 (02:18 +0000)]
merge two ifs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94650
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 02:12:20 +0000 (02:12 +0000)]
some cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94649
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 02:04:20 +0000 (02:04 +0000)]
no need to check for null
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94648
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 27 Jan 2010 01:44:40 +0000 (01:44 +0000)]
Remove a dead target hook.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94646
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 01:02:43 +0000 (01:02 +0000)]
ppc/linux isn't ready for this and it was an accident that it was included.
This should fix a bunch of linux buildbot failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94643
91177308-0d34-0410-b5e6-
96231b3b80d8
Victor Hernandez [Wed, 27 Jan 2010 00:44:36 +0000 (00:44 +0000)]
When converting dbg.declare to dbg.value, attach promoted store's debug metadata to dbg.value
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94634
91177308-0d34-0410-b5e6-
96231b3b80d8
Victor Hernandez [Wed, 27 Jan 2010 00:30:42 +0000 (00:30 +0000)]
Linker needs to do deep-copy of function-local metadata to update references to function arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94632
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 00:20:02 +0000 (00:20 +0000)]
use existing basic block numbers instead of recomputing
a new set of them.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94631
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Wed, 27 Jan 2010 00:17:20 +0000 (00:17 +0000)]
Switch MSP430, CellSPU, SystemZ, Darwin/PPC, Alpha, and Sparc to
EmitFunctionHeader:
7 files changed, 16 insertions(+), 210 deletions(-)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94630
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 27 Jan 2010 00:10:09 +0000 (00:10 +0000)]
Clarify what -tailcallopt option actually do.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94628
91177308-0d34-0410-b5e6-
96231b3b80d8
Jim Grosbach [Wed, 27 Jan 2010 00:07:20 +0000 (00:07 +0000)]
Adjust setjmp instruction sequence to not need 32-bit alignment padding
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94627
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 27 Jan 2010 00:07:07 +0000 (00:07 +0000)]
Eliminate target hook IsEligibleForTailCallOptimization.
Target independent isel should always pass along the "tail call" property. Change
target hook LowerCall's parameter "isTailCall" into a refernce. If the target
decides it's impossible to honor the tail call request, it should set isTailCall
to false to make target independent isel happy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94626
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Wed, 27 Jan 2010 00:00:57 +0000 (00:00 +0000)]
Restore to pre-94570 state.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94625
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:53:39 +0000 (23:53 +0000)]
mcize label emission for functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94624
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:51:52 +0000 (23:51 +0000)]
use EmitLinkage for functions as well as globals. One output
change is that we now use ".linkonce discard" for global variables
instead of ".linkonce samesize". These should be the same, just less
strict. If anyone is interested in mcizing MCSection for COFF targets,
this should be easy to fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94623
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:47:12 +0000 (23:47 +0000)]
pull linkage emission code out to a new EmitLinkage function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94621
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:41:48 +0000 (23:41 +0000)]
rearrange some directives, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94620
91177308-0d34-0410-b5e6-
96231b3b80d8
Jeffrey Yasskin [Tue, 26 Jan 2010 23:30:46 +0000 (23:30 +0000)]
Roll r94484 (avoiding RTTI problems in tests) forward again in a way that isn't
broken by setting CXXFLAGS on the command line.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94619
91177308-0d34-0410-b5e6-
96231b3b80d8
Victor Hernandez [Tue, 26 Jan 2010 23:29:09 +0000 (23:29 +0000)]
Avoid extra calls to MD->getNumOperands()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94618
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 26 Jan 2010 23:28:40 +0000 (23:28 +0000)]
Ignore 'forced' tailcall opt in fastisel mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94617
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:26:29 +0000 (23:26 +0000)]
remove a noop function.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94616
91177308-0d34-0410-b5e6-
96231b3b80d8
Jakob Stoklund Olesen [Tue, 26 Jan 2010 23:21:56 +0000 (23:21 +0000)]
Fix inline cost predictions with SCIENCE.
After running a batch of measurements, it is clear that the inliner metrics
need some adjustments:
Own argument bonus: 20 -> 5
Outgoing argument penalty: 0 -> 5
Alloca bonus: 10 -> 5
Constant instr bonus: 7 -> 5
Dead successor bonus: 40 -> 5*(avg instrs/block)
The new cost metrics are generaly 25 points higher than before, so we may need
to move thresholds.
With this change, InlineConstants::CallPenalty becomes a political correction:
if (!isa<IntrinsicInst>(II) && !callIsSmall(CS.getCalledFunction()))
NumInsts += InlineConstants::CallPenalty + CS.arg_size();
The code size is accurately modelled by CS.arg_size(). CallPenalty is added
because calls tend to take a long time, so it may not be worth it to inline a
function with lots of calls.
All of the political corrections are in the InlineConstants namespace:
IndirectCallBonus, CallPenalty, LastCallToStaticBonus, ColdccPenalty,
NoreturnPenalty.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94615
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:18:44 +0000 (23:18 +0000)]
now that enough stuff is constified, move function header printing
logic up from X86 into the common code. The other targets will
hopefully start using this soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94614
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:18:02 +0000 (23:18 +0000)]
constify a bunch of dwarf stuff now that the registerinfo method
is constified.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94613
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 23:15:09 +0000 (23:15 +0000)]
constify a method argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94612
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 26 Jan 2010 23:13:04 +0000 (23:13 +0000)]
Allow some automatic tailcall optimization without changing ABI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94611
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 26 Jan 2010 23:07:57 +0000 (23:07 +0000)]
Delete blank lines that bug me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94610
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 22:06:58 +0000 (22:06 +0000)]
call emitconstantpool and emitjumptable like other targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94601
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 26 Jan 2010 22:03:41 +0000 (22:03 +0000)]
Before existing NamedMDNode entry in the symbol table, remove any existing entry with the same name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94600
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 21:53:08 +0000 (21:53 +0000)]
emit jump table an alias ".set" directives through MCStreamer as
assignments.
.set x, a-b
is the same as:
x = a-b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94596
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 21:51:43 +0000 (21:51 +0000)]
fix CastInst::castIsValid to reject aggregate types, fixing PR6153:
llvm-as: t.ll:1:25: error: invalid cast opcode for cast from '[4 x i8]' to '[1 x i32]'
@x = constant [1 x i32] bitcast ([4 x i8] c"abcd" to [1 x i32])
^
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94595
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 26 Jan 2010 21:42:58 +0000 (21:42 +0000)]
Remve unnecessary include.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94594
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 26 Jan 2010 21:39:14 +0000 (21:39 +0000)]
Use AssertingVH, just to be paranoid.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94593
91177308-0d34-0410-b5e6-
96231b3b80d8
Jakob Stoklund Olesen [Tue, 26 Jan 2010 21:31:35 +0000 (21:31 +0000)]
Revert test polarity to match comment and desired outcome. Remove undeserved bonus.
A GEP with all constant indices is already considered free by
analyzeBasicBlock(), so don't give it an extra bonus in
CountCodeReductionForAlloca().
This patch should remove a small positive bias toward inlining functions with
variable-index GEPs, and remove a smaller negative bias from functions with
all-constant index GEPs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94591
91177308-0d34-0410-b5e6-
96231b3b80d8
Jakob Stoklund Olesen [Tue, 26 Jan 2010 21:31:30 +0000 (21:31 +0000)]
Remove dead code.
Functions containing indirectbr are marked NeverInline by analyzeBasicBlock(),
so there is no point in giving indirectbr special treatment in
CountCodeReductionForConstant. It is never called.
No functional change intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94590
91177308-0d34-0410-b5e6-
96231b3b80d8
Jakob Stoklund Olesen [Tue, 26 Jan 2010 21:31:24 +0000 (21:31 +0000)]
Skip calculation of ArgumentWeights if it will never be used.
Save a few bytes by allocating the correct size vector.
No functional change intended.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94589
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 26 Jan 2010 21:16:06 +0000 (21:16 +0000)]
Emit DW_AT_containing_type attribute for a class if containing type is known.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94587
91177308-0d34-0410-b5e6-
96231b3b80d8
Devang Patel [Tue, 26 Jan 2010 21:14:59 +0000 (21:14 +0000)]
Add extra element to composite type. This new element will be used to record c++ class that holds current class's vtable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94586
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 20:40:54 +0000 (20:40 +0000)]
Eliminate SetDirective, and replace it with HasSetDirective.
Default HasSetDirective to true, since most targets have it.
The targets that claim to not have it probably do, or it is
spelled differently. These include Blackfin, Mips, Alpha, and
PIC16. All of these except pic16 are normal ELF targets, so
they almost certainly have it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94585
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 26 Jan 2010 20:36:21 +0000 (20:36 +0000)]
Delete dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94583
91177308-0d34-0410-b5e6-
96231b3b80d8
Rafael Espindola [Tue, 26 Jan 2010 20:21:43 +0000 (20:21 +0000)]
Emit .comm alignment in bytes but .align in powers of 2 for ARM ELF.
Original patch by Sandeep Patel and updated by me.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94582
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 20:20:43 +0000 (20:20 +0000)]
eliminate MCAsmInfo::NeedsSet: we now just use .set on any platform
that has it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94581
91177308-0d34-0410-b5e6-
96231b3b80d8
Chris Lattner [Tue, 26 Jan 2010 20:17:34 +0000 (20:17 +0000)]
don't set to the default value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94580
91177308-0d34-0410-b5e6-
96231b3b80d8
Junjie Gu [Tue, 26 Jan 2010 19:45:17 +0000 (19:45 +0000)]
test commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94578
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 19:25:59 +0000 (19:25 +0000)]
-disable-output is no longer needed with -analyze.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94574
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 19:19:05 +0000 (19:19 +0000)]
Make the unsigned-range code more consistent with the signed-range code,
and clean up some loose ends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94572
91177308-0d34-0410-b5e6-
96231b3b80d8
Evan Cheng [Tue, 26 Jan 2010 19:04:47 +0000 (19:04 +0000)]
Code refactoring, no functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94570
91177308-0d34-0410-b5e6-
96231b3b80d8
Bob Wilson [Tue, 26 Jan 2010 19:04:37 +0000 (19:04 +0000)]
Revert 94484. Re-disable unittests that need RTTI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94569
91177308-0d34-0410-b5e6-
96231b3b80d8
Victor Hernandez [Tue, 26 Jan 2010 18:57:53 +0000 (18:57 +0000)]
Switch AllocaDbgDeclares to SmallVector and don't leak DIFactory
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94567
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 18:32:54 +0000 (18:32 +0000)]
Fix a typo in a comment that Duncan noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94562
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 18:30:24 +0000 (18:30 +0000)]
Remove SIL, DIL, and BPL from the GR8_NOREX allocation order also.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94560
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 18:14:22 +0000 (18:14 +0000)]
SIL, DIL, BPL, and SPL require a REX prefix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94558
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 16:46:18 +0000 (16:46 +0000)]
Rename ItCount to BECount, since it holds a backedge-taken count rather
than an iteration count.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94549
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 16:04:20 +0000 (16:04 +0000)]
Fix ICmpInst::makeConstantRange to use ConstantRange's API properly
in the case of empty and full ranges.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94548
91177308-0d34-0410-b5e6-
96231b3b80d8
Dan Gohman [Tue, 26 Jan 2010 15:56:18 +0000 (15:56 +0000)]
Fix a typo that several people pointed out. Also, address the case of
wrapping that Duncan pointed out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94547
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Tue, 26 Jan 2010 14:55:44 +0000 (14:55 +0000)]
Support -arch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94546
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Tue, 26 Jan 2010 14:55:30 +0000 (14:55 +0000)]
Support for -iquote.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94545
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Tue, 26 Jan 2010 14:55:16 +0000 (14:55 +0000)]
Better error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94544
91177308-0d34-0410-b5e6-
96231b3b80d8
Mikhail Glushenkov [Tue, 26 Jan 2010 14:55:04 +0000 (14:55 +0000)]
Escape double quotes in 'help'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94543
91177308-0d34-0410-b5e6-
96231b3b80d8