1 //===-- PPCMachineFunctionInfo.cpp - Private data used for PowerPC --------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "PPCMachineFunctionInfo.h"
11 #include "llvm/ADT/Twine.h"
12 #include "llvm/IR/DataLayout.h"
13 #include "llvm/MC/MCContext.h"
17 void PPCFunctionInfo::anchor() {}
19 MCSymbol
*PPCFunctionInfo::getPICOffsetSymbol() const {
20 const DataLayout
&DL
= MF
.getDataLayout();
21 return MF
.getContext().getOrCreateSymbol(Twine(DL
.getPrivateGlobalPrefix()) +
22 Twine(MF
.getFunctionNumber()) +
26 MCSymbol
*PPCFunctionInfo::getGlobalEPSymbol() const {
27 const DataLayout
&DL
= MF
.getDataLayout();
28 return MF
.getContext().getOrCreateSymbol(Twine(DL
.getPrivateGlobalPrefix()) +
30 Twine(MF
.getFunctionNumber()));
33 MCSymbol
*PPCFunctionInfo::getLocalEPSymbol() const {
34 const DataLayout
&DL
= MF
.getDataLayout();
35 return MF
.getContext().getOrCreateSymbol(Twine(DL
.getPrivateGlobalPrefix()) +
37 Twine(MF
.getFunctionNumber()));
40 MCSymbol
*PPCFunctionInfo::getTOCOffsetSymbol() const {
41 const DataLayout
&DL
= MF
.getDataLayout();
42 return MF
.getContext().getOrCreateSymbol(Twine(DL
.getPrivateGlobalPrefix()) +
44 Twine(MF
.getFunctionNumber()));
47 bool PPCFunctionInfo::isLiveInSExt(unsigned VReg
) const {
48 for (const std::pair
<unsigned, ISD::ArgFlagsTy
> &LiveIn
: LiveInAttrs
)
49 if (LiveIn
.first
== VReg
)
50 return LiveIn
.second
.isSExt();
54 bool PPCFunctionInfo::isLiveInZExt(unsigned VReg
) const {
55 for (const std::pair
<unsigned, ISD::ArgFlagsTy
> &LiveIn
: LiveInAttrs
)
56 if (LiveIn
.first
== VReg
)
57 return LiveIn
.second
.isZExt();