//===-- CodeGenFunction.h - Per-Function state for LLVM CodeGen -*- C++ -*-===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This is the internal per-function state used for llvm translation.////===----------------------------------------------------------------------===//#ifndef CLANG_CODEGEN_CODEGENFUNCTION_H#define CLANG_CODEGEN_CODEGENFUNCTION_H#include"clang/AST/Type.h"#include"clang/AST/ExprCXX.h"#include"clang/AST/ExprObjC.h"#include"clang/AST/CharUnits.h"#include"clang/Basic/TargetInfo.h"#include"llvm/ADT/DenseMap.h"#include"llvm/ADT/SmallVector.h"#include"llvm/Support/ValueHandle.h"#include"CodeGenModule.h"#include"CGBlocks.h"#include"CGBuilder.h"#include"CGCall.h"#include"CGCXX.h"#include"CGValue.h"namespace