Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp233 WasmYAML::Import Im; in dump() local
234 Im.Module = Import.Module; in dump()
235 Im.Field = Import.Field; in dump()
236 Im.Kind = Import.Kind; in dump()
237 switch (Im.Kind) { in dump()
239 Im.SigIndex = Import.SigIndex; in dump()
242 Im.GlobalImport.Type = Import.Global.Type; in dump()
246 Im.SigIndex = Import.SigIndex; in dump()
251 Im.TableImport = makeTable(0, Import.Table); in dump()
254 Im.Memory = makeLimits(Import.Memory); in dump()
[all …]
/llvm-project-15.0.7/llvm/lib/Object/
H A DWasmObjectFile.cpp1123 wasm::WasmImport Im; in parseImportSection() local
1124 Im.Module = readString(Ctx); in parseImportSection()
1125 Im.Field = readString(Ctx); in parseImportSection()
1126 Im.Kind = readUint8(Ctx); in parseImportSection()
1127 switch (Im.Kind) { in parseImportSection()
1131 if (Im.SigIndex >= NumTypes) in parseImportSection()
1137 Im.Global.Type = readUint8(Ctx); in parseImportSection()
1141 Im.Memory = readLimits(Ctx); in parseImportSection()
1146 Im.Table = readTableType(Ctx); in parseImportSection()
1161 if (Im.SigIndex >= NumTypes) in parseImportSection()
[all …]
/llvm-project-15.0.7/clang/lib/Driver/ToolChains/
H A DBareMetal.cpp65 Multilib Im = in findRISCVMultilibs() local
88 Result.Multilibs = MultilibSet().Either(I, Im, Iac, Imac, Imafc); in findRISCVMultilibs()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOpenMP.cpp19192 auto *Im = new (Context) ImaginaryLiteral(Init, OrigType); in actOnOMPReductionKindClause() local
19193 Init = S.CreateBuiltinBinOp(ELoc, BO_Add, Init, Im).get(); in actOnOMPReductionKindClause()