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
/
SelectionDAG
/
CallingConvLower.cpp
Age
Commit message (
Expand
)
Author
2010-07-07
Move CallingConvLower.cpp out of the SelectionDAG directory.
Dan Gohman
2010-07-06
Add versions of OutputArgReg, AnalyzeReturn, and AnalyzeCallOperands
Dan Gohman
2010-01-05
Change errs() to dbgs().
David Greene
2009-11-07
Add code to check at SelectionDAGISel::LowerArguments time to see if return v...
Kenneth Uildriks
2009-09-02
Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson.
Sandeep Patel
2009-08-23
Change Pass::print to take a raw ostream instead of std::ostream,
Chris Lattner
2009-08-10
Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...
Owen Anderson
2009-08-05
Major calling convention code refactoring.
Dan Gohman
2009-07-22
Get rid of the Pass+Context magic.
Owen Anderson
2009-07-14
llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.
Torok Edwin
2009-07-11
Convert more assert(0)+abort() -> LLVM_UNREACHABLE,
Torok Edwin
2009-07-09
Thread LLVMContext through MVT and related parts of SDISel.
Owen Anderson
2009-03-31
Minor top-level comment fix.
Dan Gohman
2008-09-26
Add "inreg" field to CallSDNode (doesn't increase
Dale Johannesen
2008-09-13
Define CallSDNode, an SDNode subclass for use with ISD::CALL.
Dan Gohman
2008-09-07
- Doh. Pass vector by value is bad.
Evan Cheng
2008-09-05
Add a variant of AnalyzeCallOperands that can be used by fast isel.
Evan Cheng
2008-07-11
Trim unnecessary #includes.
Dan Gohman
2008-06-30
Correct the allocation size for CCState's UsedRegs member, which
Dan Gohman
2008-06-06
Wrap MVT::ValueType in a struct to get type safety
Duncan Sands
2008-03-21
Introduce a new node for holding call argument
Duncan Sands
2008-03-10
Increase ISD::ParamFlags to 64 bits. Increase the ByValSize
Dale Johannesen
2008-02-10
Rename MRegisterInfo to TargetRegisterInfo.
Dan Gohman
2008-01-15
Oops. Forgot to commit this.
Evan Cheng
2008-01-15
ByVal stack slot alignment should be at least as large as pointer ABI alignment.
Evan Cheng
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-08-10
propagate struct size and alignment of byval arguments to the DAG
Rafael Espindola
2007-06-19
add isVarArg to CCState
Chris Lattner
2007-02-28
add methods for analysis of call results and return nodes.
Chris Lattner
2007-02-28
add methods to analyze calls and formals.
Chris Lattner
2007-02-27
Minor refactoring of CC Lowering interfaces
Chris Lattner
2007-02-27
move CC Lowering stuff to its own public interface
Chris Lattner