diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-08-16 03:19:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-08-16 03:19:19 +0000 |
commit | b7ec246872b412f0e7bb9e93eacfd78cfa6adfb3 (patch) | |
tree | 03d87c2a2a8966f8fa3652531269a98558147584 /lib/CodeGen/CodeGenFunction.h | |
parent | 54d19091a809d30a5e6e352fda53377d69ebda66 (diff) |
Add NeXT runtime support for generating methods.
Change CodeGenFunction::EmitParmDecl to take either a ParmVarDecl or an
ImplicitParamDecl.
Drop hasAggregateLLVMType from CodeGenModule.cpp (use version in
CodeGenFunction).
Change the Objective-C method generation to use EmitParmDecl for
implicit parameters.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index b595363ff0..e4061ec4f2 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -298,6 +298,8 @@ public: const llvm::Type *ConvertType(QualType T); + /// LoadObjCSelf - Load the value of self. This function is only + /// valid while generating code for an Objective-C method. llvm::Value *LoadObjCSelf(); /// isObjCPointerType - Return true if the specificed AST type will map onto @@ -368,7 +370,9 @@ public: void EmitBlockVarDecl(const VarDecl &D); void EmitLocalBlockVarDecl(const VarDecl &D); void EmitStaticBlockVarDecl(const VarDecl &D); - void EmitParmDecl(const ParmVarDecl &D, llvm::Value *Arg); + + /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl. + void EmitParmDecl(const VarDecl &D, llvm::Value *Arg); //===--------------------------------------------------------------------===// // Statement Emission |