Searched refs:YamlIO (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64MachineFunctionInfo.cpp24 void yaml::AArch64FunctionInfo::mappingImpl(yaml::IO &YamlIO) { argument
25 MappingTraits<AArch64FunctionInfo>::mapping(YamlIO, *this);
H A DAArch64MachineFunctionInfo.h356 void mappingImpl(yaml::IO &YamlIO) override;
361 static void mapping(IO &YamlIO, AArch64FunctionInfo &MFI) { argument
362 YamlIO.mapOptional("hasRedZone", MFI.HasRedZone);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h186 static void mapping(IO &YamlIO, VirtualRegisterDefinition &Reg) { argument
187 YamlIO.mapRequired("id", Reg.ID);
188 YamlIO.mapRequired("class", Reg.Class);
189 YamlIO.mapOptional("preferred-register", Reg.PreferredRegister,
207 static void mapping(IO &YamlIO, MachineFunctionLiveIn &LiveIn) { argument
208 YamlIO.mapRequired("reg", LiveIn.Register);
209 YamlIO.mapOptional(
262 static void mapping(yaml::IO &YamlIO, MachineStackObject &Object) { argument
263 YamlIO.mapRequired("id", Object.ID);
264 YamlIO
340 mapping(yaml::IO &YamlIO, FixedMachineStackObject &Object) argument
402 mapping(IO &YamlIO, CallSiteInfo::ArgRegPair &ArgReg) argument
418 mapping(IO &YamlIO, CallSiteInfo &CSInfo) argument
442 mapping(IO &YamlIO, MachineConstantPoolValue &Constant) argument
469 mapping(IO &YamlIO, MachineJumpTable::Entry &Entry) argument
490 mapping(IO &YamlIO, MachineJumpTable &JT) argument
547 mapping(IO &YamlIO, MachineFrameInfo &MFI) argument
579 mappingImpl(IO &YamlIO) argument
583 mapping(IO &YamlIO, std::unique_ptr<MachineFunctionInfo> &MFI) argument
617 mapping(IO &YamlIO, MachineFunction &MF) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.h165 static void mapping(IO &YamlIO, SIArgument &A) { argument
166 if (YamlIO.outputting()) {
168 YamlIO.mapRequired("reg", A.RegisterName);
170 YamlIO.mapRequired("offset", A.StackOffset);
172 auto Keys = YamlIO.keys();
175 YamlIO.mapRequired("reg", A.RegisterName);
177 YamlIO.mapRequired("offset", A.StackOffset);
179 YamlIO.setError("missing required key 'reg' or 'offset'");
181 YamlIO.mapOptional("mask", A.Mask);
210 static void mapping(IO &YamlIO, SIArgumentInf argument
266 mapping(IO &YamlIO, SIMode &Mode) argument
302 mapping(IO &YamlIO, SIMachineFunctionInfo &MFI) argument
[all...]
H A DSIMachineFunctionInfo.cpp556 void yaml::SIMachineFunctionInfo::mappingImpl(yaml::IO &YamlIO) { argument
557 MappingTraits<SIMachineFunctionInfo>::mapping(YamlIO, *this);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMachineFunctionInfo.h181 void mappingImpl(yaml::IO &YamlIO) override;
186 static void mapping(IO &YamlIO, WebAssemblyFunctionInfo &MFI) {
187 YamlIO.mapOptional("isCFGStackified", MFI.CFGStackified, false);
H A DWebAssemblyMachineFunctionInfo.cpp109 void yaml::WebAssemblyFunctionInfo::mappingImpl(yaml::IO &YamlIO) { argument
110 MappingTraits<WebAssemblyFunctionInfo>::mapping(YamlIO, *this);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp931 NormalizedOther(IO &IO) : YamlIO(IO) {}
932 NormalizedOther(IO &IO, Optional<uint8_t> Original) : YamlIO(IO) {
936 const auto *Object = static_cast<ELFYAML::Object *>(YamlIO.getContext());
956 const auto *Object = static_cast<ELFYAML::Object *>(YamlIO.getContext());
967 YamlIO.setError("an unknown value is used for symbol's 'Other' field: " +
997 if (!YamlIO.outputting())
1014 IO &YamlIO; member in struct:llvm::yaml::__anon3757::NormalizedOther

Completed in 76 milliseconds