/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | MIRYamlMapping.h | 203 YamlIO.mapRequired("id", Reg.ID); 204 YamlIO.mapRequired("class", Reg.Class); 225 YamlIO.mapOptional( 279 YamlIO.mapRequired("id", Object.ID); 282 YamlIO.mapOptional( 359 YamlIO.mapRequired("id", Object.ID); 360 YamlIO.mapOptional( 564 YamlIO.mapRequired("id", Entry.ID); 585 YamlIO.mapRequired("kind", JT.Kind); 685 MFI->mappingImpl(YamlIO); [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/ |
H A D | SIMachineFunctionInfo.h | 135 static void mapping(IO &YamlIO, SIArgument &A) { 136 if (YamlIO.outputting()) { 138 YamlIO.mapRequired("reg", A.RegisterName); 142 auto Keys = YamlIO.keys(); 145 YamlIO.mapRequired("reg", A.RegisterName); 151 YamlIO.mapOptional("mask", A.Mask); 184 YamlIO.mapOptional("queuePtr", AI.QueuePtr); 241 static void mapping(IO &YamlIO, SIMode &Mode) { 242 YamlIO.mapOptional("ieee", Mode.IEEE, true); 287 void mappingImpl(yaml::IO &YamlIO) override; [all …]
|
H A D | SIMachineFunctionInfo.cpp | 652 void yaml::SIMachineFunctionInfo::mappingImpl(yaml::IO &YamlIO) { in mappingImpl() argument 653 MappingTraits<SIMachineFunctionInfo>::mapping(YamlIO, *this); in mappingImpl()
|
/openbsd/gnu/llvm/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyMachineFunctionInfo.h | 202 void mappingImpl(yaml::IO &YamlIO) override; 207 static void mapping(IO &YamlIO, WebAssemblyFunctionInfo &MFI) { 208 YamlIO.mapOptional("params", MFI.Params, std::vector<FlowStringValue>()); 209 YamlIO.mapOptional("results", MFI.Results, std::vector<FlowStringValue>()); 210 YamlIO.mapOptional("isCFGStackified", MFI.CFGStackified, false); 211 YamlIO.mapOptional("wasmEHFuncInfo", MFI.SrcToUnwindDest); 216 static void inputOne(IO &YamlIO, StringRef Key, 218 YamlIO.mapRequired(Key.str().c_str(), 222 static void output(IO &YamlIO, BBNumberMap &SrcToUnwindDest) { 224 YamlIO.mapRequired(std::to_string(KV.first).c_str(), KV.second);
|
H A D | WebAssemblyMachineFunctionInfo.cpp | 150 void yaml::WebAssemblyFunctionInfo::mappingImpl(yaml::IO &YamlIO) { in mappingImpl() argument 151 MappingTraits<WebAssemblyFunctionInfo>::mapping(YamlIO, *this); in mappingImpl()
|
/openbsd/gnu/llvm/llvm/lib/Target/RISCV/ |
H A D | RISCVMachineFunctionInfo.h | 33 void mappingImpl(yaml::IO &YamlIO) override; 38 static void mapping(IO &YamlIO, RISCVMachineFunctionInfo &MFI) { 39 YamlIO.mapOptional("varArgsFrameIndex", MFI.VarArgsFrameIndex); 40 YamlIO.mapOptional("varArgsSaveSize", MFI.VarArgsSaveSize);
|
H A D | RISCVMachineFunctionInfo.cpp | 29 void yaml::RISCVMachineFunctionInfo::mappingImpl(yaml::IO &YamlIO) { in mappingImpl() argument 30 MappingTraits<RISCVMachineFunctionInfo>::mapping(YamlIO, *this); in mappingImpl()
|
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/ |
H A D | AArch64MachineFunctionInfo.cpp | 30 void yaml::AArch64FunctionInfo::mappingImpl(yaml::IO &YamlIO) { in mappingImpl() argument 31 MappingTraits<AArch64FunctionInfo>::mapping(YamlIO, *this); in mappingImpl()
|
H A D | AArch64MachineFunctionInfo.h | 465 void mappingImpl(yaml::IO &YamlIO) override; 470 static void mapping(IO &YamlIO, AArch64FunctionInfo &MFI) { 471 YamlIO.mapOptional("hasRedZone", MFI.HasRedZone);
|
/openbsd/gnu/llvm/clang/docs/analyzer/user-docs/ |
H A D | TaintAnalysisConfiguration.rst | 8 …ettings by providing a configuration file in `YAML <http://llvm.org/docs/YamlIO.html#introduction-… 100 The configuration file should have valid `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-ya… 121 An entry under `Filters` is a `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-yaml>`_ objec… 137 An entry under `Propagation` is a `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-yaml>`_ o… 163 An entry under `Sinks` is a `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-yaml>`_ object …
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | Reference.rst | 56 YamlIO 221 :doc:`YamlIO`
|
H A D | AMDGPUUsage.rst | 2655 :doc:`YamlIO`).
|
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/ |
H A D | ELFYAML.cpp | 1171 NormalizedOther(IO &IO) : YamlIO(IO) {} in NormalizedOther() 1172 NormalizedOther(IO &IO, std::optional<uint8_t> Original) : YamlIO(IO) { in NormalizedOther() 1176 const auto *Object = static_cast<ELFYAML::Object *>(YamlIO.getContext()); in NormalizedOther() 1196 const auto *Object = static_cast<ELFYAML::Object *>(YamlIO.getContext()); in toValue() 1207 YamlIO.setError("an unknown value is used for symbol's 'Other' field: " + in toValue() 1237 if (!YamlIO.outputting()) in getFlags() 1259 IO &YamlIO; member
|
/openbsd/gnu/llvm/clang/docs/analyzer/ |
H A D | checkers.rst | 2416 External taint configuration is in `YAML <http://llvm.org/docs/YamlIO.html#introduction-to-yaml>`_ …
|