index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Target
/
X86
/
X86FrameLowering.cpp
Age
Commit message (
Expand
)
Author
2011-10-26
This commit introduces two fake instructions MORESTACK_RET and
Rafael Espindola
2011-10-18
Fix a bunch of unused variable warnings when doing a release
Duncan Sands
2011-10-13
More closely follow libgcc, which has code after the `ret' instruction to
Bill Wendling
2011-10-13
Should not add instructions to a BB after a return instruction. The machine i...
Bill Wendling
2011-09-24
Only run MF.verify() with EXPENSIVE_CHECKS=1.
Jakob Stoklund Olesen
2011-09-06
Reenable compact unwind by default. However, also emit the old version of unwind
Bill Wendling
2011-09-02
Revert r138826 until PR10834 can be fixed.
Bill Wendling
2011-08-31
Spelling and grammar fixes to problems found by Duncan.
Rafael Espindola
2011-08-31
Make sure we don't crash when -miphoneos-version-min is specified on x86. Ho...
Eli Friedman
2011-08-30
Fix off-by-one error Benjamin noticed.
Bill Wendling
2011-08-30
Enable compact unwind info by default. This only applies to Darwin when CFI is
Bill Wendling
2011-08-30
Emit segmented-stack specific code into function prologues for
Rafael Espindola
2011-08-12
findDeadCallerSavedReg fix: Missing NULL terminator in register arrays.
Andrew Trick
2011-07-26
The compact unwinding offsets are divided by 8 on 64-bit machines.
Bill Wendling
2011-07-25
Update the comment. This feature is available only on Darwin at the moment. T...
Bill Wendling
2011-07-25
Changed disabled code into a flag.
Bill Wendling
2011-07-25
Remove dead variable.
Bill Wendling
2011-07-25
After we've modified the prolog to save volatile registers, generate the compact
Bill Wendling
2011-07-21
Mark instructions which are part of the frame setup with the MachineInstr::Fr...
Bill Wendling
2011-07-20
Remove unused function.
Bill Wendling
2011-07-20
Remove the now defunct getCompactUnwindEncoding method from the frame lowerin...
Bill Wendling
2011-07-18
Move getInitialFrameState from TargetFrameInfo to MCAsmInfo (suggestions for
Evan Cheng
2011-07-14
* Redo the permutation encoding for frameless stacks to be more like what the
Bill Wendling
2011-07-13
Add code to handle a "frameless" unwind stack.
Bill Wendling
2011-07-13
Don't emit the FDE end label if the last thing emitted was a compact unwind and
Bill Wendling
2011-07-13
Assign variable before we test it.
Bill Wendling
2011-07-13
Fix obvious think-o.
Bill Wendling
2011-07-13
Clean up the handling of an EBP/RBP unwind frame pointer. In particular, don't
Bill Wendling
2011-07-07
Use ArrayRef instead of a std::vector&.
Bill Wendling
2011-07-07
Add a target hook to encode the compact unwind information.
Bill Wendling
2011-06-14
Fit banner in 80-col and adjust whitespace. No functionality changes.
Nick Lewycky
2011-06-12
Put FrameSetup flag on x86 instructions that set up the call frame. No
Charles Davis
2011-05-25
Replace the -unwind-tables option with a per function flag. This is more
Rafael Espindola
2011-04-26
Print all the moves at a given label instead of just the first one.
Rafael Espindola
2011-04-15
Add 129518 back with a fix for when we are producing eh just because of debug...
Rafael Espindola
2011-04-15
Fix a ton of comment typos found by codespell. Patch by
Chris Lattner
2011-04-15
Revert r129518, "Change ELF systems to use CFI for producing the EH tables. T...
NAKAMURA Takumi
2011-04-14
Change ELF systems to use CFI for producing the EH tables. This reduces the
Rafael Espindola
2011-03-24
Target/X86: [PR8777][PR8778] Tweak alloca/chkstk for Windows targets.
NAKAMURA Takumi
2011-02-27
Target/X86: Always emit "push/pop GPRs" in prologue/epilogue and emit "spill/...
NAKAMURA Takumi
2011-02-05
Target/X86: Tweak allocating shadow area (aka home) on Win64. It must be enou...
NAKAMURA Takumi
2011-02-05
Target/X86: Fix whitespace.
NAKAMURA Takumi
2011-02-01
Test commit - fix a double 'should' in a comment.
Carl Norum
2011-02-01
Patches to build EFI with Clang/LLVM. By Carl Norum.
Evan Cheng
2011-01-14
Cleanup
Anton Korobeynikov
2011-01-13
Fix a few more places that should use MBB::getLastNonDebugInstr().
Jakob Stoklund Olesen
2011-01-13
Teach frame lowering to ignore debug values after the terminators.
Jakob Stoklund Olesen
2011-01-10
Rename TargetFrameInfo into TargetFrameLowering. Also, put couple of FIXMEs a...
Anton Korobeynikov