HomeSort by relevance Sort by last modified time
    Searched defs:MF (Results 1 - 25 of 560) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/CodeGen/
AllocationOrder.cpp 35 const MachineFunction &MF = VRM.getMachineFunction();
37 Order = RegClassInfo.getOrder(MF.getRegInfo().getRegClass(VirtReg));
38 TRI->getRegAllocationHints(VirtReg, Order, Hints, MF, &VRM, Matrix);
CriticalAntiDepBreaker.h 33 MachineFunction& MF;
EdgeBundles.cpp 39 bool EdgeBundles::runOnMachineFunction(MachineFunction &mf) {
40 MF = &mf;
42 EC.grow(2 * MF->getNumBlockIDs());
44 for (const auto &MBB : *MF) {
59 for (unsigned i = 0, e = MF->getNumBlockIDs(); i != e; ++i) {
76 const MachineFunction *MF = G.getMachineFunction();
79 for (const auto &MBB : *MF) {
LivePhysRegs.cpp 151 static void addPristines(LivePhysRegs &LiveRegs, const MachineFunction &MF,
154 for (const MCPhysReg *CSR = TRI.getCalleeSavedRegs(&MF); CSR && *CSR; ++CSR)
167 const MachineFunction &MF = *MBB.getParent();
168 const MachineFrameInfo &MFI = *MF.getFrameInfo();
173 for (const MCPhysReg *I = TRI->getCalleeSavedRegs(&MF); *I; ++I)
176 addPristines(*this, MF, MFI, *TRI);
184 const MachineFunction &MF = *MBB.getParent();
185 const MachineFrameInfo &MFI = *MF.getFrameInfo();
187 addPristines(*this, MF, MFI, *TRI);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
AllocationOrder.cpp 35 const MachineFunction &MF = VRM.getMachineFunction();
37 Order = RegClassInfo.getOrder(MF.getRegInfo().getRegClass(VirtReg));
38 if (TRI->getRegAllocationHints(VirtReg, Order, Hints, MF, &VRM, Matrix))
MachineFunctionPass.cpp 44 MachineFunction &MF = MMI.getOrCreateMachineFunction(F);
46 MachineFunctionProperties &MFProps = MF.getProperties();
61 bool RV = runOnMachineFunction(MF);
MachineBasicBlock.cpp 43 MachineBasicBlock::MachineBasicBlock(MachineFunction &MF, const BasicBlock *B)
44 : BB(B), Number(-1), xParent(&MF) {
56 const MachineFunction *MF = getParent();
57 MCContext &Ctx = MF->getContext();
61 Twine(MF->getFunctionNumber()) +
78 /// When an MBB is added to an MF, we need to update the parent pointer of the
87 MachineFunction &MF = *N->getParent();
88 N->Number = MF.addToMBBNumbering(N);
91 MachineRegisterInfo &RegInfo = MF.getRegInfo();
111 MachineFunction *MF = Parent->getParent()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
Thumb2RegisterInfo.cpp 42 MachineFunction &MF = *MBB.getParent();
43 MachineConstantPool *ConstantPool = MF.getConstantPool();
Thumb1InstrInfo.cpp 60 MachineFunction &MF = *MBB.getParent();
61 MachineFrameInfo &MFI = *MF.getFrameInfo();
63 MF.getMachineMemOperand(
89 MachineFunction &MF = *MBB.getParent();
90 MachineFrameInfo &MFI = *MF.getFrameInfo();
92 MF.getMachineMemOperand(
  /external/llvm/include/llvm/CodeGen/
MachineFunctionAnalysis.h 30 MachineFunction *MF;
40 MachineFunction &getMF() const { return *MF; }
CalcSpillWeights.h 53 MachineFunction &MF;
62 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis,
66 : MF(mf), LIS(lis), VRM(vrm), Loops(loops), MBFI(mbfi), normalize(norm) {}
74 void calculateSpillWeightsAndHints(LiveIntervals &LIS, MachineFunction &MF,
EdgeBundles.h 27 const MachineFunction *MF;
52 const MachineFunction *getMachineFunction() const { return MF; }
  /external/llvm/lib/Target/AMDGPU/
GCNHazardRecognizer.h 35 const MachineFunction &MF;
47 GCNHazardRecognizer(const MachineFunction &MF);
  /external/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 29 MachineFunction &MF = *MI->getParent()->getParent();
30 MachineFrameInfo *MFFrame = MF.getFrameInfo();
38 MachineMemOperand *MMO = MF.getMachineMemOperand(
39 MachinePointerInfo::getFixedStack(MF, FI, Offset), Flags,
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CalcSpillWeights.h 43 MachineFunction &MF;
48 VirtRegAuxInfo(MachineFunction &mf, LiveIntervals &lis,
50 MF(mf), LIS(lis), Loops(loops) {}
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86MCInstLower.h 33 const MachineFunction &MF;
38 X86MCInstLower(Mangler *mang, const MachineFunction &MF,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
LazyMachineBlockFrequencyInfo.h 50 MachineFunction *MF = nullptr;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
InstructionSelector.cpp 42 MachineFunction &MF = *MBB.getParent();
43 MachineRegisterInfo &MRI = MF.getRegInfo();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZInstrBuilder.h 29 MachineFunction &MF = *MI->getParent()->getParent();
30 MachineFrameInfo &MFFrame = MF.getFrameInfo();
38 MachineMemOperand *MMO = MF.getMachineMemOperand(
39 MachinePointerInfo::getFixedStack(MF, FI, Offset), Flags,
  /external/clang/test/Layout/
ms-x86-member-pointers.cpp 13 struct MF { char a; int (M::*mp)(); };
53 // CHECK-NEXT: 0 | struct MF
78 sizeof(MF) +
  /external/llvm/include/llvm/CodeGen/GlobalISel/
MachineIRBuilder.h 35 MachineFunction *MF;
56 assert(MF && "MachineFunction is not set");
57 return *MF;
  /external/llvm/lib/CodeGen/MIRParser/
MIParser.h 34 MachineFunction &MF;
47 PerFunctionMIParsingState(MachineFunction &MF, SourceMgr &SM,
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.h 30 MachineFunction *MF;
  /external/llvm/lib/Target/AArch64/
AArch64CleanupLocalDynamicTLSPass.cpp 41 bool runOnMachineFunction(MachineFunction &MF) override {
42 if (skipFunction(*MF.getFunction()))
45 AArch64FunctionInfo *AFI = MF.getInfo<AArch64FunctionInfo>();
97 MachineFunction *MF = I.getParent()->getParent();
98 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
115 MachineFunction *MF = I.getParent()->getParent();
116 const TargetInstrInfo *TII = MF->getSubtarget().getInstrInfo();
119 MachineRegisterInfo &RegInfo = MF->getRegInfo();
AArch64RegisterBankInfo.cpp 123 const MachineFunction &MF = *MI.getParent()->getParent();
124 const TargetSubtargetInfo &STI = MF.getSubtarget();
126 const MachineRegisterInfo &MRI = MF.getRegInfo();

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>