oota-llvm.git
12 years agoImprove TargetPassConfig. No intended functionality.
Andrew Trick [Thu, 9 Feb 2012 00:40:55 +0000 (00:40 +0000)]
Improve TargetPassConfig. No intended functionality.

Split CodeGen into stages.
Distinguish between optimization and correctness.

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

12 years agocomment
Andrew Trick [Thu, 9 Feb 2012 00:40:52 +0000 (00:40 +0000)]
comment

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

12 years agoRemove static initializer from DataStream.cpp
David Blaikie [Thu, 9 Feb 2012 00:29:19 +0000 (00:29 +0000)]
Remove static initializer from DataStream.cpp

If someone would prefer a clear name for the 'success' error_value we could
come up with one - potentially just a 'named constructor' style
'error_value::success()' to make this expression more self-documenting. If
I see this come up in other cases I'll certainly consider it.

One step along the way to resolving PR11944.

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

12 years agoErase dead copies that are clobbered by a call.
Jakob Stoklund Olesen [Thu, 9 Feb 2012 00:19:08 +0000 (00:19 +0000)]
Erase dead copies that are clobbered by a call.

This does make a difference, at least when using RABasic.

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

12 years agoHandle register masks when searching for EFLAGS clobbers.
Jakob Stoklund Olesen [Thu, 9 Feb 2012 00:17:22 +0000 (00:17 +0000)]
Handle register masks when searching for EFLAGS clobbers.

Calls clobber the flags, but when using register masks there is no
EFLAGS<imp-def> operand.

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

12 years agoNever delete instructions that define reserved registers.
Jakob Stoklund Olesen [Thu, 9 Feb 2012 00:15:39 +0000 (00:15 +0000)]
Never delete instructions that define reserved registers.

I think this was already the intention, but DeadMachineInstructionElim
was accidentally tracking the liveness of reserved registers. Now,
instructions with reserved defs are never deleted.

This prevents the call stack adjustment instructions from getting
deleted when enabling register masks.

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

12 years agoHandle register masks in MachineCopyPropagation.
Jakob Stoklund Olesen [Wed, 8 Feb 2012 22:37:35 +0000 (22:37 +0000)]
Handle register masks in MachineCopyPropagation.

For simplicity, treat calls with register masks as basic block
boundaries.  This means we can't copy propagate callee-saved registers
across calls, but I don't think that is a big deal.

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

12 years agoCommit Andy Zhang's test for the lea patch.
Evan Cheng [Wed, 8 Feb 2012 22:33:17 +0000 (22:33 +0000)]
Commit Andy Zhang's test for the lea patch.

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

12 years agofix broken link
Chris Lattner [Wed, 8 Feb 2012 22:20:00 +0000 (22:20 +0000)]
fix broken link

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

12 years ago[asan] unpoison the stack before every noreturn call. Fixes asan issue 37. llvm part
Kostya Serebryany [Wed, 8 Feb 2012 21:36:17 +0000 (21:36 +0000)]
[asan] unpoison the stack before every noreturn call. Fixes asan issue 37. llvm part

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

12 years agoCodegen pass definition cleanup. No functionality.
Andrew Trick [Wed, 8 Feb 2012 21:23:13 +0000 (21:23 +0000)]
Codegen pass definition cleanup. No functionality.

Moving toward a uniform style of pass definition to allow easier target configuration.
Globally declare Pass ID.
Globally declare pass initializer.
Use INITIALIZE_PASS consistently.
Add a call to the initializer from CodeGen.cpp.
Remove redundant "createPass" functions and "getPassName" methods.

While cleaning up declarations, cleaned up comments (sorry for large diff).

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

12 years agoMove pass configuration out of pass constructors: MachineLICM.
Andrew Trick [Wed, 8 Feb 2012 21:23:03 +0000 (21:23 +0000)]
Move pass configuration out of pass constructors: MachineLICM.

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

12 years agowhitespace
Andrew Trick [Wed, 8 Feb 2012 21:23:00 +0000 (21:23 +0000)]
whitespace

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

12 years agoMove pass configuration out of pass constructors: StackSlotColoring.
Andrew Trick [Wed, 8 Feb 2012 21:22:57 +0000 (21:22 +0000)]
Move pass configuration out of pass constructors: StackSlotColoring.

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

12 years agoMove pass configuration out of pass constructors: PostRAScheduler.
Andrew Trick [Wed, 8 Feb 2012 21:22:53 +0000 (21:22 +0000)]
Move pass configuration out of pass constructors: PostRAScheduler.

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

12 years agoMove pass configuration out of pass constructors: BranchFolderPass
Andrew Trick [Wed, 8 Feb 2012 21:22:48 +0000 (21:22 +0000)]
Move pass configuration out of pass constructors: BranchFolderPass

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

12 years agowhitespace
Andrew Trick [Wed, 8 Feb 2012 21:22:43 +0000 (21:22 +0000)]
whitespace

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

12 years agoAdded TargetPassConfig::setOpt
Andrew Trick [Wed, 8 Feb 2012 21:22:39 +0000 (21:22 +0000)]
Added TargetPassConfig::setOpt

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

12 years agoAdded Pass::createPass(ID) to handle pass configuration by ID
Andrew Trick [Wed, 8 Feb 2012 21:22:34 +0000 (21:22 +0000)]
Added Pass::createPass(ID) to handle pass configuration by ID

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

12 years agoMove pass configuration out of pass constructors: TailDuplicate::PreRegAlloc
Andrew Trick [Wed, 8 Feb 2012 21:22:30 +0000 (21:22 +0000)]
Move pass configuration out of pass constructors: TailDuplicate::PreRegAlloc

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

12 years agoAdd Register mask support to RABasic.
Jakob Stoklund Olesen [Wed, 8 Feb 2012 18:54:35 +0000 (18:54 +0000)]
Add Register mask support to RABasic.

When a virtual register is live across a call, limit the search space to
call-preserved registers.

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

12 years agoDon't map registers to the invalid dwarf register (-1). It's the default value.
Benjamin Kramer [Wed, 8 Feb 2012 18:46:26 +0000 (18:46 +0000)]
Don't map registers to the invalid dwarf register (-1). It's the default value.

 X86GenRegisterInfo.inc | 1032 -------------------------------------------------
  1 file changed, 1032 deletions(-)

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

12 years agoUse TSFlag bit to describe instruction properties.
Brendon Cahoon [Wed, 8 Feb 2012 18:25:47 +0000 (18:25 +0000)]
Use TSFlag bit to describe instruction properties.

Creating the isPredicated TSFlag enables the code
to use the property defined in the instruction format
instead of using a large switch statement.

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

12 years agoKeep track of register masks in LiveIntervalAnalysis.
Jakob Stoklund Olesen [Wed, 8 Feb 2012 17:33:45 +0000 (17:33 +0000)]
Keep track of register masks in LiveIntervalAnalysis.

Build an ordered vector of register mask operands (i.e., calls) when
computing live intervals. Provide a checkRegMaskInterference() function
that computes a bit mask of usable registers for a live range.

This is a quick way of determining of a live range crosses any calls,
and restricting it to the callee saved registers if it does.
Previously, we had to discover call clobbers for each candidate register
independently.

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

12 years agoValue initialize MCRegisterClasses. Not sure how could miss this during the MCTargetD...
Benjamin Kramer [Wed, 8 Feb 2012 14:43:53 +0000 (14:43 +0000)]
Value initialize MCRegisterClasses. Not sure how could miss this during the MCTargetDesc refactor.

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

12 years agoUse Use::set rather than finding the operand number of the use
Duncan Sands [Wed, 8 Feb 2012 14:10:53 +0000 (14:10 +0000)]
Use Use::set rather than finding the operand number of the use
and setting that.

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

12 years agoPathV2: Remove static StringRef ctors.
Benjamin Kramer [Wed, 8 Feb 2012 13:13:47 +0000 (13:13 +0000)]
PathV2: Remove static StringRef ctors.

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

12 years agoFixed a bug in printing "cmp" pseudo ops.
Elena Demikhovsky [Wed, 8 Feb 2012 08:37:26 +0000 (08:37 +0000)]
Fixed a bug in printing "cmp" pseudo ops.
> This IR code
> %res = call <8 x float> @llvm.x86.avx.cmp.ps.256(<8 x float> %a0, <8 x float> %a1, i8 14)
> fails with assertion:
>
> llc: X86ATTInstPrinter.cpp:62: void llvm::X86ATTInstPrinter::printSSECC(const llvm::MCInst*, unsigned int, llvm::raw_ostream&): Assertion `0 && "Invalid ssecc argument!"' failed.
> 0  llc             0x0000000001355803
> 1  llc             0x0000000001355dc9
> 2  libpthread.so.0 0x00007f79a30575d0
> 3  libc.so.6       0x00007f79a23a1945 gsignal + 53
> 4  libc.so.6       0x00007f79a23a2f21 abort + 385
> 5  libc.so.6       0x00007f79a239a810 __assert_fail + 240
> 6  llc             0x00000000011858d5 llvm::X86ATTInstPrinter::printSSECC(llvm::MCInst const*, unsigned int, llvm::raw_ostream&) + 119

I added the full testing for all possible pseudo-ops of cmp.
I extended X86AsmPrinter.cpp and X86IntelInstPrinter.cpp.

You'l also see lines alignments (unrelated to this fix) in X86IselLowering.cpp from my previous check-in.

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

12 years agoRemove a couple unneeded intrinsic patterns
Craig Topper [Wed, 8 Feb 2012 08:29:30 +0000 (08:29 +0000)]
Remove a couple unneeded intrinsic patterns

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

12 years agoNo actual functional change here, just some clarifications:
Chris Lattner [Wed, 8 Feb 2012 07:58:38 +0000 (07:58 +0000)]
No actual functional change here, just some clarifications:

Clarify that contributors are agreeing to license their code under the
license corresponding to the subproject that they are contributing to,
as requested by a potential contributor.

Also, as a drive-by, update the llvm-gcc/GPL section to mention dragonegg
and say that GPL code is all in its own repo's.

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

12 years agoRemove GCC builtins for vpermilp* intrinsics as clang no longer needs them. Custom...
Craig Topper [Wed, 8 Feb 2012 06:36:57 +0000 (06:36 +0000)]
Remove GCC builtins for vpermilp* intrinsics as clang no longer needs them. Custom lower the intrinsics to the vpermilp target specific node and remove intrinsic patterns.

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

12 years ago[fast-isel] Add support for SUBs with non-legal types.
Chad Rosier [Wed, 8 Feb 2012 02:45:44 +0000 (02:45 +0000)]
[fast-isel] Add support for SUBs with non-legal types.

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

12 years agoAdd comment to test case.
Chad Rosier [Wed, 8 Feb 2012 02:30:12 +0000 (02:30 +0000)]
Add comment to test case.

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

12 years ago[fast-isel] Add support for ORs with non-legal types.
Chad Rosier [Wed, 8 Feb 2012 02:29:21 +0000 (02:29 +0000)]
[fast-isel] Add support for ORs with non-legal types.

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

12 years agoAdded MachineInstr::isBundled() to check if an instruction is part of a bundle.
Andrew Trick [Wed, 8 Feb 2012 02:17:25 +0000 (02:17 +0000)]
Added MachineInstr::isBundled() to check if an instruction is part of a bundle.

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

12 years agomisched: bug in debug output.
Andrew Trick [Wed, 8 Feb 2012 02:17:21 +0000 (02:17 +0000)]
misched: bug in debug output.

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

12 years agowhitespace
Andrew Trick [Wed, 8 Feb 2012 02:17:18 +0000 (02:17 +0000)]
whitespace

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

12 years agostale comment
Andrew Trick [Wed, 8 Feb 2012 02:17:16 +0000 (02:17 +0000)]
stale comment

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

12 years agoadd an explicit section on static constructors.
Chris Lattner [Wed, 8 Feb 2012 01:44:00 +0000 (01:44 +0000)]
add an explicit section on static constructors.

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

12 years agoDon't use static CTORs for the Attributes constants, while still keeping the class...
Kostya Serebryany [Wed, 8 Feb 2012 01:11:21 +0000 (01:11 +0000)]
Don't use static CTORs for the Attributes constants, while still keeping the class type-safe

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

12 years agoAdd support for a temporary forward decl type. We want this so we
Eric Christopher [Wed, 8 Feb 2012 00:22:26 +0000 (00:22 +0000)]
Add support for a temporary forward decl type. We want this so we
can rauw forward declarations if we decide to emit the full type.

Part of rdar://10809898

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

12 years agoRemove tabs.
Devang Patel [Wed, 8 Feb 2012 00:17:07 +0000 (00:17 +0000)]
Remove tabs.

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

12 years ago[fast-isel] Add support for indirect branches.
Chad Rosier [Tue, 7 Feb 2012 23:56:08 +0000 (23:56 +0000)]
[fast-isel] Add support for indirect branches.

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

12 years agoRemove tabs.
Devang Patel [Tue, 7 Feb 2012 23:33:58 +0000 (23:33 +0000)]
Remove tabs.

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

12 years agoUse LEA to adjust stack ptr for Atom. Patch by Andy Zhang.
Evan Cheng [Tue, 7 Feb 2012 22:50:41 +0000 (22:50 +0000)]
Use LEA to adjust stack ptr for Atom. Patch by Andy Zhang.

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

12 years agoAllow bugpoint to recognize -bb-vectorize
Hal Finkel [Tue, 7 Feb 2012 21:11:12 +0000 (21:11 +0000)]
Allow bugpoint to recognize -bb-vectorize

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

12 years agoCorrect use of const in ParseCommandLineOptions
David Blaikie [Tue, 7 Feb 2012 19:36:01 +0000 (19:36 +0000)]
Correct use of const in ParseCommandLineOptions

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

12 years agoocaml bindings: landing pad is now the last opcode.
Benjamin Kramer [Tue, 7 Feb 2012 18:58:19 +0000 (18:58 +0000)]
ocaml bindings: landing pad is now the last opcode.

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

12 years agoAdd a unittest for rotating a really big APInt.
Benjamin Kramer [Tue, 7 Feb 2012 16:27:39 +0000 (16:27 +0000)]
Add a unittest for rotating a really big APInt.

Clang miscompiles it under certain circumstances, and it's a good exercise for APInt.

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

12 years agoBitcode/BitstreamReader.h: Tweak for big endian hosts.
NAKAMURA Takumi [Tue, 7 Feb 2012 10:53:19 +0000 (10:53 +0000)]
Bitcode/BitstreamReader.h: Tweak for big endian hosts.

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

12 years agoRephrase to add clarity.
Bill Wendling [Tue, 7 Feb 2012 08:42:29 +0000 (08:42 +0000)]
Rephrase to add clarity.

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

12 years agotest commit
Anat Shemer [Tue, 7 Feb 2012 08:18:05 +0000 (08:18 +0000)]
test commit

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

12 years agoDo not fold ADD / SUB into load / store (to form pre-indexed, post-indexed
Evan Cheng [Tue, 7 Feb 2012 07:09:28 +0000 (07:09 +0000)]
Do not fold ADD / SUB into load / store (to form pre-indexed, post-indexed
load / store) if the ADD / SUB has a live definition of CPSR.

Bug reported by David Meyer. Alas, no test case.

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

12 years agoAdd instruction selection for 256-bit VPSHUFD and 128-bit VPERMILPS/VPERMILPD.
Craig Topper [Tue, 7 Feb 2012 06:28:42 +0000 (06:28 +0000)]
Add instruction selection for 256-bit VPSHUFD and 128-bit VPERMILPS/VPERMILPD.

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

12 years agoConvert assert(0) to llvm_unreachable
Craig Topper [Tue, 7 Feb 2012 05:05:23 +0000 (05:05 +0000)]
Convert assert(0) to llvm_unreachable

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

12 years agoConvert assert(0) to llvm_unreachable
Craig Topper [Tue, 7 Feb 2012 02:50:20 +0000 (02:50 +0000)]
Convert assert(0) to llvm_unreachable

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

12 years agoCache the sizes of vectors instead of calculating them all over the place.
Bill Wendling [Tue, 7 Feb 2012 01:48:12 +0000 (01:48 +0000)]
Cache the sizes of vectors instead of calculating them all over the place.

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

12 years agoReserve space in these vectors to prevent having to grow the array too
Bill Wendling [Tue, 7 Feb 2012 01:27:51 +0000 (01:27 +0000)]
Reserve space in these vectors to prevent having to grow the array too
much. This gets us an addition 0.9% on 445.gobmk.

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

12 years agoFix win32 build breakage from bitcode streaming patch
Derek Schuff [Tue, 7 Feb 2012 00:28:46 +0000 (00:28 +0000)]
Fix win32 build breakage from bitcode streaming patch

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

12 years ago[fast-isel] Add support for ADDs with non-legal types.
Chad Rosier [Mon, 6 Feb 2012 23:50:07 +0000 (23:50 +0000)]
[fast-isel] Add support for ADDs with non-legal types.

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

12 years agoThis is a small patch with a couple of improvements for running lit with --debug:
Andrew Trick [Mon, 6 Feb 2012 23:34:52 +0000 (23:34 +0000)]
This is a small patch with a couple of improvements for running lit with --debug:

1. Added a status note when a config file is loaded directly with load_config. This helps notice loads of lit.cfg from lit.site.cfg
2. Added a status note on the result of a config load. Previously, it was just notifying that it tries to load a config file. Now it will also say whether the load succeeded or the file wasn't found

The two changes give better visibility into which config files were actually loaded by lit. The effect is only on --debug runs.

Patch by Eli Bendersky!

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

12 years agoExpose TargetPassConfig to PEI Pass
Andrew Trick [Mon, 6 Feb 2012 22:51:18 +0000 (22:51 +0000)]
Expose TargetPassConfig to PEI Pass

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

12 years agoAdd TargetPassConfig to the PassManager for use inside passes
Andrew Trick [Mon, 6 Feb 2012 22:51:15 +0000 (22:51 +0000)]
Add TargetPassConfig to the PassManager for use inside passes

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

12 years agoThe patch resolves the conflict between AddressSanitizer and load widening (GVN).
Kostya Serebryany [Mon, 6 Feb 2012 22:48:56 +0000 (22:48 +0000)]
The patch resolves the conflict between AddressSanitizer and load widening (GVN).
The problem initially reported by Mozilla folks (http://code.google.com/p/address-sanitizer/issues/detail?id=20),
but it also prevents us from enabling LLVM bootstrap with AddressSanitizer.

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

12 years agoFix comment-rulers.
Nick Lewycky [Mon, 6 Feb 2012 22:41:47 +0000 (22:41 +0000)]
Fix comment-rulers.

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

12 years agoRemove some unused functions.
Jakob Stoklund Olesen [Mon, 6 Feb 2012 22:37:58 +0000 (22:37 +0000)]
Remove some unused functions.

LiveIntervalAnalysis has a number of functions that simply forward to
SlotIndexes.  Since SlotIndexes is a stand-alone analysis now, clients
should really refer to it directly.

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

12 years agoDon't explicitly renumber slot indices.
Jakob Stoklund Olesen [Mon, 6 Feb 2012 22:37:56 +0000 (22:37 +0000)]
Don't explicitly renumber slot indices.

We have automatic local renumbering now.

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

12 years agoSystem headers after llvm headers.
Nick Lewycky [Mon, 6 Feb 2012 22:36:39 +0000 (22:36 +0000)]
System headers after llvm headers.

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

12 years agoEnable streaming of bitcode
Derek Schuff [Mon, 6 Feb 2012 22:30:29 +0000 (22:30 +0000)]
Enable streaming of bitcode

This CL delays reading of function bodies from initial parse until
materialization, allowing overlap of compilation with bitcode download.

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

12 years agoDocument the 'unwind' removal.
Bill Wendling [Mon, 6 Feb 2012 21:59:44 +0000 (21:59 +0000)]
Document the 'unwind' removal.

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

12 years ago[unwind removal] Remove any mention of the 'unwind' instruction. What was that
Bill Wendling [Mon, 6 Feb 2012 21:57:33 +0000 (21:57 +0000)]
[unwind removal] Remove any mention of the 'unwind' instruction. What was that
instruction anyway?!

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

12 years agoRemove some dead code and tidy things up now that vectors use ConstantDataVector
Chris Lattner [Mon, 6 Feb 2012 21:56:39 +0000 (21:56 +0000)]
Remove some dead code and tidy things up now that vectors use ConstantDataVector
instead of always using ConstantVector.

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

12 years ago[unwind removal] Remove a the obsolete 'unwind' enum value.
Bill Wendling [Mon, 6 Feb 2012 21:55:35 +0000 (21:55 +0000)]
[unwind removal] Remove a the obsolete 'unwind' enum value.

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

12 years agoMake sure a reserved register has a live interval before merging.
Jakob Stoklund Olesen [Mon, 6 Feb 2012 21:52:18 +0000 (21:52 +0000)]
Make sure a reserved register has a live interval before merging.

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

12 years ago[unwind removal] Remove all of the code for the dead 'unwind' instruction. There
Bill Wendling [Mon, 6 Feb 2012 21:44:22 +0000 (21:44 +0000)]
[unwind removal] Remove all of the code for the dead 'unwind' instruction. There
were no 'unwind' instructions being generated before this, so this is in effect
a no-op.

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

12 years ago[unwind removal] Don't write out the dead 'unwind' instruction.
Bill Wendling [Mon, 6 Feb 2012 21:30:37 +0000 (21:30 +0000)]
[unwind removal] Don't write out the dead 'unwind' instruction.

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

12 years ago[unwind removal] We no longer have 'unwind' instructions being generated, so
Bill Wendling [Mon, 6 Feb 2012 21:16:41 +0000 (21:16 +0000)]
[unwind removal] We no longer have 'unwind' instructions being generated, so
remove the code that handles them.

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

12 years ago'unwind' is a keyword, not an instruction.
Bill Wendling [Mon, 6 Feb 2012 21:02:43 +0000 (21:02 +0000)]
'unwind' is a keyword, not an instruction.

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

12 years ago[unwind removal] Remove the 'unwind' instruction parsing bits.
Bill Wendling [Mon, 6 Feb 2012 20:50:27 +0000 (20:50 +0000)]
[unwind removal] Remove the 'unwind' instruction parsing bits.

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

12 years agoIntroduce helpers to compute the 32-bit varaints and 64-bit variants of
Chandler Carruth [Mon, 6 Feb 2012 20:46:33 +0000 (20:46 +0000)]
Introduce helpers to compute the 32-bit varaints and 64-bit variants of
some architectures. These are useful for interacting with multiarch or
bi-arch GCC (or GCC-based) toolchains.

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

12 years agoTest commit; also removes some trailing whitespace
Derek Schuff [Mon, 6 Feb 2012 19:03:04 +0000 (19:03 +0000)]
Test commit; also removes some trailing whitespace

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

12 years agoThe 'unwind' instruction is deprecated and will be removed, making this test
Bill Wendling [Mon, 6 Feb 2012 18:18:47 +0000 (18:18 +0000)]
The 'unwind' instruction is deprecated and will be removed, making this test
obsolete.

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

12 years agoUpdate docs describing objective-c property encoding. This includes support for prope...
Devang Patel [Mon, 6 Feb 2012 18:18:25 +0000 (18:18 +0000)]
Update docs describing objective-c property encoding. This includes support for properties that are not backed by an ivar.

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

12 years agoMention that the 'unwind' instruction is now deprecated.
Bill Wendling [Mon, 6 Feb 2012 17:58:34 +0000 (17:58 +0000)]
Mention that the 'unwind' instruction is now deprecated.

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

12 years agoDebugInfo: Provide a new hook to encode relationship between a property and an ivar.
Devang Patel [Mon, 6 Feb 2012 17:49:43 +0000 (17:49 +0000)]
DebugInfo: Provide a new hook to encode relationship between a property and an ivar.

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

12 years agoUpdate ExceptionDemo to use ConstantDataArray.
Peter Collingbourne [Mon, 6 Feb 2012 14:09:13 +0000 (14:09 +0000)]
Update ExceptionDemo to use ConstantDataArray.

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

12 years agoX86: Don't call malloc for 4 bits. No functionality change.
Benjamin Kramer [Mon, 6 Feb 2012 12:06:18 +0000 (12:06 +0000)]
X86: Don't call malloc for 4 bits. No functionality change.

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

12 years agoMake helper static.
Benjamin Kramer [Mon, 6 Feb 2012 11:28:19 +0000 (11:28 +0000)]
Make helper static.

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

12 years agoHexagon: Remove forbidden iostream includes (it introduces static initializers)
Benjamin Kramer [Mon, 6 Feb 2012 10:19:29 +0000 (10:19 +0000)]
Hexagon: Remove forbidden iostream includes (it introduces static initializers)

Reorder includes while at it.

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

12 years agoSplit part of EvaluateFunction into a new EvaluateBlock method. No functionality
Nick Lewycky [Mon, 6 Feb 2012 08:24:44 +0000 (08:24 +0000)]
Split part of EvaluateFunction into a new EvaluateBlock method. No functionality
change.

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

12 years agoMove some llvm_unreachable's from r149849 out of switch statements to satisfy -Wcover...
Craig Topper [Mon, 6 Feb 2012 08:17:43 +0000 (08:17 +0000)]
Move some llvm_unreachable's from r149849 out of switch statements to satisfy -Wcovered-switch-default

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

12 years agoAdd shuffle decoding support for 256-bit pshufd. Merge vpermilp* and pshufd decoding.
Craig Topper [Mon, 6 Feb 2012 07:17:51 +0000 (07:17 +0000)]
Add shuffle decoding support for 256-bit pshufd. Merge vpermilp* and pshufd decoding.

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

12 years agofix indentation
Sebastian Pop [Mon, 6 Feb 2012 05:29:32 +0000 (05:29 +0000)]
fix indentation

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

12 years agofix typo
Sebastian Pop [Mon, 6 Feb 2012 05:29:29 +0000 (05:29 +0000)]
fix typo

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

12 years agoSmallVector's construct_range is the same thing as std::uninitialized_fill, no need...
Benjamin Kramer [Sun, 5 Feb 2012 22:48:31 +0000 (22:48 +0000)]
SmallVector's construct_range is the same thing as std::uninitialized_fill, no need to reinvent it.

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

12 years agoSimplify code. No functionality change.
Benjamin Kramer [Sun, 5 Feb 2012 22:14:48 +0000 (22:14 +0000)]
Simplify code. No functionality change.

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

12 years agoConvert assert(0) to llvm_unreachable
Craig Topper [Sun, 5 Feb 2012 22:14:15 +0000 (22:14 +0000)]
Convert assert(0) to llvm_unreachable

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

12 years agoEfficient Constant Uniquing.
Talin [Sun, 5 Feb 2012 20:54:10 +0000 (20:54 +0000)]
Efficient Constant Uniquing.

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

12 years agoTeach GlobalOpt to handle atomic accesses to globals.
Nick Lewycky [Sun, 5 Feb 2012 19:56:38 +0000 (19:56 +0000)]
Teach GlobalOpt to handle atomic accesses to globals.

 * Most of the transforms come through intact by having each transformed load or
store copy the ordering and synchronization scope of the original.
 * The transform that turns a global only accessed in main() into an alloca
(since main is non-recursive) with a store of the initial value uses an
unordered store, since it's guaranteed to be the first thing to happen in main.
(Threads may have started before main (!) but they can't have the address of a
function local before the point in the entry block we insert our code.)
 * The heap-SRoA transforms are disabled in the face of atomic operations. This
can probably be improved; it seems odd to have atomic accesses to an alloca
that doesn't have its address taken.

AnalyzeGlobal keeps track of the strongest ordering found in any use of the
global. This is more information than we need right now, but it's cheap to
compute and likely to be useful.

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

12 years agoDefinesPredicate should only look for def operands. Patch by Ludwig Meier.
Evan Cheng [Sun, 5 Feb 2012 19:55:04 +0000 (19:55 +0000)]
DefinesPredicate should only look for def operands. Patch by Ludwig Meier.

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