Home
last modified time | relevance | path

Searched refs:MachineFunctions (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp44 MachineFunctions(std::move(MMI.MachineFunctions)) { in MachineModuleInfo()
73 auto I = MachineFunctions.find(&F); in getMachineFunction()
74 return I != MachineFunctions.end() ? I->second.get() : nullptr; in getMachineFunction()
83 auto I = MachineFunctions.insert( in getOrCreateMachineFunction()
107 MachineFunctions.erase(&F); in deleteMachineFunctionFor()
114 auto I = MachineFunctions.insert(std::make_pair(&F, std::move(MF))); in insertFunction()
H A DMIRPrintingPass.cpp46 std::string MachineFunctions; member
66 MachineFunctions.append(Str); in runOnMachineFunction()
72 OS << MachineFunctions; in doFinalization()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h104 DenseMap<const Function*, std::unique_ptr<MachineFunction>> MachineFunctions; variable