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.cpp61 MachineFunctions(std::move(MMI.MachineFunctions)) { in MachineModuleInfo()
91 auto I = MachineFunctions.find(&F); in getMachineFunction()
92 return I != MachineFunctions.end() ? I->second.get() : nullptr; in getMachineFunction()
101 auto I = MachineFunctions.insert( in getOrCreateMachineFunction()
125 MachineFunctions.erase(&F); in deleteMachineFunctionFor()
132 auto I = MachineFunctions.insert(std::make_pair(&F, std::move(MF))); in insertFunction()
H A DMIRPrintingPass.cpp39 std::string MachineFunctions; member
55 MachineFunctions.append(Str); in runOnMachineFunction()
61 OS << MachineFunctions; in doFinalization()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h124 DenseMap<const Function*, std::unique_ptr<MachineFunction>> MachineFunctions; variable