Searched refs:mf (Results 126 - 150 of 183) sorted by relevance

12345678

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFRegisters.cpp28 const MachineFunction &mf)
77 for (const MachineBasicBlock &B : mf)
27 PhysicalRegisterInfo(const TargetRegisterInfo &tri, const MachineFunction &mf) argument
H A DLiveVariables.cpp620 bool LiveVariables::runOnMachineFunction(MachineFunction &mf) { argument
621 MF = &mf;
622 MRI = &mf.getRegInfo();
637 analyzePHINodes(mf);
H A DScheduleDAGInstrs.cpp110 ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf, argument
113 : ScheduleDAG(mf), MLI(mli), MFI(mf.getFrameInfo()),
116 Type::getVoidTy(mf.getFunction().getContext()))), Topo(SUnits, &ExitSU) {
119 const TargetSubtargetInfo &ST = mf.getSubtarget();
H A DLiveRangeCalc.cpp51 void LiveRangeCalc::reset(const MachineFunction *mf, argument
55 MF = mf;
H A DMachineScheduler.cpp362 bool MachineScheduler::runOnMachineFunction(MachineFunction &mf) { argument
363 if (skipFunction(mf.getFunction()))
369 } else if (!mf.getSubtarget().enableMachineScheduler())
372 LLVM_DEBUG(dbgs() << "Before MISched:\n"; mf.print(dbgs()));
375 MF = &mf;
400 bool PostMachineScheduler::runOnMachineFunction(MachineFunction &mf) { argument
401 if (skipFunction(mf.getFunction()))
407 } else if (!mf.getSubtarget().enablePostRAMachineScheduler()) {
411 LLVM_DEBUG(dbgs() << "Before post-MI-sched:\n"; mf.print(dbgs()));
414 MF = &mf;
[all...]
H A DRegAllocGreedy.cpp430 bool runOnMachineFunction(MachineFunction &mf) override;
3215 bool RAGreedy::runOnMachineFunction(MachineFunction &mf) {
3217 << "********** Function: " << mf.getName() << '\n');
3219 MF = &mf;
3222 RCI.runOnMachineFunction(mf);
3252 calculateSpillWeightsAndHints(*LIS, mf, VRM, *Loops, *MBFI);
/freebsd-11-stable/contrib/ntp/ntpd/
H A DMakefile.in333 $(top_srcdir)/bincheck.mf $(top_srcdir)/check-libopts.mf \
334 $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf \
335 $(top_srcdir)/sntp/check-libntp.mf \
845 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/bincheck.mf $(top_srcdir)/check-libopts.mf $(top_srcdir)/sntp/check-libntp.mf $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf
[all...]
/freebsd-11-stable/contrib/opie/
H A Dopielogin.c1411 FILE *mf; local
1415 if ((mf = fopen(MOTD_FILE, "r")) != NULL) {
1416 while ((c = getc(mf)) != EOF && !stopmotd)
1418 fclose(mf);
/freebsd-11-stable/crypto/openssl/crypto/
H A Dia64cpuid.S29 { .mmi; mf;;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAGInstrs.h255 explicit ScheduleDAGInstrs(MachineFunction &mf,
H A DRDFRegisters.h99 const MachineFunction &mf);
H A DRegisterPressure.h403 void init(const MachineFunction *mf, const RegisterClassInfo *rci,
H A DSlotIndexes.h322 MachineFunction *mf; member in class:llvm::SlotIndexes
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp81 ScheduleDAGFast(MachineFunction &mf) argument
82 : ScheduleDAGSDNodes(mf) {}
645 ScheduleDAGLinearize(MachineFunction &mf) : ScheduleDAGSDNodes(mf) {} argument
H A DScheduleDAGSDNodes.cpp48 ScheduleDAGSDNodes::ScheduleDAGSDNodes(MachineFunction &mf) argument
49 : ScheduleDAG(mf), BB(nullptr), DAG(nullptr),
50 InstrItins(mf.getSubtarget().getInstrItineraryData()) {}
H A DScheduleDAGRRList.cpp189 ScheduleDAGRRList(MachineFunction &mf, bool needlatency, argument
192 : ScheduleDAGSDNodes(mf),
195 const TargetSubtargetInfo &STI = mf.getSubtarget();
1752 RegReductionPQBase(MachineFunction &mf,
1760 SrcOrder(srcorder), MF(mf), TII(tii), TRI(tri), TLI(tli) {
1876 RegReductionPriorityQueue(MachineFunction &mf, argument
1882 : RegReductionPQBase(mf, SF::HasReadyFilter, tracksrp, srcorder,
/freebsd-11-stable/contrib/libpcap/msdos/
H A Dmakefile.wc34 -$(MODEL) -mf -zff -zgf -zq -bt=dos -fr=nul -w6 -fpi &
/freebsd-11-stable/usr.sbin/pmcstat/
H A Dpmcpl_callgraph.c667 pmcpl_cg_shutdown(FILE *mf) argument
672 (void) mf;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp434 bool MipsConstantIslands::runOnMachineFunction(MachineFunction &mf) { argument
437 MF = &mf;
438 MCP = mf.getConstantPool();
439 STI = &static_cast<const MipsSubtarget &>(mf.getSubtarget());
/freebsd-11-stable/contrib/ntp/sntp/unity/
H A DMakefile.in204 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depsver.mf \
205 $(top_srcdir)/includes.mf \
475 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf $(am__configure_deps)
495 $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf $(am__empty):
863 # depsver.mf included in Makefile.am for directories with .deps
883 # If you modify depsver.mf, please make the changes to the master
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp554 bool ARMLowOverheadLoops::runOnMachineFunction(MachineFunction &mf) { argument
555 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(mf.getSubtarget());
559 MF = &mf;
/freebsd-11-stable/contrib/gcclibs/libssp/
H A Dconfigure6609 depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
6611 mf=`echo "$mf" | sed -e 's/:.*$//'`
6618 if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
6619 dirpart=`(dirname "$mf") 2>/dev/null ||
6620 $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
6621 X"$mf" : 'X\(//\)[^/]' \| \
6622 X"$mf" : 'X\(//\)$' \| \
6623 X"$mf" : 'X\(/\)' \| \
6625 echo X"$mf" |
[all...]
/freebsd-11-stable/sys/dev/ixl/
H A Dif_ixlv.c833 struct ixlv_mac_filter *mf, *mf_temp; local
853 SLIST_FOREACH_SAFE(mf, sc->mac_filters, next, mf_temp) {
854 if (mf->flags & IXL_FILTER_DEL) {
855 SLIST_REMOVE(sc->mac_filters, mf,
857 free(mf, M_DEVBUF);
859 mf->flags |= IXL_FILTER_ADD;
/freebsd-11-stable/contrib/ntp/sntp/tests/
H A DMakefile.in493 $(srcdir)/fileHandlingTest.h.in $(top_srcdir)/depsver.mf \
494 $(top_srcdir)/includes.mf \
877 $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf $(am__configure_deps)
897 $(top_srcdir)/depsver.mf $(top_srcdir)/includes.mf $(am__empty):
1578 # depsver.mf included in Makefile.am for directories with .deps
1598 # If you modify depsver.mf, please make the changes to the master
/freebsd-11-stable/contrib/amd/amd/
H A Dnfs_subr.c602 mntfs *mf; local
609 mf = mp->am_al->al_mnt;
610 if (!mf)
612 mmp = (mnt_map *) mf->mf_private;

Completed in 999 milliseconds

12345678