HomeSort by relevance Sort by last modified time
    Searched refs:mf (Results 51 - 75 of 114) sorted by null

1 23 4 5

  /external/strace/
config.status     [all...]
  /external/llvm/lib/CodeGen/
RegAllocBasic.cpp 86 MachineFunction *MF;
129 virtual bool runOnMachineFunction(MachineFunction &mf);
430 void RegAllocBase::addMBBLiveIns(MachineFunction *MF) {
433 if (MF->size() <= 1)
442 MachineFunction::iterator MBB = llvm::next(MF->begin());
443 MachineFunction::iterator MFE = MF->end();
535 bool RABasic::runOnMachineFunction(MachineFunction &mf) {
538 << ((Value*)mf.getFunction())->getName() << '\n');
540 MF = &mf;
    [all...]
ScheduleDAG.cpp 34 ScheduleDAG::ScheduleDAG(MachineFunction &mf)
35 : TM(mf.getTarget()),
38 MF(mf), MRI(mf.getRegInfo()),
ScheduleDAGInstrs.h 142 explicit ScheduleDAGInstrs(MachineFunction &mf,
InlineSpiller.cpp 55 MachineFunction &MF;
137 MachineFunction &mf,
140 MF(mf),
147 MFI(*mf.getFrameInfo()),
148 MRI(mf.getRegInfo()),
149 TII(*mf.getTarget().getInstrInfo()),
150 TRI(*mf.getTarget().getRegisterInfo()) {}
191 MachineFunction &mf,
193 return new InlineSpiller(pass, mf, vrm)
    [all...]
LiveVariables.cpp 480 bool LiveVariables::runOnMachineFunction(MachineFunction &mf) {
481 MF = &mf;
482 MRI = &mf.getRegInfo();
483 TRI = MF->getTarget().getRegisterInfo();
485 ReservedRegisters = TRI->getReservedRegs(mf);
490 PHIVarInfo = new SmallVector<unsigned, 4>[MF->getNumBlockIDs()];
495 analyzePHINodes(mf);
501 MachineBasicBlock *Entry = MF->begin();
598 I = MF->getRegInfo().liveout_begin()
    [all...]
ExecutionDepsFix.cpp 111 MachineFunction *MF;
131 virtual bool runOnMachineFunction(MachineFunction &MF);
450 bool ExeDepsFix::runOnMachineFunction(MachineFunction &mf) {
451 MF = &mf;
452 TII = MF->getTarget().getInstrInfo();
453 TRI = MF->getTarget().getRegisterInfo();
464 if (MF->getRegInfo().isPhysRegUsed(*I)) {
480 MachineBasicBlock *Entry = MF->begin();
ScheduleDAGInstrs.cpp 34 ScheduleDAGInstrs::ScheduleDAGInstrs(MachineFunction &mf,
37 : ScheduleDAG(mf), MLI(mli), MDT(mdt), MFI(mf.getFrameInfo()),
38 InstrItins(mf.getTarget().getInstrItineraryData()),
RegAllocGreedy.cpp 72 MachineFunction *MF;
246 virtual bool runOnMachineFunction(MachineFunction &mf);
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 361 * @param mf
364 void setManifest(Manifest mf) {
365 man = mf;
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
ManifestTest.java 44 private final String MANIFEST_NAME = "manifest/hyts_MANIFEST.MF";
148 Manifest mf = new Manifest(bis); local
149 assertEquals("Should be 4 main attributes", 4, mf.getMainAttributes()
152 Map<String, Attributes> entries = mf.getEntries();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderTest.java 505 Manifest mf = jarFile.getManifest(); local
506 Attributes attrs = mf.getMainAttributes();
510 JarOutputStream jos = new JarOutputStream(new FileOutputStream(mainJar), mf);
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 61 void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf) {
63 MF = &mf;
64 RegInfo = &MF->getRegInfo();
70 CanLowerReturn = TLI.CanLowerReturn(Fn->getCallingConv(), *MF,
98 MF->getFrameInfo()->CreateStackObject(TySize, Align, false, MayNeedSP);
114 MachineModuleInfo &MMI = MF->getMMI();
143 MachineBasicBlock *MBB = mf.CreateMachineBasicBlock(BB);
145 MF->push_back(MBB);
172 const TargetInstrInfo *TII = MF->getTarget().getInstrInfo()
    [all...]
ScheduleDAGFast.cpp 75 ScheduleDAGFast(MachineFunction &mf)
76 : ScheduleDAGSDNodes(mf) {}
643 return new ScheduleDAGFast(*IS->MF);
ScheduleDAGSDNodes.cpp 46 ScheduleDAGSDNodes::ScheduleDAGSDNodes(MachineFunction &mf)
47 : ScheduleDAG(mf),
48 InstrItins(mf.getTarget().getInstrItineraryData()) {}
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 303 * MessageFormat mf = new MessageFormat("{0,number,#.##}, {0,number,#.#}");
305 * String result = mf.format(objs);
308 * objs = mf.parse(result, new ParsePosition(0));
318 * MessageFormat mf = new MessageFormat("{0}, {0}, {0}");
320 * Object[] objs = mf.parse(forParsing, new ParsePosition(0));
583 MessageFormat mf = new MessageFormat(result); local
584 mf.setLocale(locale);
585 mf.format(objects, buffer, passedField);
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ChoiceFormatTest.java 417 MessageFormat mf = new MessageFormat("CHOICE {1,choice}"); local
418 String ptrn = mf.toPattern();
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 32 X86MCInstLower::X86MCInstLower(Mangler *mang, const MachineFunction &mf,
34 : Ctx(mf.getContext()), Mang(mang), MF(mf), TM(mf.getTarget()),
38 return MF.getMMI().getObjFileInfo<MachineModuleInfoMachO>();
153 MCSymbolRefExpr::Create(MF.getPICBaseSymbol(),
172 MCSymbolRefExpr::Create(MF.getPICBaseSymbol(), Ctx),
597 X86MCInstLower MCInstLowering(Mang, *MF, *this);
643 MCSymbol *PICBase = MF->getPICBaseSymbol()
    [all...]
  /external/openssl/crypto/
ia64cpuid.S 29 { .mmi; mf
  /external/llvm/utils/
llvmbuild 690 for conf, mf in configure_files[component.replace("-", "_")]:
693 if os.path.exists(conf) and os.path.exists(mf):
695 makestat = os.stat(mf)
  /external/skia/samplecode/
SampleWarp.cpp 22 SkMaskFilter* mf = SkBlurMaskFilter::Create(8, SkBlurMaskFilter::kNormal_BlurStyle); local
24 paint.setMaskFilter(mf)->unref();
  /external/skia/src/core/
SkScalerContext.cpp 387 SkMaskFilter* mf = fMaskFilter; local
390 fMaskFilter = mf; // restore
  /libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatTest.java 814 MyNumberFormat mf = new MyNumberFormat(); local
    [all...]
  /external/elfutils/
configure     [all...]
  /external/genext2fs/
configure     [all...]

Completed in 561 milliseconds

1 23 4 5