Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMIRPrintingPass.cpp30 std::string MachineFunctions; member
46 MachineFunctions.append(StrOS.str()); in runOnMachineFunction()
52 OS << MachineFunctions; in doFinalization()
H A DMachineModuleInfo.cpp223 MachineFunctions(std::move(MMI.MachineFunctions)) { in MachineModuleInfo()
287 auto I = MachineFunctions.find(&F); in getMachineFunction()
288 return I != MachineFunctions.end() ? I->second.get() : nullptr; in getMachineFunction()
297 auto I = MachineFunctions.insert( in getOrCreateMachineFunction()
316 MachineFunctions.erase(&F); in deleteMachineFunctionFor()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineModuleInfo.h144 DenseMap<const Function*, std::unique_ptr<MachineFunction>> MachineFunctions; variable