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
/
CodeGen
/
StackProtector.cpp
Age
Commit message (
Expand
)
Author
2008-11-07
- Modify the stack protector algorithm so that the stack slot is allocated in
Bill Wendling
2008-11-06
Remove unneeded header file.
Bill Wendling
2008-11-06
Don't build a vector of returns. Just modify the Function in the loop.
Bill Wendling
2008-11-06
The size limit is for individual arrays. So if any array has more than 8 bytes
Bill Wendling
2008-11-06
- Rename stackprotector_{prologue,epilogue} to stackprotector_{create,check}.
Bill Wendling
2008-11-06
Adjust the stack protector heuristic to care about only arrays or calls to
Bill Wendling
2008-11-06
Implement the stack protector stack accesses via intrinsics:
Bill Wendling
2008-11-05
Remove dead variable.
Bill Wendling
2008-11-05
Simplify the allocated size calculation.
Bill Wendling
2008-11-05
Fix comment
Bill Wendling
2008-11-05
Some code simplification. It now doesn't generate a prologue if the epilogue
Bill Wendling
2008-11-04
Small simplification of the stack guard type.
Bill Wendling
2008-11-04
- Add a "getOrInsertGlobal" method to the Module class. This acts similarly to
Bill Wendling
2008-11-04
Update in response to feedback from Chris:
Bill Wendling
2008-11-04
Initial checkin for stack protectors. Here's what it does:
Bill Wendling