- 0747baa clarify that byval is valid for any pointer argument. by Chris Lattner · 18 years ago
- 6bfa8a1 Rename CCIfStruct to CCIfByVal and CCStructAssign to CCPassByVal. Remove unused parameters of CCStructAssign and add size and alignment requirement info. by Evan Cheng · 18 years ago
- bdfd5ef Both x86-32 and x86-64 handle byval parameter attributes. by Evan Cheng · 18 years ago
- c67e6e8 ByVal stack slot alignment should be at least as large as pointer ABI alignment. by Evan Cheng · 18 years ago
- 5daafa9 Revert my last commit. Not needed. by Evan Cheng · 18 years ago
- 15ea48c Simplify CallInst::hasByValArgument using a new method. by Duncan Sands · 18 years ago
- b0c9b93 I noticed that the trampoline straightening transformation could by Duncan Sands · 18 years ago
- 459525d don't create the post-ra scheduler unless it is enabled. by Chris Lattner · 18 years ago
- a6c3f80 remove dead #include by Chris Lattner · 18 years ago
- 3d64f1c Need a space to separate Make options. by Evan Cheng · 18 years ago
- 02e30d7 This test is now the same as byval-1.ll, so remove it. by Duncan Sands · 18 years ago
- 559ad3c Test that byval cannot be used with pointers to types with no size. by Duncan Sands · 18 years ago
- d6a844c We now allow byval on fairly general pointer types. by Duncan Sands · 18 years ago
- 3cc8384 Improve the FP stackifier to decide all on its own whether by Chris Lattner · 18 years ago
- 42725e7 Simplify code. by Evan Cheng · 18 years ago
- 941db49 Fix the miscompilation of MiBench/consumer-lame that was exposed by Evan's by Chris Lattner · 18 years ago
- 6a93fc0 The isNotSuitableForSRA property is now dead, don't compute it. by Chris Lattner · 18 years ago
- 727c210 Change SRAGlobal to not depend on isNotSuitableForSRA, which makes it very by Chris Lattner · 18 years ago
- 58e44f4 Make the 'shrink global to bool' optimization more self contained, and thus by Chris Lattner · 18 years ago
- 37ac608 Turn a memcpy from a double* into a load/store of double instead of by Chris Lattner · 18 years ago
- f497b02 factor memcpy/memmove simplification out to its own SimplifyMemTransfer by Chris Lattner · 18 years ago
- 88b3974 simplify some code. If we can infer alignment for source and dest that are by Chris Lattner · 18 years ago
- 6d0339d simplify some code by adding a InsertBitCastBefore method, by Chris Lattner · 18 years ago
- 9e9cf0c Whitespace tweak. by Duncan Sands · 18 years ago
- a41d719 Remove the assumption that byval has been applied to a pointer to a struct. by Duncan Sands · 18 years ago
- 421d1c9 Allow the byval attribute for pointers to any type with by Duncan Sands · 18 years ago
- ee2b7a4 Fix PR1907, a nasty miscompilation because instcombine didn't by Chris Lattner · 18 years ago
- 1fac17f Check that nested functions don't get pointless static chains. by Duncan Sands · 18 years ago
- e3a8830 Small simplification. by Duncan Sands · 18 years ago
- e1e520f When turning a call to a bitcast function into a direct call, by Duncan Sands · 18 years ago
- 4db8f85 new testcase for rdar://5685492 by Chris Lattner · 18 years ago
- 3f73280 improve cygwin compatibility, patch by Sam Bishop by Chris Lattner · 18 years ago
- 65844fb clarify a note by Chris Lattner · 18 years ago
- f4a5498 Add hasByValArgument() to test if a call instruction has byval argument(s). by Evan Cheng · 18 years ago
- 92938b7 we don't have to make an explicit copy of a byval argument when by Chris Lattner · 18 years ago
- 7723ab3 Indirect call with byval parameter requires a cast first. by Evan Cheng · 18 years ago
- cfad1b4 Be more liberal in what parameter attributes are by Duncan Sands · 18 years ago
- 120d053 Allow clients to specify the inline threshold when creating by Chris Lattner · 18 years ago
- d3f6a8a Add support for NetBSD, patch by Krister Walfridsson! by Chris Lattner · 18 years ago
- e04c90b Add -disable-lto optimization. by Evan Cheng · 18 years ago
- a3554a4 this actually does pass with 4.0 by Chris Lattner · 18 years ago
- 8e5712b Code clean up. by Evan Cheng · 18 years ago
- 01b8fcc ByVal arguments are passed on stack. Make sure to allocate a slot using size and alignment information on the parameter attribute. by Evan Cheng · 18 years ago
- 144ad58 fix a wordo that gordon noticed :) by Chris Lattner · 18 years ago
- 828bb6c Any x86 instruction that reads from an invariant location is invariant. by Chris Lattner · 18 years ago
- aad193a implement support for sinking a load out the bottom of a block that by Chris Lattner · 18 years ago
- 2769f6f remove some incorrect classof's. by Chris Lattner · 18 years ago
- bfc5ae6 When DAE drops the varargs part of a function, ensure any by Duncan Sands · 18 years ago
- 3d79478 More cbe byval fixes. by Evan Cheng · 18 years ago
- 48e1dce llvm-g++ 4.0 has completely different code for this warning, just xfail it. by Chris Lattner · 18 years ago
- 28123d7 new testcase by Chris Lattner · 18 years ago
- 623a389 Do not allow attributes beyond a function's last by Duncan Sands · 18 years ago
- 10603e0 Teach argpromote to ruthlessly hack small byval structs when it can by Chris Lattner · 18 years ago
- 8bc16f0 Two occurrences on one line count as one... by Duncan Sands · 18 years ago
- eb82470 If there are attributes on the varargs part of a call, don't discard them. by Duncan Sands · 18 years ago
- 497e888 More CellSPU refinements: by Scott Michel · 18 years ago
- ef68e75 Disable for now. by Dale Johannesen · 18 years ago
- e027efa Use smallptrset instead of std::set for efficiency. by Chris Lattner · 18 years ago
- 170b181 a byval argument is guaranteed to be valid to load. by Chris Lattner · 18 years ago
- 40c14be Update this code to use eraseFromParent where possible. Compute by Chris Lattner · 18 years ago
- f157701 replace a loop with a constant time check. by Chris Lattner · 18 years ago
- 6e8410a another minor datastructure tweak. by Chris Lattner · 18 years ago
- a10145f start using smallvector to avoid vector heap thrashing. by Chris Lattner · 18 years ago
- 8874628 add operator==/!= to smallvector. by Chris Lattner · 18 years ago
- 5080f4d rename MachineInstr::setInstrDescriptor -> setDesc by Chris Lattner · 18 years ago
- f9b3f37 remove xchg and shift-reg-by-1 instructions, which are dead. by Chris Lattner · 18 years ago
- 047ad94 add a note, remove a done deed. by Chris Lattner · 18 years ago
- a51cf0f hrm - correct spelling. by Arnold Schwaighofer · 18 years ago
- c8ab8cd Improve tail call optimized call's argument lowering. Before this by Arnold Schwaighofer · 18 years ago
- 719eb02 Correct a copy and paste error. by Arnold Schwaighofer · 18 years ago
- 588c6f8 Some C backend ByVal parameter attribute support. Not yet complete. by Evan Cheng · 18 years ago
- 90e9d4e Rename Int_CVTSI642SSr* to Int_CVTSI2SS64r* for naming consistency and remove unused instructions. by Evan Cheng · 18 years ago
- a731c9f more flags set right by Chris Lattner · 18 years ago
- f77e037 add some missing flags. by Chris Lattner · 18 years ago
- 3dab223 don't include loopinfo.h from this file. by Chris Lattner · 18 years ago
- fadcd4e Move typedef of loop to top of the file where it is more obvious. by Chris Lattner · 18 years ago
- 131bd2e Fix 80 col violations by Chris Lattner · 18 years ago
- 47507de document the byval parameter attribute. by Chris Lattner · 18 years ago
- 497b7e9 add some notes. by Chris Lattner · 18 years ago
- c93adca When inlining a functino with a byval argument, make an explicit by Chris Lattner · 18 years ago
- 681d2b8 A couple of obvious off-by-one bugs. by Evan Cheng · 18 years ago
- 9de5d0d More CellSPU refinement and progress: by Scott Michel · 18 years ago
- c37ab63 Allow parameter attributes on varargs function parameters. by Evan Cheng · 18 years ago
- 12591d7 Weak zeroes don't go in bss on Darwin. by Dale Johannesen · 18 years ago
- c7406ae Weak things initialized to 0 don't go in bss on Darwin. by Dale Johannesen · 18 years ago
- a22edc8 Simplify the side effect stuff a bit more and make licm/sinking by Chris Lattner · 18 years ago
- 2445888 Clamp down on sinking of lots of instructions. by Chris Lattner · 18 years ago
- b38bec2 IMPLICIT_USE and IMPLICIT_DEF are dead, remove them. by Chris Lattner · 18 years ago
- 8372601 add a note by Chris Lattner · 18 years ago
- 007f984 Output sinl for a long double FSIN node, not sin. by Duncan Sands · 18 years ago
- 8480293 Only remat loads from immutable stack slots. by Evan Cheng · 18 years ago
- a07cec9 Simplify some code. by Evan Cheng · 18 years ago
- ba7e756 Start inferring side effect information more aggressively, and fix many bugs in the by Chris Lattner · 18 years ago
- 1778a15 Clearify the meaning of immutable StackObject. by Evan Cheng · 18 years ago
- 811281e Fix a crash on code like: let x = 1 {x by Chris Lattner · 18 years ago
- 36fe6d2 rename X86InstrX86-64.td -> X86Instr64bit.td by Chris Lattner · 18 years ago
- b8f217f add SDNPSideEffect node property declaration by Chris Lattner · 18 years ago
- dd41527 remove explicit sets of 'neverHasSideEffects' that can now be by Chris Lattner · 18 years ago
- 214884b if an instr lacks a pattern, assume it has side effects (unless never has s-e is true). by Chris Lattner · 18 years ago
- bc0b9f7 start inferring 'no side effects'. by Chris Lattner · 18 years ago