Lines Matching refs:yaml

114   void convert(yaml::MachineFunction &MF, const MachineRegisterInfo &RegInfo,
116 void convert(ModuleSlotTracker &MST, yaml::MachineFrameInfo &YamlMFI,
118 void convert(yaml::MachineFunction &MF,
120 void convert(ModuleSlotTracker &MST, yaml::MachineJumpTable &YamlJTI,
122 void convertStackObjects(yaml::MachineFunction &YMF,
124 void convertEntryValueObjects(yaml::MachineFunction &YMF,
127 void convertCallSiteObjects(yaml::MachineFunction &YMF,
130 void convertMachineMetadataNodes(yaml::MachineFunction &YMF,
171 namespace yaml { namespace
188 static void printRegMIR(unsigned Reg, yaml::StringValue &Dest, in printRegMIR()
197 yaml::MachineFunction YamlMF; in print()
246 std::unique_ptr<yaml::MachineFunctionInfo>(TM.convertFuncInfoToYAML(MF)); in print()
262 yaml::Output Out(OS); in print()
287 static void printRegClassOrBank(unsigned Reg, yaml::StringValue &Dest, in printRegClassOrBank()
310 void MIRPrinter::convert(yaml::MachineFunction &MF, in convert()
318 yaml::VirtualRegisterDefinition VReg; in convert()
331 yaml::MachineFunctionLiveIn LiveIn; in convert()
341 std::vector<yaml::FlowStringValue> CalleeSavedRegisters; in convert()
343 yaml::FlowStringValue Reg; in convert()
352 yaml::MachineFrameInfo &YamlMFI, in convert()
383 void MIRPrinter::convertEntryValueObjects(yaml::MachineFunction &YMF, in convertEntryValueObjects()
389 yaml::EntryValueObject &Obj = YMF.EntryValueObjects.emplace_back(); in convertEntryValueObjects()
396 void MIRPrinter::convertStackObjects(yaml::MachineFunction &YMF, in convertStackObjects()
415 yaml::FixedMachineStackObject YamlObject; in convertStackObjects()
418 ? yaml::FixedMachineStackObject::SpillSlot in convertStackObjects()
419 : yaml::FixedMachineStackObject::DefaultType; in convertStackObjects()
445 yaml::MachineStackObject YamlObject; in convertStackObjects()
451 ? yaml::MachineStackObject::SpillSlot in convertStackObjects()
453 ? yaml::MachineStackObject::VariableSized in convertStackObjects()
454 : yaml::MachineStackObject::DefaultType; in convertStackObjects()
472 yaml::StringValue Reg; in convertStackObjects()
530 void MIRPrinter::convertCallSiteObjects(yaml::MachineFunction &YMF, in convertCallSiteObjects()
535 yaml::CallSiteInfo YmlCS; in convertCallSiteObjects()
536 yaml::CallSiteInfo::MachineInstrLoc CallLocation; in convertCallSiteObjects()
547 yaml::CallSiteInfo::ArgRegPair YmlArgReg; in convertCallSiteObjects()
557 [](yaml::CallSiteInfo A, yaml::CallSiteInfo B) { in convertCallSiteObjects()
564 void MIRPrinter::convertMachineMetadataNodes(yaml::MachineFunction &YMF, in convertMachineMetadataNodes()
577 void MIRPrinter::convert(yaml::MachineFunction &MF, in convert()
589 yaml::MachineConstantPoolValue YamlConstant; in convert()
600 yaml::MachineJumpTable &YamlJTI, in convert()
606 yaml::MachineJumpTable::Entry Entry; in convert()
1004 yaml::Output Out(OS); in printMIR()