CodeGenFunction.h revision c28bbc2d2271aab6c5d79ef2758604221cd92a4b
1//===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This is the internal per-function state used for llvm translation.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef CLANG_CODEGEN_CODEGENFUNCTION_H
15#define CLANG_CODEGEN_CODEGENFUNCTION_H
16
17#include "clang/AST/Type.h"
18#include "clang/AST/ExprCXX.h"
19#include "clang/AST/ExprObjC.h"
20#include "clang/Basic/TargetInfo.h"
21#include "llvm/ADT/DenseMap.h"
22#include "llvm/ADT/SmallVector.h"
23#include "llvm/Support/ValueHandle.h"
24#include <map>
25#include "CodeGenModule.h"
26#include "CGBlocks.h"
27#include "CGBuilder.h"
28#include "CGCall.h"
29#include "CGCXX.h"
30#include "CGValue.h"
31
32namespace llvm {
33  class BasicBlock;
34  class LLVMContext;
35  class Module;
36  class SwitchInst;
37  class Value;
38}
39
40namespace clang {
41  class ASTContext;
42  class CXXDestructorDecl;
43  class Decl;
44  class EnumConstantDecl;
45  class FunctionDecl;
46  class FunctionProtoType;
47  class LabelStmt;
48  class ObjCContainerDecl;
49  class ObjCInterfaceDecl;
50  class ObjCIvarDecl;
51  class ObjCMethodDecl;
52  class ObjCImplementationDecl;
53  class ObjCPropertyImplDecl;
54  class TargetInfo;
55  class VarDecl;
56  class ObjCForCollectionStmt;
57  class ObjCAtTryStmt;
58  class ObjCAtThrowStmt;
59  class ObjCAtSynchronizedStmt;
60
61namespace CodeGen {
62  class CodeGenModule;
63  class CodeGenTypes;
64  class CGDebugInfo;
65  class CGFunctionInfo;
66  class CGRecordLayout;
67
68/// CodeGenFunction - This class organizes the per-function state that is used
69/// while generating LLVM code.
70class CodeGenFunction : public BlockFunction {
71  CodeGenFunction(const CodeGenFunction&); // DO NOT IMPLEMENT
72  void operator=(const CodeGenFunction&);  // DO NOT IMPLEMENT
73public:
74  CodeGenModule &CGM;  // Per-module state.
75  TargetInfo &Target;
76
77  typedef std::pair<llvm::Value *, llvm::Value *> ComplexPairTy;
78  CGBuilderTy Builder;
79
80  /// CurFuncDecl - Holds the Decl for the current function or ObjC method.
81  /// This excludes BlockDecls.
82  const Decl *CurFuncDecl;
83  /// CurCodeDecl - This is the inner-most code context, which includes blocks.
84  const Decl *CurCodeDecl;
85  const CGFunctionInfo *CurFnInfo;
86  QualType FnRetTy;
87  llvm::Function *CurFn;
88
89  /// ReturnBlock - Unified return block.
90  llvm::BasicBlock *ReturnBlock;
91  /// ReturnValue - The temporary alloca to hold the return value. This is null
92  /// iff the function has no return value.
93  llvm::Instruction *ReturnValue;
94
95  /// AllocaInsertPoint - This is an instruction in the entry block before which
96  /// we prefer to insert allocas.
97  llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
98
99  const llvm::Type *LLVMIntTy;
100  uint32_t LLVMPointerWidth;
101
102public:
103  /// ObjCEHValueStack - Stack of Objective-C exception values, used for
104  /// rethrows.
105  llvm::SmallVector<llvm::Value*, 8> ObjCEHValueStack;
106
107  /// PushCleanupBlock - Push a new cleanup entry on the stack and set the
108  /// passed in block as the cleanup block.
109  void PushCleanupBlock(llvm::BasicBlock *CleanupBlock);
110
111  /// CleanupBlockInfo - A struct representing a popped cleanup block.
112  struct CleanupBlockInfo {
113    /// CleanupBlock - the cleanup block
114    llvm::BasicBlock *CleanupBlock;
115
116    /// SwitchBlock - the block (if any) containing the switch instruction used
117    /// for jumping to the final destination.
118    llvm::BasicBlock *SwitchBlock;
119
120    /// EndBlock - the default destination for the switch instruction.
121    llvm::BasicBlock *EndBlock;
122
123    CleanupBlockInfo(llvm::BasicBlock *cb, llvm::BasicBlock *sb,
124                     llvm::BasicBlock *eb)
125      : CleanupBlock(cb), SwitchBlock(sb), EndBlock(eb) {}
126  };
127
128  /// PopCleanupBlock - Will pop the cleanup entry on the stack, process all
129  /// branch fixups and return a block info struct with the switch block and end
130  /// block.
131  CleanupBlockInfo PopCleanupBlock();
132
133  /// CleanupScope - RAII object that will create a cleanup block and set the
134  /// insert point to that block. When destructed, it sets the insert point to
135  /// the previous block and pushes a new cleanup entry on the stack.
136  class CleanupScope {
137    CodeGenFunction& CGF;
138    llvm::BasicBlock *CurBB;
139    llvm::BasicBlock *CleanupBB;
140
141  public:
142    CleanupScope(CodeGenFunction &cgf)
143      : CGF(cgf), CurBB(CGF.Builder.GetInsertBlock()) {
144      CleanupBB = CGF.createBasicBlock("cleanup");
145      CGF.Builder.SetInsertPoint(CleanupBB);
146    }
147
148    ~CleanupScope() {
149      CGF.PushCleanupBlock(CleanupBB);
150      // FIXME: This is silly, move this into the builder.
151      if (CurBB)
152        CGF.Builder.SetInsertPoint(CurBB);
153      else
154        CGF.Builder.ClearInsertionPoint();
155    }
156  };
157
158  /// EmitCleanupBlocks - Takes the old cleanup stack size and emits the cleanup
159  /// blocks that have been added.
160  void EmitCleanupBlocks(size_t OldCleanupStackSize);
161
162  /// EmitBranchThroughCleanup - Emit a branch from the current insert block
163  /// through the cleanup handling code (if any) and then on to \arg Dest.
164  ///
165  /// FIXME: Maybe this should really be in EmitBranch? Don't we always want
166  /// this behavior for branches?
167  void EmitBranchThroughCleanup(llvm::BasicBlock *Dest);
168
169  /// PushConditionalTempDestruction - Should be called before a conditional
170  /// part of an expression is emitted. For example, before the RHS of the
171  /// expression below is emitted:
172  ///
173  /// b && f(T());
174  ///
175  /// This is used to make sure that any temporaryes created in the conditional
176  /// branch are only destroyed if the branch is taken.
177  void PushConditionalTempDestruction();
178
179  /// PopConditionalTempDestruction - Should be called after a conditional
180  /// part of an expression has been emitted.
181  void PopConditionalTempDestruction();
182
183private:
184  CGDebugInfo* DebugInfo;
185
186  /// LabelIDs - Track arbitrary ids assigned to labels for use in implementing
187  /// the GCC address-of-label extension and indirect goto. IDs are assigned to
188  /// labels inside getIDForAddrOfLabel().
189  std::map<const LabelStmt*, unsigned> LabelIDs;
190
191  /// IndirectSwitches - Record the list of switches for indirect
192  /// gotos. Emission of the actual switching code needs to be delayed until all
193  /// AddrLabelExprs have been seen.
194  std::vector<llvm::SwitchInst*> IndirectSwitches;
195
196  /// LocalDeclMap - This keeps track of the LLVM allocas or globals for local C
197  /// decls.
198  llvm::DenseMap<const Decl*, llvm::Value*> LocalDeclMap;
199
200  /// LabelMap - This keeps track of the LLVM basic block for each C label.
201  llvm::DenseMap<const LabelStmt*, llvm::BasicBlock*> LabelMap;
202
203  // BreakContinueStack - This keeps track of where break and continue
204  // statements should jump to.
205  struct BreakContinue {
206    BreakContinue(llvm::BasicBlock *bb, llvm::BasicBlock *cb)
207      : BreakBlock(bb), ContinueBlock(cb) {}
208
209    llvm::BasicBlock *BreakBlock;
210    llvm::BasicBlock *ContinueBlock;
211  };
212  llvm::SmallVector<BreakContinue, 8> BreakContinueStack;
213
214  /// SwitchInsn - This is nearest current switch instruction. It is null if if
215  /// current context is not in a switch.
216  llvm::SwitchInst *SwitchInsn;
217
218  /// CaseRangeBlock - This block holds if condition check for last case
219  /// statement range in current switch instruction.
220  llvm::BasicBlock *CaseRangeBlock;
221
222  /// InvokeDest - This is the nearest exception target for calls
223  /// which can unwind, when exceptions are being used.
224  llvm::BasicBlock *InvokeDest;
225
226  // VLASizeMap - This keeps track of the associated size for each VLA type.
227  // We track this by the size expression rather than the type itself because
228  // in certain situations, like a const qualifier applied to an VLA typedef,
229  // multiple VLA types can share the same size expression.
230  // FIXME: Maybe this could be a stack of maps that is pushed/popped as we
231  // enter/leave scopes.
232  llvm::DenseMap<const Expr*, llvm::Value*> VLASizeMap;
233
234  /// DidCallStackSave - Whether llvm.stacksave has been called. Used to avoid
235  /// calling llvm.stacksave for multiple VLAs in the same scope.
236  bool DidCallStackSave;
237
238  struct CleanupEntry {
239    /// CleanupBlock - The block of code that does the actual cleanup.
240    llvm::BasicBlock *CleanupBlock;
241
242    /// Blocks - Basic blocks that were emitted in the current cleanup scope.
243    std::vector<llvm::BasicBlock *> Blocks;
244
245    /// BranchFixups - Branch instructions to basic blocks that haven't been
246    /// inserted into the current function yet.
247    std::vector<llvm::BranchInst *> BranchFixups;
248
249    explicit CleanupEntry(llvm::BasicBlock *cb)
250      : CleanupBlock(cb) {}
251  };
252
253  /// CleanupEntries - Stack of cleanup entries.
254  llvm::SmallVector<CleanupEntry, 8> CleanupEntries;
255
256  typedef llvm::DenseMap<llvm::BasicBlock*, size_t> BlockScopeMap;
257
258  /// BlockScopes - Map of which "cleanup scope" scope basic blocks have.
259  BlockScopeMap BlockScopes;
260
261  /// CXXThisDecl - When parsing an C++ function, this will hold the implicit
262  /// 'this' declaration.
263  ImplicitParamDecl *CXXThisDecl;
264
265  /// CXXLiveTemporaryInfo - Holds information about a live C++ temporary.
266  struct CXXLiveTemporaryInfo {
267    /// Temporary - The live temporary.
268    const CXXTemporary *Temporary;
269
270    /// ThisPtr - The pointer to the temporary.
271    llvm::Value *ThisPtr;
272
273    /// DtorBlock - The destructor block.
274    llvm::BasicBlock *DtorBlock;
275
276    /// CondPtr - If this is a conditional temporary, this is the pointer to
277    /// the condition variable that states whether the destructor should be
278    /// called or not.
279    llvm::Value *CondPtr;
280
281    CXXLiveTemporaryInfo(const CXXTemporary *temporary,
282                         llvm::Value *thisptr, llvm::BasicBlock *dtorblock,
283                         llvm::Value *condptr)
284      : Temporary(temporary), ThisPtr(thisptr), DtorBlock(dtorblock),
285      CondPtr(condptr) { }
286  };
287
288  llvm::SmallVector<CXXLiveTemporaryInfo, 4> LiveTemporaries;
289
290  /// ConditionalTempDestructionStack - Contains the number of live temporaries
291  /// when PushConditionalTempDestruction was called. This is used so that
292  /// we know how many temporaries were created by a certain expression.
293  llvm::SmallVector<size_t, 4> ConditionalTempDestructionStack;
294
295public:
296  CodeGenFunction(CodeGenModule &cgm);
297
298  ASTContext &getContext() const;
299  CGDebugInfo *getDebugInfo() { return DebugInfo; }
300
301  llvm::BasicBlock *getInvokeDest() { return InvokeDest; }
302  void setInvokeDest(llvm::BasicBlock *B) { InvokeDest = B; }
303
304  llvm::LLVMContext &getLLVMContext() { return VMContext; }
305
306  //===--------------------------------------------------------------------===//
307  //                                  Objective-C
308  //===--------------------------------------------------------------------===//
309
310  void GenerateObjCMethod(const ObjCMethodDecl *OMD);
311
312  void StartObjCMethod(const ObjCMethodDecl *MD,
313                       const ObjCContainerDecl *CD);
314
315  /// GenerateObjCGetter - Synthesize an Objective-C property getter function.
316  void GenerateObjCGetter(ObjCImplementationDecl *IMP,
317                          const ObjCPropertyImplDecl *PID);
318
319  /// GenerateObjCSetter - Synthesize an Objective-C property setter function
320  /// for the given property.
321  void GenerateObjCSetter(ObjCImplementationDecl *IMP,
322                          const ObjCPropertyImplDecl *PID);
323
324  //===--------------------------------------------------------------------===//
325  //                                  Block Bits
326  //===--------------------------------------------------------------------===//
327
328  llvm::Value *BuildBlockLiteralTmp(const BlockExpr *);
329  llvm::Constant *BuildDescriptorBlockDecl(bool BlockHasCopyDispose,
330                                           uint64_t Size,
331                                           const llvm::StructType *,
332                                           std::vector<HelperInfo> *);
333
334  llvm::Function *GenerateBlockFunction(const BlockExpr *BExpr,
335                                        const BlockInfo& Info,
336                                        const Decl *OuterFuncDecl,
337                                  llvm::DenseMap<const Decl*, llvm::Value*> ldm,
338                                        uint64_t &Size, uint64_t &Align,
339                      llvm::SmallVector<const Expr *, 8> &subBlockDeclRefDecls,
340                                        bool &subBlockHasCopyDispose);
341
342  void BlockForwardSelf();
343  llvm::Value *LoadBlockStruct();
344
345  llvm::Value *GetAddrOfBlockDecl(const BlockDeclRefExpr *E);
346
347  const llvm::Type *BuildByRefType(QualType Ty, uint64_t Align);
348
349  void GenerateCode(const FunctionDecl *FD,
350                    llvm::Function *Fn);
351  void StartFunction(const Decl *D, QualType RetTy,
352                     llvm::Function *Fn,
353                     const FunctionArgList &Args,
354                     SourceLocation StartLoc);
355
356  /// EmitReturnBlock - Emit the unified return block, trying to avoid its
357  /// emission when possible.
358  void EmitReturnBlock();
359
360  /// FinishFunction - Complete IR generation of the current function. It is
361  /// legal to call this function even if there is no current insertion point.
362  void FinishFunction(SourceLocation EndLoc=SourceLocation());
363
364  /// GenerateVtable - Generate the vtable for the given type.
365  llvm::Value *GenerateVtable(const CXXRecordDecl *RD);
366
367  void EmitCtorPrologue(const CXXConstructorDecl *CD);
368
369  void SynthesizeCXXCopyConstructor(const CXXConstructorDecl *CD,
370                                    const FunctionDecl *FD,
371                                    llvm::Function *Fn,
372                                    const FunctionArgList &Args);
373
374  void SynthesizeCXXCopyAssignment(const CXXMethodDecl *CD,
375                                   const FunctionDecl *FD,
376                                   llvm::Function *Fn,
377                                   const FunctionArgList &Args);
378
379  void SynthesizeDefaultConstructor(const CXXConstructorDecl *CD,
380                                    const FunctionDecl *FD,
381                                    llvm::Function *Fn,
382                                    const FunctionArgList &Args);
383
384  void SynthesizeDefaultDestructor(const CXXDestructorDecl *CD,
385                                    const FunctionDecl *FD,
386                                    llvm::Function *Fn,
387                                    const FunctionArgList &Args);
388
389  /// EmitDtorEpilogue - Emit all code that comes at the end of class's
390  /// destructor. This is to call destructors on members and base classes
391  /// in reverse order of their construction.
392  void EmitDtorEpilogue(const CXXDestructorDecl *DD);
393
394  /// EmitFunctionProlog - Emit the target specific LLVM code to load the
395  /// arguments for the given function. This is also responsible for naming the
396  /// LLVM function arguments.
397  void EmitFunctionProlog(const CGFunctionInfo &FI,
398                          llvm::Function *Fn,
399                          const FunctionArgList &Args);
400
401  /// EmitFunctionEpilog - Emit the target specific LLVM code to return the
402  /// given temporary.
403  void EmitFunctionEpilog(const CGFunctionInfo &FI, llvm::Value *ReturnValue);
404
405  const llvm::Type *ConvertTypeForMem(QualType T);
406  const llvm::Type *ConvertType(QualType T);
407
408  /// LoadObjCSelf - Load the value of self. This function is only valid while
409  /// generating code for an Objective-C method.
410  llvm::Value *LoadObjCSelf();
411
412  /// TypeOfSelfObject - Return type of object that this self represents.
413  QualType TypeOfSelfObject();
414
415  /// hasAggregateLLVMType - Return true if the specified AST type will map into
416  /// an aggregate LLVM type or is void.
417  static bool hasAggregateLLVMType(QualType T);
418
419  /// createBasicBlock - Create an LLVM basic block.
420  llvm::BasicBlock *createBasicBlock(const char *Name="",
421                                     llvm::Function *Parent=0,
422                                     llvm::BasicBlock *InsertBefore=0) {
423#ifdef NDEBUG
424    return llvm::BasicBlock::Create(VMContext, "", Parent, InsertBefore);
425#else
426    return llvm::BasicBlock::Create(VMContext, Name, Parent, InsertBefore);
427#endif
428  }
429
430  /// getBasicBlockForLabel - Return the LLVM basicblock that the specified
431  /// label maps to.
432  llvm::BasicBlock *getBasicBlockForLabel(const LabelStmt *S);
433
434  /// SimplifyForwardingBlocks - If the given basic block is only a
435  /// branch to another basic block, simplify it. This assumes that no
436  /// other code could potentially reference the basic block.
437  void SimplifyForwardingBlocks(llvm::BasicBlock *BB);
438
439  /// EmitBlock - Emit the given block \arg BB and set it as the insert point,
440  /// adding a fall-through branch from the current insert block if
441  /// necessary. It is legal to call this function even if there is no current
442  /// insertion point.
443  ///
444  /// IsFinished - If true, indicates that the caller has finished emitting
445  /// branches to the given block and does not expect to emit code into it. This
446  /// means the block can be ignored if it is unreachable.
447  void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false);
448
449  /// EmitBranch - Emit a branch to the specified basic block from the current
450  /// insert block, taking care to avoid creation of branches from dummy
451  /// blocks. It is legal to call this function even if there is no current
452  /// insertion point.
453  ///
454  /// This function clears the current insertion point. The caller should follow
455  /// calls to this function with calls to Emit*Block prior to generation new
456  /// code.
457  void EmitBranch(llvm::BasicBlock *Block);
458
459  /// HaveInsertPoint - True if an insertion point is defined. If not, this
460  /// indicates that the current code being emitted is unreachable.
461  bool HaveInsertPoint() const {
462    return Builder.GetInsertBlock() != 0;
463  }
464
465  /// EnsureInsertPoint - Ensure that an insertion point is defined so that
466  /// emitted IR has a place to go. Note that by definition, if this function
467  /// creates a block then that block is unreachable; callers may do better to
468  /// detect when no insertion point is defined and simply skip IR generation.
469  void EnsureInsertPoint() {
470    if (!HaveInsertPoint())
471      EmitBlock(createBasicBlock());
472  }
473
474  /// ErrorUnsupported - Print out an error that codegen doesn't support the
475  /// specified stmt yet.
476  void ErrorUnsupported(const Stmt *S, const char *Type,
477                        bool OmitOnError=false);
478
479  //===--------------------------------------------------------------------===//
480  //                                  Helpers
481  //===--------------------------------------------------------------------===//
482
483  /// CreateTempAlloca - This creates a alloca and inserts it into the entry
484  /// block.
485  llvm::AllocaInst *CreateTempAlloca(const llvm::Type *Ty,
486                                     const char *Name = "tmp");
487
488  /// EvaluateExprAsBool - Perform the usual unary conversions on the specified
489  /// expression and compare the result against zero, returning an Int1Ty value.
490  llvm::Value *EvaluateExprAsBool(const Expr *E);
491
492  /// EmitAnyExpr - Emit code to compute the specified expression which can have
493  /// any type.  The result is returned as an RValue struct.  If this is an
494  /// aggregate expression, the aggloc/agglocvolatile arguments indicate where
495  /// the result should be returned.
496  ///
497  /// \param IgnoreResult - True if the resulting value isn't used.
498  RValue EmitAnyExpr(const Expr *E, llvm::Value *AggLoc = 0,
499                     bool IsAggLocVolatile = false, bool IgnoreResult = false,
500                     bool IsInitializer = false);
501
502  // EmitVAListRef - Emit a "reference" to a va_list; this is either the address
503  // or the value of the expression, depending on how va_list is defined.
504  llvm::Value *EmitVAListRef(const Expr *E);
505
506  /// EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will
507  /// always be accessible even if no aggregate location is provided.
508  RValue EmitAnyExprToTemp(const Expr *E, bool IsAggLocVolatile = false,
509                           bool IsInitializer = false);
510
511  /// EmitAggregateCopy - Emit an aggrate copy.
512  ///
513  /// \param isVolatile - True iff either the source or the destination is
514  /// volatile.
515  void EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr,
516                         QualType EltTy, bool isVolatile=false);
517
518  void EmitAggregateClear(llvm::Value *DestPtr, QualType Ty);
519
520  /// StartBlock - Start new block named N. If insert block is a dummy block
521  /// then reuse it.
522  void StartBlock(const char *N);
523
524  /// getCGRecordLayout - Return record layout info.
525  const CGRecordLayout *getCGRecordLayout(CodeGenTypes &CGT, QualType RTy);
526
527  /// GetAddrOfStaticLocalVar - Return the address of a static local variable.
528  llvm::Constant *GetAddrOfStaticLocalVar(const VarDecl *BVD);
529
530  /// GetAddrOfLocalVar - Return the address of a local variable.
531  llvm::Value *GetAddrOfLocalVar(const VarDecl *VD);
532
533  /// getAccessedFieldNo - Given an encoded value and a result number, return
534  /// the input field number being accessed.
535  static unsigned getAccessedFieldNo(unsigned Idx, const llvm::Constant *Elts);
536
537  unsigned GetIDForAddrOfLabel(const LabelStmt *L);
538
539  /// EmitMemSetToZero - Generate code to memset a value of the given type to 0.
540  void EmitMemSetToZero(llvm::Value *DestPtr, QualType Ty);
541
542  // EmitVAArg - Generate code to get an argument from the passed in pointer
543  // and update it accordingly. The return value is a pointer to the argument.
544  // FIXME: We should be able to get rid of this method and use the va_arg
545  // instruction in LLVM instead once it works well enough.
546  llvm::Value *EmitVAArg(llvm::Value *VAListAddr, QualType Ty);
547
548  // EmitVLASize - Generate code for any VLA size expressions that might occur
549  // in a variably modified type. If Ty is a VLA, will return the value that
550  // corresponds to the size in bytes of the VLA type. Will return 0 otherwise.
551  ///
552  /// This function can be called with a null (unreachable) insert point.
553  llvm::Value *EmitVLASize(QualType Ty);
554
555  // GetVLASize - Returns an LLVM value that corresponds to the size in bytes
556  // of a variable length array type.
557  llvm::Value *GetVLASize(const VariableArrayType *);
558
559  /// LoadCXXThis - Load the value of 'this'. This function is only valid while
560  /// generating code for an C++ member function.
561  llvm::Value *LoadCXXThis();
562
563  /// AddressCXXOfBaseClass - This function will add the necessary delta
564  /// to the load of 'this' and returns address of the base class.
565  // FIXME. This currently only does a derived to non-virtual base conversion.
566  // Other kinds of conversions will come later.
567  llvm::Value *AddressCXXOfBaseClass(llvm::Value *ThisValue,
568                                     const CXXRecordDecl *ClassDecl,
569                                     const CXXRecordDecl *BaseClassDecl);
570
571  void EmitClassAggrMemberwiseCopy(llvm::Value *DestValue,
572                                   llvm::Value *SrcValue,
573                                   const ArrayType *Array,
574                                   const CXXRecordDecl *BaseClassDecl,
575                                   QualType Ty);
576
577  void EmitClassAggrCopyAssignment(llvm::Value *DestValue,
578                                   llvm::Value *SrcValue,
579                                   const ArrayType *Array,
580                                   const CXXRecordDecl *BaseClassDecl,
581                                   QualType Ty);
582
583  void EmitClassMemberwiseCopy(llvm::Value *DestValue, llvm::Value *SrcValue,
584                               const CXXRecordDecl *ClassDecl,
585                               const CXXRecordDecl *BaseClassDecl,
586                               QualType Ty);
587
588  void EmitClassCopyAssignment(llvm::Value *DestValue, llvm::Value *SrcValue,
589                               const CXXRecordDecl *ClassDecl,
590                               const CXXRecordDecl *BaseClassDecl,
591                               QualType Ty);
592
593  void EmitCXXConstructorCall(const CXXConstructorDecl *D, CXXCtorType Type,
594                              llvm::Value *This,
595                              CallExpr::const_arg_iterator ArgBeg,
596                              CallExpr::const_arg_iterator ArgEnd);
597
598  void EmitCXXAggrConstructorCall(const CXXConstructorDecl *D,
599                                  const ArrayType *Array,
600                                  llvm::Value *This);
601
602  void EmitCXXAggrDestructorCall(const CXXDestructorDecl *D,
603                                 const ArrayType *Array,
604                                 llvm::Value *This);
605
606  void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type,
607                             llvm::Value *This);
608
609  void PushCXXTemporary(const CXXTemporary *Temporary, llvm::Value *Ptr);
610  void PopCXXTemporary();
611
612  llvm::Value *EmitCXXNewExpr(const CXXNewExpr *E);
613  void EmitCXXDeleteExpr(const CXXDeleteExpr *E);
614
615  //===--------------------------------------------------------------------===//
616  //                            Declaration Emission
617  //===--------------------------------------------------------------------===//
618
619  /// EmitDecl - Emit a declaration.
620  ///
621  /// This function can be called with a null (unreachable) insert point.
622  void EmitDecl(const Decl &D);
623
624  /// EmitBlockVarDecl - Emit a block variable declaration.
625  ///
626  /// This function can be called with a null (unreachable) insert point.
627  void EmitBlockVarDecl(const VarDecl &D);
628
629  /// EmitLocalBlockVarDecl - Emit a local block variable declaration.
630  ///
631  /// This function can be called with a null (unreachable) insert point.
632  void EmitLocalBlockVarDecl(const VarDecl &D);
633
634  void EmitStaticBlockVarDecl(const VarDecl &D);
635
636  /// EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl.
637  void EmitParmDecl(const VarDecl &D, llvm::Value *Arg);
638
639  //===--------------------------------------------------------------------===//
640  //                             Statement Emission
641  //===--------------------------------------------------------------------===//
642
643  /// EmitStopPoint - Emit a debug stoppoint if we are emitting debug info.
644  void EmitStopPoint(const Stmt *S);
645
646  /// EmitStmt - Emit the code for the statement \arg S. It is legal to call
647  /// this function even if there is no current insertion point.
648  ///
649  /// This function may clear the current insertion point; callers should use
650  /// EnsureInsertPoint if they wish to subsequently generate code without first
651  /// calling EmitBlock, EmitBranch, or EmitStmt.
652  void EmitStmt(const Stmt *S);
653
654  /// EmitSimpleStmt - Try to emit a "simple" statement which does not
655  /// necessarily require an insertion point or debug information; typically
656  /// because the statement amounts to a jump or a container of other
657  /// statements.
658  ///
659  /// \return True if the statement was handled.
660  bool EmitSimpleStmt(const Stmt *S);
661
662  RValue EmitCompoundStmt(const CompoundStmt &S, bool GetLast = false,
663                          llvm::Value *AggLoc = 0, bool isAggVol = false);
664
665  /// EmitLabel - Emit the block for the given label. It is legal to call this
666  /// function even if there is no current insertion point.
667  void EmitLabel(const LabelStmt &S); // helper for EmitLabelStmt.
668
669  void EmitLabelStmt(const LabelStmt &S);
670  void EmitGotoStmt(const GotoStmt &S);
671  void EmitIndirectGotoStmt(const IndirectGotoStmt &S);
672  void EmitIfStmt(const IfStmt &S);
673  void EmitWhileStmt(const WhileStmt &S);
674  void EmitDoStmt(const DoStmt &S);
675  void EmitForStmt(const ForStmt &S);
676  void EmitReturnStmt(const ReturnStmt &S);
677  void EmitDeclStmt(const DeclStmt &S);
678  void EmitBreakStmt(const BreakStmt &S);
679  void EmitContinueStmt(const ContinueStmt &S);
680  void EmitSwitchStmt(const SwitchStmt &S);
681  void EmitDefaultStmt(const DefaultStmt &S);
682  void EmitCaseStmt(const CaseStmt &S);
683  void EmitCaseStmtRange(const CaseStmt &S);
684  void EmitAsmStmt(const AsmStmt &S);
685
686  void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S);
687  void EmitObjCAtTryStmt(const ObjCAtTryStmt &S);
688  void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
689  void EmitObjCAtSynchronizedStmt(const ObjCAtSynchronizedStmt &S);
690
691  //===--------------------------------------------------------------------===//
692  //                         LValue Expression Emission
693  //===--------------------------------------------------------------------===//
694
695  /// GetUndefRValue - Get an appropriate 'undef' rvalue for the given type.
696  RValue GetUndefRValue(QualType Ty);
697
698  /// EmitUnsupportedRValue - Emit a dummy r-value using the type of E
699  /// and issue an ErrorUnsupported style diagnostic (using the
700  /// provided Name).
701  RValue EmitUnsupportedRValue(const Expr *E,
702                               const char *Name);
703
704  /// EmitUnsupportedLValue - Emit a dummy l-value using the type of E and issue
705  /// an ErrorUnsupported style diagnostic (using the provided Name).
706  LValue EmitUnsupportedLValue(const Expr *E,
707                               const char *Name);
708
709  /// EmitLValue - Emit code to compute a designator that specifies the location
710  /// of the expression.
711  ///
712  /// This can return one of two things: a simple address or a bitfield
713  /// reference.  In either case, the LLVM Value* in the LValue structure is
714  /// guaranteed to be an LLVM pointer type.
715  ///
716  /// If this returns a bitfield reference, nothing about the pointee type of
717  /// the LLVM value is known: For example, it may not be a pointer to an
718  /// integer.
719  ///
720  /// If this returns a normal address, and if the lvalue's C type is fixed
721  /// size, this method guarantees that the returned pointer type will point to
722  /// an LLVM type of the same size of the lvalue's type.  If the lvalue has a
723  /// variable length type, this is not possible.
724  ///
725  LValue EmitLValue(const Expr *E);
726
727  /// EmitLoadOfScalar - Load a scalar value from an address, taking
728  /// care to appropriately convert from the memory representation to
729  /// the LLVM value representation.
730  llvm::Value *EmitLoadOfScalar(llvm::Value *Addr, bool Volatile,
731                                QualType Ty);
732
733  /// EmitStoreOfScalar - Store a scalar value to an address, taking
734  /// care to appropriately convert from the memory representation to
735  /// the LLVM value representation.
736  void EmitStoreOfScalar(llvm::Value *Value, llvm::Value *Addr,
737                         bool Volatile, QualType Ty);
738
739  /// EmitLoadOfLValue - Given an expression that represents a value lvalue,
740  /// this method emits the address of the lvalue, then loads the result as an
741  /// rvalue, returning the rvalue.
742  RValue EmitLoadOfLValue(LValue V, QualType LVType);
743  RValue EmitLoadOfExtVectorElementLValue(LValue V, QualType LVType);
744  RValue EmitLoadOfBitfieldLValue(LValue LV, QualType ExprType);
745  RValue EmitLoadOfPropertyRefLValue(LValue LV, QualType ExprType);
746  RValue EmitLoadOfKVCRefLValue(LValue LV, QualType ExprType);
747
748
749  /// EmitStoreThroughLValue - Store the specified rvalue into the specified
750  /// lvalue, where both are guaranteed to the have the same type, and that type
751  /// is 'Ty'.
752  void EmitStoreThroughLValue(RValue Src, LValue Dst, QualType Ty);
753  void EmitStoreThroughExtVectorComponentLValue(RValue Src, LValue Dst,
754                                                QualType Ty);
755  void EmitStoreThroughPropertyRefLValue(RValue Src, LValue Dst, QualType Ty);
756  void EmitStoreThroughKVCRefLValue(RValue Src, LValue Dst, QualType Ty);
757
758  /// EmitStoreThroughLValue - Store Src into Dst with same constraints as
759  /// EmitStoreThroughLValue.
760  ///
761  /// \param Result [out] - If non-null, this will be set to a Value* for the
762  /// bit-field contents after the store, appropriate for use as the result of
763  /// an assignment to the bit-field.
764  void EmitStoreThroughBitfieldLValue(RValue Src, LValue Dst, QualType Ty,
765                                      llvm::Value **Result=0);
766
767  // Note: only availabe for agg return types
768  LValue EmitBinaryOperatorLValue(const BinaryOperator *E);
769  // Note: only available for agg return types
770  LValue EmitCallExprLValue(const CallExpr *E);
771  // Note: only available for agg return types
772  LValue EmitVAArgExprLValue(const VAArgExpr *E);
773  LValue EmitDeclRefLValue(const DeclRefExpr *E);
774  LValue EmitStringLiteralLValue(const StringLiteral *E);
775  LValue EmitObjCEncodeExprLValue(const ObjCEncodeExpr *E);
776  LValue EmitPredefinedFunctionName(unsigned Type);
777  LValue EmitPredefinedLValue(const PredefinedExpr *E);
778  LValue EmitUnaryOpLValue(const UnaryOperator *E);
779  LValue EmitArraySubscriptExpr(const ArraySubscriptExpr *E);
780  LValue EmitExtVectorElementExpr(const ExtVectorElementExpr *E);
781  LValue EmitMemberExpr(const MemberExpr *E);
782  LValue EmitCompoundLiteralLValue(const CompoundLiteralExpr *E);
783  LValue EmitConditionalOperator(const ConditionalOperator *E);
784  LValue EmitCastLValue(const CastExpr *E);
785
786  llvm::Value *EmitIvarOffset(const ObjCInterfaceDecl *Interface,
787                              const ObjCIvarDecl *Ivar);
788  LValue EmitLValueForField(llvm::Value* Base, FieldDecl* Field,
789                            bool isUnion, unsigned CVRQualifiers);
790  LValue EmitLValueForIvar(QualType ObjectTy,
791                           llvm::Value* Base, const ObjCIvarDecl *Ivar,
792                           unsigned CVRQualifiers);
793
794  LValue EmitLValueForBitfield(llvm::Value* Base, FieldDecl* Field,
795                                unsigned CVRQualifiers);
796
797  LValue EmitBlockDeclRefLValue(const BlockDeclRefExpr *E);
798
799  LValue EmitCXXConditionDeclLValue(const CXXConditionDeclExpr *E);
800  LValue EmitCXXConstructLValue(const CXXConstructExpr *E);
801  LValue EmitCXXBindTemporaryLValue(const CXXBindTemporaryExpr *E);
802
803  LValue EmitObjCMessageExprLValue(const ObjCMessageExpr *E);
804  LValue EmitObjCIvarRefLValue(const ObjCIvarRefExpr *E);
805  LValue EmitObjCPropertyRefLValue(const ObjCPropertyRefExpr *E);
806  LValue EmitObjCKVCRefLValue(const ObjCImplicitSetterGetterRefExpr *E);
807  LValue EmitObjCSuperExprLValue(const ObjCSuperExpr *E);
808  LValue EmitStmtExprLValue(const StmtExpr *E);
809
810  //===--------------------------------------------------------------------===//
811  //                         Scalar Expression Emission
812  //===--------------------------------------------------------------------===//
813
814  /// EmitCall - Generate a call of the given function, expecting the given
815  /// result type, and using the given argument list which specifies both the
816  /// LLVM arguments and the types they were derived from.
817  ///
818  /// \param TargetDecl - If given, the decl of the function in a
819  /// direct call; used to set attributes on the call (noreturn,
820  /// etc.).
821  RValue EmitCall(const CGFunctionInfo &FnInfo,
822                  llvm::Value *Callee,
823                  const CallArgList &Args,
824                  const Decl *TargetDecl = 0);
825
826  RValue EmitCall(llvm::Value *Callee, QualType FnType,
827                  CallExpr::const_arg_iterator ArgBeg,
828                  CallExpr::const_arg_iterator ArgEnd,
829                  const Decl *TargetDecl = 0);
830  RValue EmitCallExpr(const CallExpr *E);
831
832  RValue EmitCXXMemberCall(const CXXMethodDecl *MD,
833                           llvm::Value *Callee,
834                           llvm::Value *This,
835                           CallExpr::const_arg_iterator ArgBeg,
836                           CallExpr::const_arg_iterator ArgEnd);
837  RValue EmitCXXMemberCallExpr(const CXXMemberCallExpr *E);
838
839  RValue EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
840                                       const CXXMethodDecl *MD);
841
842  RValue EmitBuiltinExpr(const FunctionDecl *FD,
843                         unsigned BuiltinID, const CallExpr *E);
844
845  RValue EmitBlockCallExpr(const CallExpr *E);
846
847  /// EmitTargetBuiltinExpr - Emit the given builtin call. Returns 0 if the call
848  /// is unhandled by the current target.
849  llvm::Value *EmitTargetBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
850
851  llvm::Value *EmitX86BuiltinExpr(unsigned BuiltinID, const CallExpr *E);
852  llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E);
853
854  llvm::Value *EmitShuffleVector(llvm::Value* V1, llvm::Value *V2, ...);
855  llvm::Value *EmitVector(llvm::Value * const *Vals, unsigned NumVals,
856                          bool isSplat = false);
857
858  llvm::Value *EmitObjCProtocolExpr(const ObjCProtocolExpr *E);
859  llvm::Value *EmitObjCStringLiteral(const ObjCStringLiteral *E);
860  llvm::Value *EmitObjCSelectorExpr(const ObjCSelectorExpr *E);
861  RValue EmitObjCMessageExpr(const ObjCMessageExpr *E);
862  RValue EmitObjCPropertyGet(const Expr *E);
863  RValue EmitObjCSuperPropertyGet(const Expr *Exp, const Selector &S);
864  void EmitObjCPropertySet(const Expr *E, RValue Src);
865  void EmitObjCSuperPropertySet(const Expr *E, const Selector &S, RValue Src);
866
867
868  /// EmitReferenceBindingToExpr - Emits a reference binding to the passed in
869  /// expression. Will emit a temporary variable if E is not an LValue.
870  RValue EmitReferenceBindingToExpr(const Expr* E, QualType DestType,
871                                    bool IsInitializer = false);
872
873  //===--------------------------------------------------------------------===//
874  //                           Expression Emission
875  //===--------------------------------------------------------------------===//
876
877  // Expressions are broken into three classes: scalar, complex, aggregate.
878
879  /// EmitScalarExpr - Emit the computation of the specified expression of LLVM
880  /// scalar type, returning the result.
881  llvm::Value *EmitScalarExpr(const Expr *E , bool IgnoreResultAssign = false);
882
883  /// EmitScalarConversion - Emit a conversion from the specified type to the
884  /// specified destination type, both of which are LLVM scalar types.
885  llvm::Value *EmitScalarConversion(llvm::Value *Src, QualType SrcTy,
886                                    QualType DstTy);
887
888  /// EmitComplexToScalarConversion - Emit a conversion from the specified
889  /// complex type to the specified destination type, where the destination type
890  /// is an LLVM scalar type.
891  llvm::Value *EmitComplexToScalarConversion(ComplexPairTy Src, QualType SrcTy,
892                                             QualType DstTy);
893
894
895  /// EmitAggExpr - Emit the computation of the specified expression of
896  /// aggregate type.  The result is computed into DestPtr.  Note that if
897  /// DestPtr is null, the value of the aggregate expression is not needed.
898  void EmitAggExpr(const Expr *E, llvm::Value *DestPtr, bool VolatileDest,
899                   bool IgnoreResult = false, bool IsInitializer = false);
900
901  /// EmitGCMemmoveCollectable - Emit special API for structs with object
902  /// pointers.
903  void EmitGCMemmoveCollectable(llvm::Value *DestPtr, llvm::Value *SrcPtr,
904                                unsigned long);
905
906  /// EmitComplexExpr - Emit the computation of the specified expression of
907  /// complex type, returning the result.
908  ComplexPairTy EmitComplexExpr(const Expr *E, bool IgnoreReal = false,
909                                bool IgnoreImag = false,
910                                bool IgnoreRealAssign = false,
911                                bool IgnoreImagAssign = false);
912
913  /// EmitComplexExprIntoAddr - Emit the computation of the specified expression
914  /// of complex type, storing into the specified Value*.
915  void EmitComplexExprIntoAddr(const Expr *E, llvm::Value *DestAddr,
916                               bool DestIsVolatile);
917
918  /// StoreComplexToAddr - Store a complex number into the specified address.
919  void StoreComplexToAddr(ComplexPairTy V, llvm::Value *DestAddr,
920                          bool DestIsVolatile);
921  /// LoadComplexFromAddr - Load a complex number from the specified address.
922  ComplexPairTy LoadComplexFromAddr(llvm::Value *SrcAddr, bool SrcIsVolatile);
923
924  /// CreateStaticBlockVarDecl - Create a zero-initialized LLVM global
925  /// for a static block var decl.
926  llvm::GlobalVariable * CreateStaticBlockVarDecl(const VarDecl &D,
927                                                  const char *Separator,
928                                                  llvm::GlobalValue::LinkageTypes
929                                                  Linkage);
930
931  /// EmitStaticCXXBlockVarDeclInit - Create the initializer for a C++
932  /// runtime initialized static block var decl.
933  void EmitStaticCXXBlockVarDeclInit(const VarDecl &D,
934                                     llvm::GlobalVariable *GV);
935
936  /// EmitCXXGlobalVarDeclInit - Create the initializer for a C++
937  /// variable with global storage.
938  void EmitCXXGlobalVarDeclInit(const VarDecl &D, llvm::Constant *DeclPtr);
939
940  /// EmitCXXGlobalDtorRegistration - Emits a call to register the global ptr
941  /// with the C++ runtime so that its destructor will be called at exit.
942  void EmitCXXGlobalDtorRegistration(const CXXDestructorDecl *Dtor,
943                                     llvm::Constant *DeclPtr);
944
945  /// GenerateCXXGlobalInitFunc - Generates code for initializing global
946  /// variables.
947  void GenerateCXXGlobalInitFunc(llvm::Function *Fn,
948                                 const VarDecl **Decls,
949                                 unsigned NumDecls);
950
951  void EmitCXXConstructExpr(llvm::Value *Dest, const CXXConstructExpr *E);
952
953  RValue EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E,
954                                    llvm::Value *AggLoc = 0,
955                                    bool IsAggLocVolatile = false,
956                                    bool IsInitializer = false);
957
958  //===--------------------------------------------------------------------===//
959  //                             Internal Helpers
960  //===--------------------------------------------------------------------===//
961
962  /// ContainsLabel - Return true if the statement contains a label in it.  If
963  /// this statement is not executed normally, it not containing a label means
964  /// that we can just remove the code.
965  static bool ContainsLabel(const Stmt *S, bool IgnoreCaseStmts = false);
966
967  /// ConstantFoldsToSimpleInteger - If the specified expression does not fold
968  /// to a constant, or if it does but contains a label, return 0.  If it
969  /// constant folds to 'true' and does not contain a label, return 1, if it
970  /// constant folds to 'false' and does not contain a label, return -1.
971  int ConstantFoldsToSimpleInteger(const Expr *Cond);
972
973  /// EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. for an
974  /// if statement) to the specified blocks.  Based on the condition, this might
975  /// try to simplify the codegen of the conditional based on the branch.
976  void EmitBranchOnBoolExpr(const Expr *Cond, llvm::BasicBlock *TrueBlock,
977                            llvm::BasicBlock *FalseBlock);
978private:
979
980  /// EmitIndirectSwitches - Emit code for all of the switch
981  /// instructions in IndirectSwitches.
982  void EmitIndirectSwitches();
983
984  void EmitReturnOfRValue(RValue RV, QualType Ty);
985
986  /// ExpandTypeFromArgs - Reconstruct a structure of type \arg Ty
987  /// from function arguments into \arg Dst. See ABIArgInfo::Expand.
988  ///
989  /// \param AI - The first function argument of the expansion.
990  /// \return The argument following the last expanded function
991  /// argument.
992  llvm::Function::arg_iterator
993  ExpandTypeFromArgs(QualType Ty, LValue Dst,
994                     llvm::Function::arg_iterator AI);
995
996  /// ExpandTypeToArgs - Expand an RValue \arg Src, with the LLVM type for \arg
997  /// Ty, into individual arguments on the provided vector \arg Args. See
998  /// ABIArgInfo::Expand.
999  void ExpandTypeToArgs(QualType Ty, RValue Src,
1000                        llvm::SmallVector<llvm::Value*, 16> &Args);
1001
1002  llvm::Value* EmitAsmInput(const AsmStmt &S,
1003                            const TargetInfo::ConstraintInfo &Info,
1004                            const Expr *InputExpr, std::string &ConstraintStr);
1005
1006  /// EmitCleanupBlock - emits a single cleanup block.
1007  void EmitCleanupBlock();
1008
1009  /// AddBranchFixup - adds a branch instruction to the list of fixups for the
1010  /// current cleanup scope.
1011  void AddBranchFixup(llvm::BranchInst *BI);
1012
1013  /// EmitCallArg - Emit a single call argument.
1014  RValue EmitCallArg(const Expr *E, QualType ArgType);
1015
1016  /// EmitCallArgs - Emit call arguments for a function.
1017  /// The CallArgTypeInfo parameter is used for iterating over the known
1018  /// argument types of the function being called.
1019  template<typename T>
1020  void EmitCallArgs(CallArgList& Args, const T* CallArgTypeInfo,
1021                    CallExpr::const_arg_iterator ArgBeg,
1022                    CallExpr::const_arg_iterator ArgEnd) {
1023      CallExpr::const_arg_iterator Arg = ArgBeg;
1024
1025    // First, use the argument types that the type info knows about
1026    if (CallArgTypeInfo) {
1027      for (typename T::arg_type_iterator I = CallArgTypeInfo->arg_type_begin(),
1028           E = CallArgTypeInfo->arg_type_end(); I != E; ++I, ++Arg) {
1029        QualType ArgType = *I;
1030
1031        assert(getContext().getCanonicalType(ArgType.getNonReferenceType()).
1032               getTypePtr() ==
1033               getContext().getCanonicalType(Arg->getType()).getTypePtr() &&
1034               "type mismatch in call argument!");
1035
1036        Args.push_back(std::make_pair(EmitCallArg(*Arg, ArgType),
1037                                      ArgType));
1038      }
1039
1040      // Either we've emitted all the call args, or we have a call to a
1041      // variadic function.
1042      assert((Arg == ArgEnd || CallArgTypeInfo->isVariadic()) &&
1043             "Extra arguments in non-variadic function!");
1044
1045    }
1046
1047    // If we still have any arguments, emit them using the type of the argument.
1048    for (; Arg != ArgEnd; ++Arg) {
1049      QualType ArgType = Arg->getType();
1050      Args.push_back(std::make_pair(EmitCallArg(*Arg, ArgType),
1051                                    ArgType));
1052    }
1053  }
1054};
1055
1056
1057}  // end namespace CodeGen
1058}  // end namespace clang
1059
1060#endif
1061