1 //===-- ARMMachineFunctionInfo.cpp - ARM machine function info ------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "ARMMachineFunctionInfo.h"
10 #include "ARMSubtarget.h"
11 
12 using namespace llvm;
13 
anchor()14 void ARMFunctionInfo::anchor() {}
15 
ARMFunctionInfo(MachineFunction & MF)16 ARMFunctionInfo::ARMFunctionInfo(MachineFunction &MF)
17     : isThumb(MF.getSubtarget<ARMSubtarget>().isThumb()),
18       hasThumb2(MF.getSubtarget<ARMSubtarget>().hasThumb2()),
19       IsCmseNSEntry(MF.getFunction().hasFnAttribute("cmse_nonsecure_entry")),
20       IsCmseNSCall(MF.getFunction().hasFnAttribute("cmse_nonsecure_call")) {}
21