summaryrefslogtreecommitdiffstats
path: root/llvm
Commit message (Collapse)AuthorAgeFilesLines
...
* Typo. It's checking if V is multiple of 4, not multiple of 3. :-)Evan Cheng2007-05-031-1/+1
| | | | llvm-svn: 36663
* Drop 'const'Devang Patel2007-05-03150-312/+312
| | | | llvm-svn: 36662
* New test.Devang Patel2007-05-031-0/+23
| | | | llvm-svn: 36661
* match a reassociated form of fnmul. This implements CodeGen/ARM/fnmul.llChris Lattner2007-05-032-2/+9
| | | | llvm-svn: 36660
* match a reassociated form of fnmulChris Lattner2007-05-031-0/+11
| | | | llvm-svn: 36659
* expose HonorSignDependentRoundingFPMathOption to .td filesChris Lattner2007-05-032-0/+6
| | | | llvm-svn: 36658
* Add a new option.Chris Lattner2007-05-032-4/+33
| | | | llvm-svn: 36657
* Non-algorithmic change. Moved definitions around into separate sectionsBill Wendling2007-05-021-1004/+1251
| | | | | | for SSE1, SSE2, SSE3, and SSSE3. llvm-svn: 36656
* Properly set arguments bitwidth of EHSELECT nodeAnton Korobeynikov2007-05-021-2/+2
| | | | llvm-svn: 36654
* Update.Bill Wendling2007-05-021-0/+27
| | | | llvm-svn: 36653
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-02150-313/+312
| | | | | | | Due to darwin gcc bug, one version of darwin linker coalesces static const int, which defauts PassID based pass identification. llvm-svn: 36652
* Disable RTTI handling until we're ready.Reid Spencer2007-05-021-1/+1
| | | | llvm-svn: 36651
* Add a rule to get the footprint of binaries and libraries.Reid Spencer2007-05-021-0/+14
| | | | llvm-svn: 36650
* Re-install patch to enable use of PassID.Devang Patel2007-05-023-35/+34
| | | | | | | I am preparing another patch to address the failure that prompted Chris to revert this patch earlier. llvm-svn: 36649
* Fix build error.Lauro Ramos Venancio2007-05-028-11/+14
| | | | llvm-svn: 36648
* Emit correct register move information in eh frames for X86. This allows ↵Anton Korobeynikov2007-05-022-8/+56
| | | | | | | | Shootout-C++/except to pass on x86/linux with non-llvm-compiled (e.g. "native") unwind runtime. llvm-svn: 36647
* Emit correct DWARF reg # for RA (return address) registerAnton Korobeynikov2007-05-022-1/+7
| | | | llvm-svn: 36646
* Test that TREE_CONSTANT is being set correctly.Duncan Sands2007-05-022-0/+17
| | | | llvm-svn: 36645
* Test that inline assembler compiles (llvm-gcc added an extra "uses" parameterDuncan Sands2007-05-021-0/+6
| | | | | | to ASM_EXPR). llvm-svn: 36644
* update to reflect realityChris Lattner2007-05-021-1/+1
| | | | llvm-svn: 36643
* add reader logic for terminator instrs.Chris Lattner2007-05-023-10/+93
| | | | llvm-svn: 36642
* add reader support for a bunch of new instructionsChris Lattner2007-05-021-14/+90
| | | | llvm-svn: 36641
* read a few instructions, fix some bugs. This is enough to be able to roundChris Lattner2007-05-021-15/+38
| | | | | | | | | | | | | | trip function bodies like this: define <2 x i64> @foo(<2 x i64> %x, <2 x i64> %y) { %tmp4 = bitcast <2 x i64> %y to <8 x i16> ; <<8 x i16>> [#uses=1] %tmp5 = bitcast <2 x i64> %x to <8 x i16> ; <<8 x i16>> [#uses=1] %tmp = add <8 x i16> %tmp5, %tmp4 ; <<8 x i16>> [#uses=1] %tmp6 = bitcast <8 x i16> %tmp to <2 x i64> ; <<2 x i64>> [#uses=1] ret <2 x i64> %tmp6 } llvm-svn: 36640
* use the correct code for binop instrsChris Lattner2007-05-021-1/+1
| | | | llvm-svn: 36639
* revert enough of devang's recent patches to get the tree basically working againChris Lattner2007-05-023-35/+36
| | | | llvm-svn: 36638
* disable this assertion as a hack to get the build more unbroken :(Chris Lattner2007-05-021-1/+1
| | | | llvm-svn: 36637
* Make sign extension work correctly for unusual bit widths.Reid Spencer2007-05-021-28/+100
| | | | llvm-svn: 36635
* Add some support for (Darwin) code-generating directives in getInlineAsmLength.Dale Johannesen2007-05-022-18/+115
| | | | | | Support is incomplete, but more accurate than gcc's. llvm-svn: 36634
* Fix couple of bugs connected with eh info:Anton Korobeynikov2007-05-014-24/+46
| | | | | | | 1. Correct output offsets on Linux 2. Fix "style" of personality function. It shouldn't be indirect. llvm-svn: 36633
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-01154-129/+687
| | | | llvm-svn: 36632
* Update doc to reflect changes I am about to install to fix PR 888.Devang Patel2007-05-011-0/+19
| | | | llvm-svn: 36631
* Doh. PC displacement is between the constantpool and the add instruction.Evan Cheng2007-05-011-1/+1
| | | | llvm-svn: 36630
* Test handling of TRY_CATCH_EXPRs for which the handler is a sequence ofDuncan Sands2007-05-011-0/+12
| | | | | | ordinary statements, rather than a list of CATCH_EXPRs or an EH_FILTER_EXPR. llvm-svn: 36629
* Use correct PC symbolAnton Korobeynikov2007-05-011-0/+2
| | | | llvm-svn: 36628
* Adjust correct EH-related sectionsAnton Korobeynikov2007-05-011-0/+4
| | | | llvm-svn: 36627
* eliminateFrameIndex() change.Evan Cheng2007-05-0112-14/+25
| | | | llvm-svn: 36626
* If call frame is not part of stack frame and no dynamic alloc, ↵Evan Cheng2007-05-012-18/+49
| | | | | | eliminateFrameIndex() must adjust SP offset with size of call frames. llvm-svn: 36625
* Pass call frame setup SP adjustment along to eliminateFrameIndex().Evan Cheng2007-05-011-5/+6
| | | | llvm-svn: 36624
* Add SPAdj parameter to account for call frame setup SP adjustment.Evan Cheng2007-05-011-3/+4
| | | | llvm-svn: 36623
* Forgot about chain result; also UNDEF cannot have multiple values.Evan Cheng2007-05-011-12/+12
| | | | llvm-svn: 36622
* fix build with non-buggy compilersChris Lattner2007-05-011-10/+11
| | | | llvm-svn: 36621
* handle function-level forward references, read binops.Chris Lattner2007-05-012-20/+145
| | | | llvm-svn: 36620
* A bit of feedback from Chris that I missed; error rather than asserting.Nate Begeman2007-05-011-2/+5
| | | | llvm-svn: 36619
* llvm bug #1350, parts 1, 2, and 3.Nate Begeman2007-05-016-27/+133
| | | | llvm-svn: 36618
* implement materializeModule, force deallocation of vector memory when weChris Lattner2007-05-012-15/+107
| | | | | | are done with them, start implementing ParseFunctionBody llvm-svn: 36617
* several bitfixes to JumpToBitChris Lattner2007-05-011-4/+7
| | | | llvm-svn: 36616
* The stream to read from is now an ivarChris Lattner2007-05-012-20/+18
| | | | llvm-svn: 36615
* implement scafolding for lazy deserialization of function bodiesChris Lattner2007-05-012-7/+85
| | | | llvm-svn: 36614
* add JumpToBit, an explicit init method, and a default ctor.Chris Lattner2007-05-011-2/+28
| | | | llvm-svn: 36613
* Split target dependent test portions to target-specific directories.Reid Spencer2007-05-013-4/+314
| | | | llvm-svn: 36612
OpenPOWER on IntegriCloud