1*9880d681SAndroid Build Coastguard Worker //===-- ARMMachineFunctionInfo.cpp - ARM machine function info ------------===//
2*9880d681SAndroid Build Coastguard Worker //
3*9880d681SAndroid Build Coastguard Worker // The LLVM Compiler Infrastructure
4*9880d681SAndroid Build Coastguard Worker //
5*9880d681SAndroid Build Coastguard Worker // This file is distributed under the University of Illinois Open Source
6*9880d681SAndroid Build Coastguard Worker // License. See LICENSE.TXT for details.
7*9880d681SAndroid Build Coastguard Worker //
8*9880d681SAndroid Build Coastguard Worker //===----------------------------------------------------------------------===//
9*9880d681SAndroid Build Coastguard Worker
10*9880d681SAndroid Build Coastguard Worker #include "ARMMachineFunctionInfo.h"
11*9880d681SAndroid Build Coastguard Worker
12*9880d681SAndroid Build Coastguard Worker using namespace llvm;
13*9880d681SAndroid Build Coastguard Worker
anchor()14*9880d681SAndroid Build Coastguard Worker void ARMFunctionInfo::anchor() { }
15*9880d681SAndroid Build Coastguard Worker
ARMFunctionInfo(MachineFunction & MF)16*9880d681SAndroid Build Coastguard Worker ARMFunctionInfo::ARMFunctionInfo(MachineFunction &MF)
17*9880d681SAndroid Build Coastguard Worker : isThumb(MF.getSubtarget<ARMSubtarget>().isThumb()),
18*9880d681SAndroid Build Coastguard Worker hasThumb2(MF.getSubtarget<ARMSubtarget>().hasThumb2()),
19*9880d681SAndroid Build Coastguard Worker StByValParamsPadding(0), ArgRegsSaveSize(0), HasStackFrame(false),
20*9880d681SAndroid Build Coastguard Worker RestoreSPFromFP(false), LRSpilledForFarJump(false),
21*9880d681SAndroid Build Coastguard Worker FramePtrSpillOffset(0), GPRCS1Offset(0), GPRCS2Offset(0), DPRCSOffset(0),
22*9880d681SAndroid Build Coastguard Worker GPRCS1Size(0), GPRCS2Size(0), DPRCSSize(0),
23*9880d681SAndroid Build Coastguard Worker PICLabelUId(0), VarArgsFrameIndex(0), HasITBlocks(false),
24*9880d681SAndroid Build Coastguard Worker ArgumentStackSize(0), IsSplitCSR(false) {}
25