oota-llvm.git
18 years agoThe second patch of X86 support for read cycle counter.
Andrew Lenharth [Sun, 20 Nov 2005 21:41:10 +0000 (21:41 +0000)]
The second patch of X86 support for read cycle counter.

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

18 years agoThe first patch of X86 support for read cycle counter
Andrew Lenharth [Sun, 20 Nov 2005 21:32:07 +0000 (21:32 +0000)]
The first patch of X86 support for read cycle counter

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

18 years agomore progress towards bug 291 being finished. Patch by Owen Anderson,
Chris Lattner [Sun, 20 Nov 2005 03:45:52 +0000 (03:45 +0000)]
more progress towards bug 291 being finished.  Patch by Owen Anderson,
HAVE_GV case fixed up by me.

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

18 years agoUnbreak codegen of bools. This should fix the llc/jit/llc-beta failures
Chris Lattner [Sat, 19 Nov 2005 18:40:42 +0000 (18:40 +0000)]
Unbreak codegen of bools.  This should fix the llc/jit/llc-beta failures
from last night.

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

18 years agoInitialize this variable on all paths, fixing a crasher in windows. Thanks
Chris Lattner [Sat, 19 Nov 2005 07:48:33 +0000 (07:48 +0000)]
Initialize this variable on all paths, fixing a crasher in windows.  Thanks
to JeffC for pointing this out.

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

18 years agoImprove Selection DAG printer portability. Patch by Owen Anderson!
Chris Lattner [Sat, 19 Nov 2005 07:44:09 +0000 (07:44 +0000)]
Improve Selection DAG printer portability.  Patch by Owen Anderson!

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

18 years agoTeach tblgen about instruction operands that have multiple MachineInstr
Chris Lattner [Sat, 19 Nov 2005 07:05:57 +0000 (07:05 +0000)]
Teach tblgen about instruction operands that have multiple MachineInstr
operands, digging into them to find register values (used on X86).  Patch
by Evan Cheng!

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

18 years agoTeach the x86 backend about the register constraints of its addressing mode.
Chris Lattner [Sat, 19 Nov 2005 07:01:30 +0000 (07:01 +0000)]
Teach the x86 backend about the register constraints of its addressing mode.
Patch by Evan Cheng

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

18 years agoCapture more operand info, patch by Evan Cheng
Chris Lattner [Sat, 19 Nov 2005 07:00:10 +0000 (07:00 +0000)]
Capture more operand info, patch by Evan Cheng

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

18 years agoTeach the graph viewer to handle register operands that are zero.
Chris Lattner [Sat, 19 Nov 2005 06:58:46 +0000 (06:58 +0000)]
Teach the graph viewer to handle register operands that are zero.

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

18 years agoSilence a bogus warning
Chris Lattner [Sat, 19 Nov 2005 05:51:46 +0000 (05:51 +0000)]
Silence a bogus warning

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

18 years agoAdd load and other support to the dag-dag isel. Patch contributed by Evan
Chris Lattner [Sat, 19 Nov 2005 02:11:08 +0000 (02:11 +0000)]
Add load and other support to the dag-dag isel.  Patch contributed by Evan
Cheng!

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

18 years agoAdd some method variants, patch by Evan Cheng
Chris Lattner [Sat, 19 Nov 2005 01:44:53 +0000 (01:44 +0000)]
Add some method variants, patch by Evan Cheng

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

18 years agoAdd two new construction methods, patch by Evan Cheng
Chris Lattner [Sat, 19 Nov 2005 01:42:10 +0000 (01:42 +0000)]
Add two new construction methods, patch by Evan Cheng

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

18 years agoTeach LLVM how to scalarize packed types. Currently, this only works on
Nate Begeman [Sat, 19 Nov 2005 00:36:38 +0000 (00:36 +0000)]
Teach LLVM how to scalarize packed types.  Currently, this only works on
packed types with an element count of 1, although more generic support is
coming.  This allows LLVM to turn the following code:

void %foo(<1 x float> * %a) {
entry:
  %tmp1 = load <1 x float> * %a;
  %tmp2 = add <1 x float> %tmp1, %tmp1
  store <1 x float> %tmp2, <1 x float> *%a
  ret void
}

Into:

_foo:
        lfs f0, 0(r3)
        fadds f0, f0, f0
        stfs f0, 0(r3)
        blr

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

18 years agotestcase for recent indvars patches
Chris Lattner [Fri, 18 Nov 2005 19:38:15 +0000 (19:38 +0000)]
testcase for recent indvars patches

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

18 years agoFix a crash building 176.gcc due to my recent patch, which only fixed
Chris Lattner [Fri, 18 Nov 2005 18:30:47 +0000 (18:30 +0000)]
Fix a crash building 176.gcc due to my recent patch, which only fixed
half the problem.

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

18 years agoprevent latent switch creation
Andrew Lenharth [Fri, 18 Nov 2005 13:57:03 +0000 (13:57 +0000)]
prevent latent switch creation

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

18 years agoSplit out the shift code from visitBinary.
Nate Begeman [Fri, 18 Nov 2005 07:42:56 +0000 (07:42 +0000)]
Split out the shift code from visitBinary.

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

18 years agoImplement a refinement to the mem2reg algorithm for cases where an alloca
Chris Lattner [Fri, 18 Nov 2005 07:31:42 +0000 (07:31 +0000)]
Implement a refinement to the mem2reg algorithm for cases where an alloca
has a single def.  In this case, look for uses that are dominated by the def
and attempt to rewrite them to directly use the stored value.

This speeds up mem2reg on these values and reduces the number of phi nodes
inserted.  This should address PR665.

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

18 years agoThis needs proper dominance
Chris Lattner [Fri, 18 Nov 2005 07:29:44 +0000 (07:29 +0000)]
This needs proper dominance

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

18 years agopost-dom-frontiers requires proper post-dominance
Chris Lattner [Fri, 18 Nov 2005 07:28:26 +0000 (07:28 +0000)]
post-dom-frontiers requires proper post-dominance

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

18 years agoThis requires proper dominance
Chris Lattner [Fri, 18 Nov 2005 07:27:53 +0000 (07:27 +0000)]
This requires proper dominance

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

18 years agoFix the dominates method to return true if the two nodes are the same. Add
Chris Lattner [Fri, 18 Nov 2005 07:27:33 +0000 (07:27 +0000)]
Fix the dominates method to return true if the two nodes are the same.  Add
a new properlyDominates method to do what the old one did.

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

18 years agoadd more patterns, patch by Evan Cheng.
Chris Lattner [Fri, 18 Nov 2005 01:04:42 +0000 (01:04 +0000)]
add more patterns, patch by Evan Cheng.

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

18 years agoAlso add the new vector value type here, for completeness.
Nate Begeman [Fri, 18 Nov 2005 00:53:32 +0000 (00:53 +0000)]
Also add the new vector value type here, for completeness.

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

18 years agoTeach the type lowering code about turning packed types into vector types.
Nate Begeman [Thu, 17 Nov 2005 21:44:42 +0000 (21:44 +0000)]
Teach the type lowering code about turning packed types into vector types.
Next step: generating vector dag nodes, and legalizing them into scalar
code.

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

18 years agoonly use dyld stubs if not in ppc-static mode. This completes support for
Chris Lattner [Thu, 17 Nov 2005 19:40:30 +0000 (19:40 +0000)]
only use dyld stubs if not in ppc-static mode.  This completes support for
non-static codegen.

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

18 years agoThis was checking the wrong GEP expression. Fixing this fixes a gccas crash
Chris Lattner [Thu, 17 Nov 2005 19:35:42 +0000 (19:35 +0000)]
This was checking the wrong GEP expression.  Fixing this fixes a gccas crash
compiling mysql reported by Ted Kremenek.

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

18 years agorefactor call operand handling to eliminate special cases from printOp.
Chris Lattner [Thu, 17 Nov 2005 19:25:59 +0000 (19:25 +0000)]
refactor call operand handling to eliminate special cases from printOp.

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

18 years agodisentangle call operands from branch operands a bit
Chris Lattner [Thu, 17 Nov 2005 19:16:08 +0000 (19:16 +0000)]
disentangle call operands from branch operands a bit

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

18 years agoadd an option to generate completely non-pic code, corresponding to what
Chris Lattner [Thu, 17 Nov 2005 18:55:48 +0000 (18:55 +0000)]
add an option to generate completely non-pic code, corresponding to what
gcc -static produces on PPC.  This is used for building kexts and other things.

With this, materializing the address of a global looks like:

        lis r2, ha16(L_H$non_lazy_ptr)
        la r3, lo16(L_H$non_lazy_ptr)(r2)

we're still emitting stubs for functions, which is wrong.  That is next.

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

18 years agoFix a bug that resistor on IRC hit where we tried to create token factor
Chris Lattner [Thu, 17 Nov 2005 18:30:17 +0000 (18:30 +0000)]
Fix a bug that resistor on IRC hit where we tried to create token factor
nodes of load results, not of their chain results.

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

18 years agoEnable global address legalization, fixing a todo and allowing the removal
Chris Lattner [Thu, 17 Nov 2005 18:26:56 +0000 (18:26 +0000)]
Enable global address legalization, fixing a todo and allowing the removal
of some code.  This exposes the implicit load from the stubs to the DAG, allowing
them to be optimized by the dag combiner.  It also moves darwin specific stuff
out of the isel into the legalizer, and allows more to be moved to the .td file.

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

18 years agoTeach the selector to fold lo(g) into load instruction immediate fields
Chris Lattner [Thu, 17 Nov 2005 18:02:16 +0000 (18:02 +0000)]
Teach the selector to fold lo(g) into load instruction immediate fields

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

18 years agoGenerate LA and ADDIS when possible.
Chris Lattner [Thu, 17 Nov 2005 17:52:01 +0000 (17:52 +0000)]
Generate LA and ADDIS when possible.

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

18 years agoUse the right accessor to create this node
Chris Lattner [Thu, 17 Nov 2005 17:51:38 +0000 (17:51 +0000)]
Use the right accessor to create this node

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

18 years agoValidate that the input to 'Pat' patterns is sane.
Chris Lattner [Thu, 17 Nov 2005 17:43:52 +0000 (17:43 +0000)]
Validate that the input to 'Pat' patterns is sane.

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

18 years agoAllow users to specify -Wl,-native* multiple times if they please
Chris Lattner [Thu, 17 Nov 2005 16:08:04 +0000 (16:08 +0000)]
Allow users to specify -Wl,-native* multiple times if they please

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

18 years agoteach tblgen to be smart enough to handle tglobaladdr nodes
Chris Lattner [Thu, 17 Nov 2005 07:39:45 +0000 (07:39 +0000)]
teach tblgen to be smart enough to handle tglobaladdr nodes

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

18 years agoAdd an initial hack at legalizing GlobalAddress into the appropriate nodes
Chris Lattner [Thu, 17 Nov 2005 07:30:41 +0000 (07:30 +0000)]
Add an initial hack at legalizing GlobalAddress into the appropriate nodes
on Darwin to remove smarts from the isel.  This is currently disabled by
default (uncomment setOperationAction(ISD::GlobalAddress to enable it).
tblgen needs to become smarter about tglobaladdr nodes and bigger patterns
needed to be added to the .td file.  However, we can currently emit stuff like
this:  :)

        li r2, lo16(L_x$non_lazy_ptr)
        lis r3, ha16(L_x$non_lazy_ptr)
        lwzx r2, r3, r2

The obvious improvements will follow.

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

18 years agoAdd globaladdress and targetglobaladdress nodes for dag patterns
Chris Lattner [Thu, 17 Nov 2005 07:20:15 +0000 (07:20 +0000)]
Add globaladdress and targetglobaladdress nodes for dag patterns

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

18 years agoLI could theoretically be used for the lo-part of a global address, just like
Chris Lattner [Thu, 17 Nov 2005 07:04:43 +0000 (07:04 +0000)]
LI could theoretically be used for the lo-part of a global address, just like
lis can be used for the high part.

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

18 years agoAllow targets to custom legalize leaf nodes like GlobalAddress.
Chris Lattner [Thu, 17 Nov 2005 06:41:44 +0000 (06:41 +0000)]
Allow targets to custom legalize leaf nodes like GlobalAddress.

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

18 years agoWhen lowering direct calls, lower them to use a targetglobaladress directly
Chris Lattner [Thu, 17 Nov 2005 05:56:14 +0000 (05:56 +0000)]
When lowering direct calls, lower them to use a targetglobaladress directly
instead of a globaladdress.  This has no effect on the generated code at all.

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

18 years agoTeach legalize about targetglobaladdress
Chris Lattner [Thu, 17 Nov 2005 05:52:24 +0000 (05:52 +0000)]
Teach legalize about targetglobaladdress

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

18 years agoAdd patterns for some 16-bit immediate instructions, patch contributed by
Chris Lattner [Thu, 17 Nov 2005 02:01:55 +0000 (02:01 +0000)]
Add patterns for some 16-bit immediate instructions, patch contributed by
Evan Cheng.

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

18 years agofix a tblgen bug that Evan ran into, where we would lose the '$src' name
Chris Lattner [Wed, 16 Nov 2005 23:14:54 +0000 (23:14 +0000)]
fix a tblgen bug that Evan ran into, where we would lose the '$src' name
on patterns like "(set R32:$dst, (i32 imm:$src))"

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

18 years agoAdd patterns for several simple instructions that take i32 immediates.
Chris Lattner [Wed, 16 Nov 2005 22:59:19 +0000 (22:59 +0000)]
Add patterns for several simple instructions that take i32 immediates.
Patch contributed by Evan Cheng!

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

18 years agowho would have thought you would want to write into globals too
Andrew Lenharth [Wed, 16 Nov 2005 21:15:53 +0000 (21:15 +0000)]
who would have thought you would want to write into globals too

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

18 years agoThis passes on ppc and x86 now
Chris Lattner [Wed, 16 Nov 2005 07:24:31 +0000 (07:24 +0000)]
This passes on ppc and x86 now

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

18 years agowhen debugging lower dbg intrinsics to calls
Chris Lattner [Wed, 16 Nov 2005 07:22:30 +0000 (07:22 +0000)]
when debugging lower dbg intrinsics to calls

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

18 years agotell selectiondag when we're debugging
Chris Lattner [Wed, 16 Nov 2005 07:21:47 +0000 (07:21 +0000)]
tell selectiondag when we're debugging

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

18 years agoadd a flag
Chris Lattner [Wed, 16 Nov 2005 07:21:15 +0000 (07:21 +0000)]
add a flag

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

18 years agoindicate when a tool is a debug build.
Chris Lattner [Wed, 16 Nov 2005 06:36:47 +0000 (06:36 +0000)]
indicate when a tool is a debug build.

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

18 years agoKeep Visual Studio building.
Jeff Cohen [Wed, 16 Nov 2005 06:10:53 +0000 (06:10 +0000)]
Keep Visual Studio building.

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

18 years ago* Fix DerivedType::dropAllTypeUses to not change the number of types in a
Chris Lattner [Wed, 16 Nov 2005 06:09:47 +0000 (06:09 +0000)]
* Fix DerivedType::dropAllTypeUses to not change the number of types in a
  type when it gets refined.  This allows us to hash on this crucial value.
* Fix several issues in TypeMap::RefineAbstractType that prevent it from
  handling hash values that change correctly.
* Define hashTypeStructure to not always return 0.  :)

This last part (which depends on the first two) speeds up gccld time on eon
from 3.78s to 2.75s with a release build (a 28% speedup!).  This resolves
PR474.

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

18 years agoinitial step at adding a dag-to-dag isel for X86 backend. Patch contributed
Chris Lattner [Wed, 16 Nov 2005 01:54:32 +0000 (01:54 +0000)]
initial step at adding a dag-to-dag isel for X86 backend.  Patch contributed
by Evan Cheng!

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

18 years agoPatch to clean up function call pseudos and support the BLA instruction,
Nate Begeman [Wed, 16 Nov 2005 00:48:01 +0000 (00:48 +0000)]
Patch to clean up function call pseudos and support the BLA instruction,
which branches to an absolute address.  This is required to support objc
direct dispatch.

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

18 years agoKeep Visual Studio informed of new files.
Jeff Cohen [Tue, 15 Nov 2005 16:11:55 +0000 (16:11 +0000)]
Keep Visual Studio informed of new files.

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

18 years agoremove these labels, there are now bigger jumps in the graph that are unlabeled
Chris Lattner [Tue, 15 Nov 2005 06:44:15 +0000 (06:44 +0000)]
remove these labels, there are now bigger jumps in the graph that are unlabeled

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

18 years agoFix some typos noticed by Gabor Greif!
Chris Lattner [Tue, 15 Nov 2005 06:07:55 +0000 (06:07 +0000)]
Fix some typos noticed by Gabor Greif!

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

18 years agoMake sure to use SwitchSection to switch sections so that we don't accidentally emit
Chris Lattner [Tue, 15 Nov 2005 01:45:01 +0000 (01:45 +0000)]
Make sure to use SwitchSection to switch sections so that we don't accidentally emit
functions into the .const section.  Whoops.

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

18 years agoFix handling of multiple unnamed globals with the same type
Chris Lattner [Tue, 15 Nov 2005 01:32:03 +0000 (01:32 +0000)]
Fix handling of multiple unnamed globals with the same type

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

18 years agoSeparate X86ISelLowering stuff out from the X86ISelPattern.cpp file. Patch
Chris Lattner [Tue, 15 Nov 2005 00:40:23 +0000 (00:40 +0000)]
Separate X86ISelLowering stuff out from the X86ISelPattern.cpp file.  Patch
contributed by Evan Cheng.

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

18 years agoRemove extraneous parents around constants when using a constant expr cast.
Chris Lattner [Tue, 15 Nov 2005 00:03:16 +0000 (00:03 +0000)]
Remove extraneous parents around constants when using a constant expr cast.

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

18 years agothis file moved
Andrew Lenharth [Mon, 14 Nov 2005 19:32:05 +0000 (19:32 +0000)]
this file moved

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

18 years agoHandle globals with explicit alignment requests
Chris Lattner [Mon, 14 Nov 2005 19:00:30 +0000 (19:00 +0000)]
Handle globals with explicit alignment requests

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

18 years agoTeach emitAlignment to handle explicit alignment requests by globals.
Chris Lattner [Mon, 14 Nov 2005 19:00:06 +0000 (19:00 +0000)]
Teach emitAlignment to handle explicit alignment requests by globals.

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

18 years agoTeach the PPC asmwriter to honor globals with explicit section requests.
Chris Lattner [Mon, 14 Nov 2005 18:52:46 +0000 (18:52 +0000)]
Teach the PPC asmwriter to honor globals with explicit section requests.

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

18 years agoinstead of using mstats, use malloc_zone_statistics which returns numbers
Chris Lattner [Mon, 14 Nov 2005 07:27:56 +0000 (07:27 +0000)]
instead of using mstats, use malloc_zone_statistics which returns numbers
that actually make sense.

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

18 years agoregenearte
Chris Lattner [Mon, 14 Nov 2005 07:25:50 +0000 (07:25 +0000)]
regenearte

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

18 years agoadd malloc_zone_statistics, remove mstats
Chris Lattner [Mon, 14 Nov 2005 07:24:17 +0000 (07:24 +0000)]
add malloc_zone_statistics, remove mstats

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

18 years agoTeach -track-memory to work on darwin. Looking at sbrk doesn't work because
Chris Lattner [Mon, 14 Nov 2005 07:00:29 +0000 (07:00 +0000)]
Teach -track-memory to work on darwin.  Looking at sbrk doesn't work because
the default allocator uses mmap.

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

18 years agoregenerate
Chris Lattner [Mon, 14 Nov 2005 06:57:34 +0000 (06:57 +0000)]
regenerate

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

18 years agoadd some stuff for mstats on darwin
Chris Lattner [Mon, 14 Nov 2005 06:54:33 +0000 (06:54 +0000)]
add some stuff for mstats on darwin

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

18 years agoadd FP select. next up - divide!
Duraid Madina [Mon, 14 Nov 2005 01:17:30 +0000 (01:17 +0000)]
add FP select. next up - divide!

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

18 years agoAdd some dummy method impls
Chris Lattner [Sun, 13 Nov 2005 03:26:33 +0000 (03:26 +0000)]
Add some dummy method impls

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

18 years agoShrink derived types by 8 bytes each by not having to have 2 vtables pointers
Chris Lattner [Sun, 13 Nov 2005 03:26:12 +0000 (03:26 +0000)]
Shrink derived types by 8 bytes each by not having to have 2 vtables pointers
and other MI overhead.

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

18 years agoMove some methods around. Refactor the parts of TypeMap that do not depend
Chris Lattner [Sun, 13 Nov 2005 03:14:09 +0000 (03:14 +0000)]
Move some methods around.  Refactor the parts of TypeMap that do not depend
on its template arguments into a base class so that the code isn't duplicated
5 times.

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

18 years agoRefactor some code, moving methods and data around. This gets rid of some
Chris Lattner [Sun, 13 Nov 2005 03:13:26 +0000 (03:13 +0000)]
Refactor some code, moving methods and data around.  This gets rid of some
virtual methods.

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

18 years agotypeo
Chris Lattner [Sun, 13 Nov 2005 02:09:55 +0000 (02:09 +0000)]
typeo

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

18 years agoSplit the type refinement case completely out of the type-becomes-concrete
Chris Lattner [Sun, 13 Nov 2005 01:58:06 +0000 (01:58 +0000)]
Split the type refinement case completely out of the type-becomes-concrete
case, simplifying the code.

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

18 years agounbreak the build
Chris Lattner [Sun, 13 Nov 2005 01:45:23 +0000 (01:45 +0000)]
unbreak the build

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

18 years agoSeparate the type-became-concrete case from the type-is-resolved case, the
Chris Lattner [Sun, 13 Nov 2005 01:27:50 +0000 (01:27 +0000)]
Separate the type-became-concrete case from the type-is-resolved case, the
former of which takes much less work than the later.  This speeds up linking
eon from 3.749 to 3.637s with a release build (about 3%).

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

18 years agoenable LSR by default on alpha
Andrew Lenharth [Sat, 12 Nov 2005 19:21:08 +0000 (19:21 +0000)]
enable LSR by default on alpha

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

18 years agofix more regressions
Andrew Lenharth [Sat, 12 Nov 2005 19:06:28 +0000 (19:06 +0000)]
fix more regressions

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

18 years agofix READCYCLECOUNTER
Andrew Lenharth [Sat, 12 Nov 2005 19:04:09 +0000 (19:04 +0000)]
fix READCYCLECOUNTER

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

18 years agothis is no apparently passing on alpha
Chris Lattner [Sat, 12 Nov 2005 18:35:13 +0000 (18:35 +0000)]
this is no apparently passing on alpha

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

18 years agotrivial cleanup
Chris Lattner [Sat, 12 Nov 2005 18:34:09 +0000 (18:34 +0000)]
trivial cleanup

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

18 years agoFix reading LLVM 1.3 bc files.
Chris Lattner [Sat, 12 Nov 2005 18:31:54 +0000 (18:31 +0000)]
Fix reading LLVM 1.3 bc files.

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

18 years agoregenerate
Chris Lattner [Sat, 12 Nov 2005 18:22:38 +0000 (18:22 +0000)]
regenerate

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

18 years agorefactor grammar to eliminate shift-reduce conflict. Move alignment checking
Chris Lattner [Sat, 12 Nov 2005 18:21:21 +0000 (18:21 +0000)]
refactor grammar to eliminate shift-reduce conflict.  Move alignment checking
code out of all of the clients and into OptAlign/OptCAlign

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

18 years agoShrink the Type class from 32 to 28 bytes on Darwin (which has silly 32-bit
Chris Lattner [Sat, 12 Nov 2005 10:07:47 +0000 (10:07 +0000)]
Shrink the Type class from 32 to 28 bytes on Darwin (which has silly 32-bit
bools).

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

18 years agoremove a dead method
Chris Lattner [Sat, 12 Nov 2005 08:42:30 +0000 (08:42 +0000)]
remove a dead method

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

18 years agoUnswitch a loop, add more assertions, eliminate use of removeUserFromConcrete.
Chris Lattner [Sat, 12 Nov 2005 08:39:48 +0000 (08:39 +0000)]
Unswitch a loop, add more assertions, eliminate use of removeUserFromConcrete.

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

18 years agoTiny speedup, improve comments and code organization.
Chris Lattner [Sat, 12 Nov 2005 08:22:41 +0000 (08:22 +0000)]
Tiny speedup, improve comments and code organization.

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

18 years agoDescribe section name encoding
Chris Lattner [Sat, 12 Nov 2005 01:46:21 +0000 (01:46 +0000)]
Describe section name encoding

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

18 years agoRead and write section info from/to .bc files
Chris Lattner [Sat, 12 Nov 2005 01:33:40 +0000 (01:33 +0000)]
Read and write section info from/to .bc files

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

18 years agoWrap long line.
Jeff Cohen [Sat, 12 Nov 2005 01:01:50 +0000 (01:01 +0000)]
Wrap long line.

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