HomeSort by relevance Sort by last modified time
    Searched refs:MF (Results 201 - 225 of 517) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/include/llvm/CodeGen/
MachineSSAUpdater.h 59 explicit MachineSSAUpdater(MachineFunction &MF,
DFAPacketizer.h 95 const MachineFunction &MF;
111 MachineFunction &MF, MachineLoopInfo &MLI, MachineDominatorTree &MDT,
  /external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 38 /// using MF->getDebugLocTuple().
43 const MachineFunction *MF;
  /external/llvm/include/llvm/Target/
TargetSubtargetInfo.h 117 virtual void resetSubtargetFeatures(const MachineFunction *MF) { }
  /external/llvm/lib/CodeGen/AsmPrinter/
DbgValueHistoryCalculator.h 49 void calculateDbgValueHistory(const MachineFunction *MF,
WinCodeViewLineTables.h 104 void maybeRecordLocation(DebugLoc DL, const MachineFunction *MF);
131 void beginFunction(const MachineFunction *MF) override;
DbgValueHistoryCalculator.cpp 149 static void collectChangingRegs(const MachineFunction *MF,
152 for (const auto &MBB : *MF) {
163 void calculateDbgValueHistory(const MachineFunction *MF,
167 collectChangingRegs(MF, TRI, ChangingRegs);
170 for (const auto &MBB : *MF) {
199 if (!MBB.empty() && &MBB != &MF->back()) {
WinCodeViewLineTables.cpp 83 const MachineFunction *MF) {
84 const MDNode *Scope = DL.getScope(MF->getFunction()->getContext());
264 void WinCodeViewLineTables::beginFunction(const MachineFunction *MF) {
270 const Function *GV = MF->getFunction();
280 for (const auto &MBB : *MF) {
301 PrologEndLoc.getFnDebugLoc(MF->getFunction()->getContext());
302 maybeRecordLocation(FnStartDL, MF);
306 void WinCodeViewLineTables::endFunction(const MachineFunction *MF) {
310 const Function *GV = MF->getFunction();
333 maybeRecordLocation(DL, Asm->MF);
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.h 33 getPointerRegClass(const MachineFunction &MF,
ARMConstantIslandPass.cpp 258 MachineFunction *MF;
270 bool runOnMachineFunction(MachineFunction &MF) override;
332 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end();
351 DEBUG(MF->dump());
377 bool ARMConstantIslands::runOnMachineFunction(MachineFunction &mf) {
378 MF = &mf;
379 MCP = mf.getConstantPool();
385 TII = (const ARMBaseInstrInfo*)MF->getTarget().getInstrInfo()
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 49 bool MipsDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
51 bool Ret = SelectionDAGISel::runOnMachineFunction(MF);
53 processFunctionAfterISel(MF);
61 unsigned GlobalBaseReg = MF->getInfo<MipsFunctionInfo>()->getGlobalBaseReg();
MipsSEISelDAGToDAG.h 28 bool runOnMachineFunction(MachineFunction &MF) override;
31 MachineFunction &MF);
106 void processFunctionAfterISel(MachineFunction &MF) override;
110 void initGlobalBaseReg(MachineFunction &MF);
MipsSEISelDAGToDAG.cpp 39 bool MipsSEDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
42 return MipsDAGToDAGISel::runOnMachineFunction(MF);
46 MachineFunction &MF) {
47 MachineInstrBuilder MIB(MF, &MI);
123 void MipsSEDAGToDAGISel::initGlobalBaseReg(MachineFunction &MF) {
124 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
129 MachineBasicBlock &MBB = MF.front();
131 MachineRegisterInfo &RegInfo = MF.getRegInfo();
132 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo();
146 MF.getRegInfo().addLiveIn(Mips::T9_64)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZMachineFunctionInfo.h 28 explicit SystemZMachineFunctionInfo(MachineFunction &MF)
SystemZLongBranch.cpp 158 MachineFunction *MF;
262 MF->RenumberBlocks();
263 unsigned NumBlocks = MF->size();
271 BlockPosition Position(MF->getAlignment());
273 MachineBasicBlock *MBB = MF->getBlockNumbered(I);
335 BlockPosition Position(MF->getAlignment());
436 BlockPosition Position(MF->getAlignment());
452 MF = &F;
  /external/llvm/lib/CodeGen/
MachineCopyPropagation.cpp 46 bool runOnMachineFunction(MachineFunction &MF) override;
332 bool MachineCopyPropagation::runOnMachineFunction(MachineFunction &MF) {
333 if (skipOptnoneFunction(*MF.getFunction()))
338 TRI = MF.getTarget().getRegisterInfo();
339 TII = MF.getTarget().getInstrInfo();
340 MRI = &MF.getRegInfo();
342 for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
ExpandPostRAPseudos.cpp 181 bool ExpandPostRA::runOnMachineFunction(MachineFunction &MF) {
184 << "********** Function: " << MF.getName() << '\n');
185 TRI = MF.getTarget().getRegisterInfo();
186 TII = MF.getTarget().getInstrInfo();
190 for (MachineFunction::iterator mbbi = MF.begin(), mbbe = MF.end();
RegAllocBasic.cpp 65 MachineFunction *MF;
107 bool runOnMachineFunction(MachineFunction &mf) override;
203 LiveRangeEdit LRE(&Spill, SplitVRegs, *MF, *LIS, VRM);
262 LiveRangeEdit LRE(&VirtReg, SplitVRegs, *MF, *LIS, VRM);
270 bool RABasic::runOnMachineFunction(MachineFunction &mf) {
273 << mf.getName() << '\n');
275 MF = &mf;
280 calculateSpillWeightsAndHints(*LIS, *MF,
284 SpillerInstance.reset(createInlineSpiller(*this, *MF, *VRM))
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h 81 explicit AArch64FunctionInfo(MachineFunction &MF)
85 (void)MF;
  /external/llvm/lib/Target/PowerPC/
PPCCodeEmitter.cpp 82 bool runOnMachineFunction(MachineFunction &MF) override;
99 bool PPCCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
100 assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
101 MF.getTarget().getRelocationModel() != Reloc::Static) &&
108 MCE.startFunction(MF);
109 for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB)
111 } while (MCE.finishFunction(MF));
PPCInstrInfo.cpp 229 MachineFunction &MF = *MI->getParent()->getParent();
277 return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
772 PPCInstrInfo::StoreRegToStackSlot(MachineFunction &MF,
784 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STW))
790 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STD))
795 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFD))
800 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STFS))
805 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CR))
811 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::SPILL_CRBIT))
817 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(PPC::STVX)
    [all...]
  /external/llvm/lib/Target/R600/
R600RegisterInfo.cpp 27 BitVector R600RegisterInfo::getReservedRegs(const MachineFunction &MF) const {
52 TII->reserveIndirectRegisters(Reserved, MF);
  /external/llvm/lib/Target/X86/
X86FixupLEAs.cpp 41 bool processBasicBlock(MachineFunction &MF, MachineFunction::iterator MFI);
88 bool runOnMachineFunction(MachineFunction &MF) override;
91 MachineFunction *MF;
108 NewMI = BuildMI(*MF, MI->getDebugLoc(),
153 MF = &Func;
309 NewMI = BuildMI(*MF, MI->getDebugLoc(), TII->get(addrr_opcode))
319 NewMI = BuildMI(*MF, MI->getDebugLoc(), TII->get(addri_opcode))
332 bool FixupLEAPass::processBasicBlock(MachineFunction &MF,
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 89 void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, bool isKill,
100 void loadRegFromAddr(MachineFunction &MF, unsigned DestReg,
105 MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
110 MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
117 unsigned createVR(MachineFunction* MF, MVT VT) const;
157 const MachineFunction &MF) const override;
HexagonPeephole.cpp 93 bool runOnMachineFunction(MachineFunction &MF) override;
113 bool HexagonPeephole::runOnMachineFunction(MachineFunction &MF) {
114 QII = static_cast<const HexagonInstrInfo *>(MF.getTarget().
116 QRI = static_cast<const HexagonRegisterInfo *>(MF.getTarget().
118 MRI = &MF.getRegInfo();
126 for (MachineFunction::iterator MBBb = MF.begin(), MBBe = MF.end();

Completed in 2753 milliseconds

1 2 3 4 5 6 7 891011>>