diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-10 21:44:36 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-10 21:44:36 +0000 |
commit | e46506eaeac32f0d5b24550933720f32de583c73 (patch) | |
tree | e79be13abb48ad874a8422e259dbee458a328efa /clang/lib/CodeGen | |
parent | df15f13c34b2a49f5c358e62f4c947d22411643c (diff) | |
download | bcm5719-llvm-e46506eaeac32f0d5b24550933720f32de583c73.tar.gz bcm5719-llvm-e46506eaeac32f0d5b24550933720f32de583c73.zip |
Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes.
- Missed this file.
llvm-svn: 64238
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/ABIInfo.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/ABIInfo.h b/clang/lib/CodeGen/ABIInfo.h index a52ed8450fe..3de461242ab 100644 --- a/clang/lib/CodeGen/ABIInfo.h +++ b/clang/lib/CodeGen/ABIInfo.h @@ -21,6 +21,7 @@ namespace clang { // down. Fortunately CGFunctionInfo has no real tie to CodeGen. namespace CodeGen { class CGFunctionInfo; + class CodeGenFunction; } /* FIXME: All of this stuff should be part of the target interface @@ -116,6 +117,16 @@ namespace clang { virtual void computeInfo(CodeGen::CGFunctionInfo &FI, ASTContext &Ctx) const = 0; + + /// EmitVAArg - Emit the target dependent code to load a value of + /// \arg Ty from the va_list pointed to by \arg VAListAddr. + + // FIXME: This is a gaping layering violation if we wanted to drop + // the ABI information any lower than CodeGen. Of course, for + // VAArg handling it has to be at this level; there is no way to + // abstract this out. + virtual llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty, + CodeGen::CodeGenFunction &CGF) const = 0; }; } // end namespace clang |