Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp64 MachineFunctions(std::move(MMI.MachineFunctions)) { in MachineModuleInfo()
104 auto I = MachineFunctions.find(&F); in getMachineFunction()
105 return I != MachineFunctions.end() ? I->second.get() : nullptr; in getMachineFunction()
114 auto I = MachineFunctions.insert( in getOrCreateMachineFunction()
133 MachineFunctions.erase(&F); in deleteMachineFunctionFor()
140 auto I = MachineFunctions.insert(std::make_pair(&F, std::move(MF))); in insertFunction()
H A DMIRPrintingPass.cpp30 std::string MachineFunctions; member
46 MachineFunctions.append(StrOS.str()); in runOnMachineFunction()
52 OS << MachineFunctions; in doFinalization()
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Ddebugtrap.ll5 ; MachineFunctions.
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h120 DenseMap<const Function*, std::unique_ptr<MachineFunction>> MachineFunctions; variable