aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-05 16:59:26 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-05 16:59:26 +0000
commit0a9e7c548fecba00b96212e1bbafc9fc8e59c6ff (patch)
treeb3a56a1480e9bea1f57141d256de0f99c0b18f03 /include
parentd105c3434c708ef9ccfa8c3e99861ffb05db1022 (diff)
downloadexternal_llvm-0a9e7c548fecba00b96212e1bbafc9fc8e59c6ff.zip
external_llvm-0a9e7c548fecba00b96212e1bbafc9fc8e59c6ff.tar.gz
external_llvm-0a9e7c548fecba00b96212e1bbafc9fc8e59c6ff.tar.bz2
Add a variant of AnalyzeCallOperands that can be used by fast isel.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/CallingConvLower.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/CallingConvLower.h b/include/llvm/CodeGen/CallingConvLower.h
index 2fda9e5..4bad588 100644
--- a/include/llvm/CodeGen/CallingConvLower.h
+++ b/include/llvm/CodeGen/CallingConvLower.h
@@ -145,6 +145,12 @@ public:
/// about the passed values into this state.
void AnalyzeCallOperands(SDNode *TheCall, CCAssignFn Fn);
+ /// AnalyzeCallOperands - Same as above except it takes vectors of types
+ /// and argument flags.
+ void AnalyzeCallOperands(SmallVectorImpl<MVT> ArgVTs,
+ SmallVectorImpl<ISD::ArgFlagsTy> &Flags,
+ CCAssignFn Fn);
+
/// AnalyzeCallResult - Analyze the return values of an ISD::CALL node,
/// incorporating info about the passed values into this state.
void AnalyzeCallResult(SDNode *TheCall, CCAssignFn Fn);