//===--- CodeGenFunction.cpp - Emit LLVM Code from ASTs for a Function ----===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This coordinates the per-function state used while generating code.////===----------------------------------------------------------------------===//#include"CodeGenFunction.h"#include"CodeGenModule.h"#include"CGCXXABI.h"#include"CGDebugInfo.h"#include"CGException.h"#include"clang/Basic/TargetInfo.h"#include"clang/AST/APValue.h"#include"clang/AST/ASTContext.h"#include"clang/AST/Decl.h"#include"clang/AST/DeclCXX.h"#include"clang/AST/StmtCXX.h"#include