Searched defs:MF (Results 1 - 25 of 275) sorted by path

1234567891011

/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java717 MF(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUAsmPrinter.cpp40 bool AMDGPUAsmPrinter::runOnMachineFunction(MachineFunction &MF) { argument
43 MF.dump();
45 SetupMachineFunction(MF);
47 EmitProgramInfo(MF);
54 void AMDGPUAsmPrinter::EmitProgramInfo(MachineFunction &MF) { argument
61 for (MachineFunction::iterator BB = MF.begin(), BB_E = MF.end();
124 SIMachineFunctionInfo * MFI = MF.getInfo<SIMachineFunctionInfo>();
H A DAMDGPUConvertToISA.cpp33 virtual bool runOnMachineFunction(MachineFunction &MF);
47 bool AMDGPUConvertToISAPass::runOnMachineFunction(MachineFunction &MF) argument
52 for (MachineFunction::iterator BB = MF.begin(), BB_E = MF.end();
58 TII->convertToISA(MI, MF, MBB.findDebugLoc(I));
H A DAMDGPUISelLowering.cpp316 MachineFunction &MF = DAG.getMachineFunction(); local
317 MachineRegisterInfo &MRI = MF.getRegInfo();
H A DAMDGPUInstrInfo.cpp141 AMDGPUInstrInfo::foldMemoryOperandImpl(MachineFunction &MF, argument
149 AMDGPUInstrInfo::foldMemoryOperandImpl(MachineFunction &MF, argument
164 AMDGPUInstrInfo::unfoldMemoryOperand(MachineFunction &MF, MachineInstr *MI, argument
238 void AMDGPUInstrInfo::convertToISA(MachineInstr & MI, MachineFunction &MF, argument
241 MachineRegisterInfo &MRI = MF.getRegInfo();
H A DAMDILFrameLowering.cpp29 int AMDGPUFrameLowering::getFrameIndexOffset(const MachineFunction &MF, argument
31 const MachineFrameInfo *MFI = MF.getFrameInfo();
42 AMDGPUFrameLowering::emitPrologue(MachineFunction &MF) const
46 AMDGPUFrameLowering::emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const argument
50 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const
H A DAMDILPeepholeOptimizer.cpp274 AMDGPUPeepholeOpt::runOnFunction(Function &MF) argument
277 mF = &MF;
280 MF.dump();
282 mCTX = &MF.getType()->getContext();
284 safeNestedForEach(MF.begin(), MF.end(), MF.begin()->begin(),
288 doAtomicConversionIfNeeded(MF);
292 MF.dump();
H A DR600ExpandSpecialInstrs.cpp36 virtual bool runOnMachineFunction(MachineFunction &MF);
51 bool R600ExpandSpecialInstrsPass::runOnMachineFunction(MachineFunction &MF) { argument
55 for (MachineFunction::iterator BB = MF.begin(), BB_E = MF.end();
H A DR600ISelLowering.cpp56 MachineFunction * MF = BB->getParent(); local
57 MachineRegisterInfo &MRI = MF->getRegInfo();
147 R600MachineFunctionInfo * MFI = MF->getInfo<R600MachineFunctionInfo>();
259 MachineFunction &MF = DAG.getMachineFunction(); local
260 MachineRegisterInfo &MRI = MF.getRegInfo();
H A DR600InstrInfo.cpp78 MachineInstr * R600InstrInfo::getMovImmInstr(MachineFunction *MF, argument
81 MachineInstr * MI = MF->CreateMachineInstr(get(AMDGPU::MOV), DebugLoc());
H A DR600MachineFunctionInfo.cpp14 R600MachineFunctionInfo::R600MachineFunctionInfo(const MachineFunction &MF) argument
H A DSIAssignInterpRegs.cpp38 void AddLiveIn(MachineFunction * MF, MachineRegisterInfo & MRI,
45 virtual bool runOnMachineFunction(MachineFunction &MF);
67 bool SIAssignInterpRegsPass::runOnMachineFunction(MachineFunction &MF) argument
89 SIMachineFunctionInfo * MFI = MF.getInfo<SIMachineFunctionInfo>();
90 MachineRegisterInfo &MRI = MF.getRegInfo();
115 AddLiveIn(&MF, MRI, new_reg, virt_reg);
122 void SIAssignInterpRegsPass::AddLiveIn(MachineFunction * MF, argument
129 MF->front().addLiveIn(physReg);
130 BuildMI(MF->front(), MF
[all...]
H A DSIInstrInfo.cpp52 MachineInstr * SIInstrInfo::getMovImmInstr(MachineFunction *MF, unsigned DstReg, argument
55 MachineInstr * MI = MF->CreateMachineInstr(get(AMDGPU::V_MOV_IMM_I32), DebugLoc());
H A DSIMachineFunctionInfo.cpp15 SIMachineFunctionInfo::SIMachineFunctionInfo(const MachineFunction &MF) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp2362 ObjCMethodFamily MF = CurMethod->getMethodFamily(); local
2363 if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize &&
H A DSemaExprMember.cpp1371 ObjCMethodFamily MF = MD->getMethodFamily(); local
1372 warn = (MF != OMF_init && MF != OMF_dealloc &&
1373 MF != OMF_finalize &&
/external/clang/lib/Serialization/
H A DASTReader.cpp3430 static void updateModuleTimestamp(ModuleFile &MF) { argument
3432 std::string TimestampFilename = MF.getTimestampFilename();
H A DModuleManager.cpp161 Chain[i]->ImportedBy.remove_if([&](ModuleFile *MF) {
162 return victimSet.count(MF);
233 void ModuleManager::moduleFileAccepted(ModuleFile *MF) { argument
234 if (!GlobalIndex || GlobalIndex->loadedModuleFile(MF))
237 ModulesInCommonWithGlobalIndex.push_back(MF);
/external/clang/test/Layout/
H A Dms-x86-member-pointers.cpp13 struct MF { char a; int (M::*mp)(); }; struct
53 // CHECK-NEXT: 0 | struct MF
78 sizeof(MF) +
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp871 Function *MF = (*it)->getFunction(FnName); local
872 if (MF == F) {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1101 Function *MF = (*it)->getFunction(FnName); local
1102 if (MF == F) {
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp782 Function *MF = (*it)->getFunction(FnName); local
783 if (MF == F) {
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h82 const MachineFunction *MF; member in class:llvm::AsmPrinter
183 bool runOnMachineFunction(MachineFunction &MF) override {
184 SetupMachineFunction(MF); variable
196 void SetupMachineFunction(MachineFunction &MF);
H A DCalcSpillWeights.h50 MachineFunction &MF; member in class:llvm::VirtRegAuxInfo
62 : MF(mf), LIS(lis), Loops(loops), MBFI(mbfi), normalize(norm) {}
70 void calculateSpillWeightsAndHints(LiveIntervals &LIS, MachineFunction &MF,
H A DCallingConvLower.h176 MachineFunction &MF; member in class:llvm::CCState
240 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &MF,
250 MachineFunction &getMachineFunction() const { return MF; }
384 MF.getFrameInfo()->ensureMaxAlignment(Align);

Completed in 7198 milliseconds

1234567891011