| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add missing break statements. Align UNWIND_INFO and RUNTIME_FUNCTION structs | Charles Davis | 2011-05-27 | 1 | -0/+6 |
| | | | | | | | | | to 4 bytes. I'm surprised no one caught the missing break statements. llvm-svn: 132176 | ||||
| * | My attempt at fixing the leak reported by the valgrind buildbots. Valgrind will | Charles Davis | 2011-05-27 | 1 | -2/+4 |
| | | | | | | | | | still report leaks, but they're spurious now. Valgrind cannot peer into std::vector objects--or any dynamic array, for that matter--because it doesn't know how big the array is. llvm-svn: 132174 | ||||
| * | Fix inverted conditional in SaveReg and SaveXMM. Err when the frame pointer is | Charles Davis | 2011-05-27 | 1 | -3/+7 |
| | | | | | | | | already defined, and err when the PushMachFrame operation isn't the first operation (if specified at all). llvm-svn: 132173 | ||||
| * | One more debug line number miss in instcombine (although the code in ↵ | Eli Friedman | 2011-05-27 | 1 | -5/+1 |
| | | | | | | | question isn't actually in instcombine). llvm-svn: 132170 | ||||
| * | Fix copy+pastos. | Dan Gohman | 2011-05-27 | 1 | -2/+2 |
| | | | | | llvm-svn: 132168 | ||||
| * | Final step of instcombine debuginfo; switch a couple more places over to ↵ | Eli Friedman | 2011-05-27 | 5 | -16/+34 |
| | | | | | | | InsertNewInstWith, and use setDebugLoc for the cases which can't be easily handled by the automated mechanisms. llvm-svn: 132167 | ||||
| * | Fix warning about || and && without explicit grouping. | Chandler Carruth | 2011-05-26 | 1 | -2/+2 |
| | | | | | | | | | This looks like it flagged an actual bug. Devang, please review. I added the parentheses that change behavior, but make the behavior more closely match commit log's intent. llvm-svn: 132165 | ||||
| * | Do not insert anything after terminator. | Devang Patel | 2011-05-26 | 1 | -1/+2 |
| | | | | | llvm-svn: 132164 | ||||
| * | Renamed llvm.x86.sse42.crc32 intrinsics; crc64 doesn't exist. | Chad Rosier | 2011-05-26 | 8 | -48/+96 |
| | | | | | | | | crc32.[8|16|32] have been renamed to .crc32.32.[8|16|32] and crc64.[8|16|32] have been renamed to .crc32.64.[8|64]. llvm-svn: 132163 | ||||
| * | Comment cleanup. | Eric Christopher | 2011-05-26 | 1 | -2/+2 |
| | | | | | llvm-svn: 132162 | ||||
| * | Do not move DBG_VALUE in middle of PHI nodes. | Devang Patel | 2011-05-26 | 1 | -1/+4 |
| | | | | | llvm-svn: 132161 | ||||
| * | If llvm.dbg.value and the value instruction it refers to are far apart then ↵ | Devang Patel | 2011-05-26 | 1 | -1/+13 |
| | | | | | | | iSel may not be able to find corresponding Node for llvm.dbg.value during DAG construction. Make iSel's life easier by removing this distance between llvm.dbg.value and its value instruction. llvm-svn: 132151 | ||||
| * | Add comment. | Devang Patel | 2011-05-26 | 1 | -0/+3 |
| | | | | | llvm-svn: 132149 | ||||
| * | During branch folding avoid inserting redundant DBG_VALUE machine instructions. | Devang Patel | 2011-05-26 | 2 | -0/+105 |
| | | | | | llvm-svn: 132148 | ||||
| * | Use MachineFrameInfo::hasCalls instead of MipsFunctionInfo::hasCall to check if | Akira Hatanaka | 2011-05-26 | 3 | -10/+2 |
| | | | | | | | a function has any function calls. llvm-svn: 132140 | ||||
| * | Fix some dwarf register numbers. | Rafael Espindola | 2011-05-26 | 3 | -3/+3 |
| | | | | | llvm-svn: 132136 | ||||
| * | Make few ExecutionEngine tests XFAIL for ARM, since ExecutionEngine is ↵ | Galina Kistanova | 2011-05-26 | 15 | -0/+31 |
| | | | | | | | broken for ARM, please remove the following XFAIL when it will be fixed. llvm-svn: 132135 | ||||
| * | Fix LTO builds with xcode 4. | Rafael Espindola | 2011-05-26 | 1 | -1/+11 |
| | | | | | llvm-svn: 132132 | ||||
| * | Add support for C++ exception handling. | Akira Hatanaka | 2011-05-26 | 7 | -21/+76 |
| | | | | | llvm-svn: 132131 | ||||
| * | Reorganize these slightly according to operand type. | Eric Christopher | 2011-05-26 | 1 | -2/+2 |
| | | | | | llvm-svn: 132128 | ||||
| * | Set HasSetDirective to true. | Akira Hatanaka | 2011-05-26 | 1 | -1/+0 |
| | | | | | llvm-svn: 132127 | ||||
| * | Fix test on Windows. | Eli Friedman | 2011-05-26 | 1 | -2/+2 |
| | | | | | llvm-svn: 132126 | ||||
| * | Revert r132111. I built Release (without Asserts), so I didn't know about the | Charles Davis | 2011-05-26 | 1 | -2/+0 |
| | | | | | | | assert that prevented setting alignment on section creation. llvm-svn: 132113 | ||||
| * | Fix definitions of UOP_SaveXMM128, UOP_SaveXMM128Big, and UOP_PushMachFrame | Charles Davis | 2011-05-26 | 1 | -1/+1 |
| | | | | | | | to match Microsoft's definitions. llvm-svn: 132112 | ||||
| * | Align Win64 EH Table sections to 4 bytes. | Charles Davis | 2011-05-26 | 1 | -0/+2 |
| | | | | | llvm-svn: 132111 | ||||
| * | Add a test for the chained directives that I forgot last time. | Charles Davis | 2011-05-26 | 1 | -0/+3 |
| | | | | | llvm-svn: 132110 | ||||
| * | Fix MSVC warning regarding mkdir function usage. | Francois Pichet | 2011-05-26 | 1 | -0/+7 |
| | | | | | llvm-svn: 132109 | ||||
| * | Reverting 132105: it broke some LLVM-GCC DejaGNU tests. | Stuart Hastings | 2011-05-26 | 4 | -116/+15 |
| | | | | | llvm-svn: 132108 | ||||
| * | Mark tBX as an indirect branch rather than a return. | Cameron Zwarich | 2011-05-26 | 2 | -9/+9 |
| | | | | | llvm-svn: 132107 | ||||
| * | Test .seh_startchained and .seh_endchained parsing. | Charles Davis | 2011-05-26 | 3 | -15/+18 |
| | | | | | | | | | | | | Rework how the MCWin64EHUnwindInfo instances are stored. Fix issues with chained unwind areas exposed by the test that were related to this. The ChainedParent field had the wrong address, because when the chained unwind info was added, the addresses shifted around. Now we store the pointers to the structures, which are now allocated from the MC heap. llvm-svn: 132106 | ||||
| * | Correctly handle a one-word struct passed byval on x86_64. | Stuart Hastings | 2011-05-26 | 4 | -15/+116 |
| | | | | | | | rdar://problem/6920088 llvm-svn: 132105 | ||||
| * | indvars: incremental fixes for -disable-iv-rewrite and testcases. | Andrew Trick | 2011-05-26 | 2 | -22/+138 |
| | | | | | | | | | Use a proper worklist for use-def traversal without holding onto an iterator. Now that we process all IV uses, we need complete logic for resusing existing derived IV defs. See HoistStep. llvm-svn: 132103 | ||||
| * | Add a RAGreedy::canEvict function. | Jakob Stoklund Olesen | 2011-05-25 | 1 | -4/+62 |
| | | | | | | | | | | | | | This doesn't change functionality (much), but it allows for a more fine-grained eviction policy. The current policy only compares spill weights, and that is not always the best thing to do. Spill weights are designed to serve linear scan, and they don't consider live range splitting. Add a mechanism so canEvict() can request that a live range be evicted and split/spilled. This is to avoid infinite eviction loops. llvm-svn: 132101 | ||||
| * | Rewrite fast-isel integer cast handling to handle more cases, and to be ↵ | Eli Friedman | 2011-05-25 | 5 | -59/+205 |
| | | | | | | | | | | | simpler and more consistent. The practical effects here are that x86-64 fast-isel can now handle trunc from i8 to i1, and ARM fast-isel can handle many more constructs involving integers narrower than 32 bits (including loads, stores, and many integer casts). rdar://9437928 . llvm-svn: 132099 | ||||
| * | Define WeakRefDirective. | Akira Hatanaka | 2011-05-25 | 2 | -0/+13 |
| | | | | | llvm-svn: 132098 | ||||
| * | PR9998: ashr exact %x, 31 is not equivalent to sdiv exact %x, -2147483648. | Eli Friedman | 2011-05-25 | 2 | -4/+20 |
| | | | | | llvm-svn: 132097 | ||||
| * | Remove unused statistical counter. | Devang Patel | 2011-05-25 | 1 | -57/+0 |
| | | | | | llvm-svn: 132087 | ||||
| * | Convert tBX_CALL / tBXr9_CALL to actual pseudoinstructions. | Cameron Zwarich | 2011-05-25 | 2 | -10/+24 |
| | | | | | llvm-svn: 132086 | ||||
| * | Add tests for .seh_setframe and .seh_handlerdata parsing. Fix issues with | Charles Davis | 2011-05-25 | 4 | -2/+40 |
| | | | | | | | | | | | them. I had to add a special SwitchSectionNoChange method to MCStreamer just for .seh_handlerdata. If this isn't OK, please let me know, and I'll find some other way to fix .seh_handlerdata streaming. llvm-svn: 132084 | ||||
| * | Clean up comment a bit. | Eric Christopher | 2011-05-25 | 1 | -2/+2 |
| | | | | | llvm-svn: 132083 | ||||
| * | Implement the 'm' modifier. Note that it only works for memory operands. | Eric Christopher | 2011-05-25 | 2 | -4/+25 |
| | | | | | | | Part of rdar://9119939 llvm-svn: 132081 | ||||
| * | Remove MipsTargetLowering::LowerFP_TO_SINT. Patterns for fp_to_sint have already | Akira Hatanaka | 2011-05-25 | 2 | -37/+0 |
| | | | | | | | been defined in MipsInstrFPU.td. llvm-svn: 132076 | ||||
| * | Custom-lower FCOPYSIGN nodes. | Akira Hatanaka | 2011-05-25 | 4 | -2/+117 |
| | | | | | llvm-svn: 132074 | ||||
| * | Prepare ARMFastISel::SelectSIToFP for getRegForValue returning registers for ↵ | Eli Friedman | 2011-05-25 | 1 | -0/+4 |
| | | | | | | | i8 and i16 values. llvm-svn: 132073 | ||||
| * | Simplify r132022 based on Cameron's feedback. | Evan Cheng | 2011-05-25 | 1 | -12/+5 |
| | | | | | llvm-svn: 132071 | ||||
| * | Update MaxCallFrameSize regardless of the relocation model selected. | Akira Hatanaka | 2011-05-25 | 1 | -11/+11 |
| | | | | | llvm-svn: 132070 | ||||
| * | Change initial value of MaxCallFrameSize. MipsFI::getMaxCallFrameSize() should | Akira Hatanaka | 2011-05-25 | 3 | -7/+7 |
| | | | | | | | return 0 if there are no function calls made. llvm-svn: 132065 | ||||
| * | Coding style fixes. Added comments. | Akira Hatanaka | 2011-05-25 | 2 | -23/+16 |
| | | | | | llvm-svn: 132063 | ||||
| * | Remove unused OpcodeMask enumerator. | Francois Pichet | 2011-05-25 | 1 | -1/+0 |
| | | | | | llvm-svn: 132062 | ||||
| * | Fix 3 MSVC warnings: | Francois Pichet | 2011-05-25 | 3 | -3/+3 |
| | | | | | | | | | 'void (__cdecl *)()' differs in parameter lists from 'void (__cdecl *)(void)' atexit really expects a "void f(void)" function. llvm-svn: 132061 | ||||

