//===-- ARMFrameLowering.cpp - ARM Frame Information ----------------------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This file contains the ARM implementation of TargetFrameLowering class.////===----------------------------------------------------------------------===//#include"ARMFrameLowering.h"#include"ARMBaseInstrInfo.h"#include"ARMBaseRegisterInfo.h"#include"ARMMachineFunctionInfo.h"#include"MCTargetDesc/ARMAddressingModes.h"#include"llvm/CodeGen/MachineFrameInfo.h"#include"llvm/CodeGen/MachineFunction.h"#include"llvm/CodeGen/MachineInstrBuilder.h"#include"llvm/CodeGen/MachineRegisterInfo.h"#include"llvm/CodeGen/RegisterScavenging.h"#include"llvm/IR/CallingConv.h"#include"llvm/IR/Function.h"#include"llvm/Support/CommandLine.h"#include"llvm/Target/TargetOptions.h"// @LOCALMOD-START#include"llvm/CodeGen/MachineModuleInfo.h"// @LOCALMOD-END