summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/CallingConvLower.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-06 15:39:54 +0000
committerDan Gohman <gohman@apple.com>2010-07-06 15:39:54 +0000
commitaa8c19405ac3891ee7fbea1a509c6774ca7a5b59 (patch)
tree333c1ce28bb8b788f4a47911e115075293bade74 /include/llvm/CodeGen/CallingConvLower.h
parent802e28a8d78ee65d8be1e6d68cc98c7011f763d9 (diff)
downloadllvm-aa8c19405ac3891ee7fbea1a509c6774ca7a5b59.tar.gz
llvm-aa8c19405ac3891ee7fbea1a509c6774ca7a5b59.tar.bz2
llvm-aa8c19405ac3891ee7fbea1a509c6774ca7a5b59.tar.xz
Add versions of OutputArgReg, AnalyzeReturn, and AnalyzeCallOperands
which do not depend on SelectionDAG. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/CallingConvLower.h')
-rw-r--r--include/llvm/CodeGen/CallingConvLower.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/CallingConvLower.h b/include/llvm/CodeGen/CallingConvLower.h
index 0e60c963c0..71b246c0c9 100644
--- a/include/llvm/CodeGen/CallingConvLower.h
+++ b/include/llvm/CodeGen/CallingConvLower.h
@@ -185,6 +185,8 @@ public:
/// incorporating info about the result values into this state.
void AnalyzeReturn(const SmallVectorImpl<ISD::OutputArg> &Outs,
CCAssignFn Fn);
+ void AnalyzeReturn(const SmallVectorImpl<ISD::OutputArgReg> &Outs,
+ CCAssignFn Fn);
/// CheckReturn - Analyze the return values of a function, returning
/// true if the return can be performed without sret-demotion, and
@@ -197,6 +199,8 @@ public:
/// incorporating info about the passed values into this state.
void AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArg> &Outs,
CCAssignFn Fn);
+ void AnalyzeCallOperands(const SmallVectorImpl<ISD::OutputArgReg> &Outs,
+ CCAssignFn Fn);
/// AnalyzeCallOperands - Same as above except it takes vectors of types
/// and argument flags.