reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Object/WasmObjectFile.cpp
  214   Section.Type = readUint8(Ctx);
  215   LLVM_DEBUG(dbgs() << "readSection type=" << Section.Type << "\n");
  223   if (Section.Type == wasm::WASM_SEC_CUSTOM) {
  236   if (!Checker.isValidSectionOrder(Section.Type, Section.Name)) {
  238                                        llvm::to_string(Section.Type),
  292   switch (Sec.Type) {
  323         "Invalid section type: " + Twine(Sec.Type), object_error::parse_failed);
 1394   switch (S.Type) {
 1444   return getWasmSection(Sec).Type == wasm::WASM_SEC_CODE;
 1448   return getWasmSection(Sec).Type == wasm::WASM_SEC_DATA;
tools/lld/wasm/InputChunks.h
  207     assert(section.Type == llvm::wasm::WASM_SEC_CUSTOM);
tools/lld/wasm/InputFiles.cpp
  290     if (section.Type == WASM_SEC_CODE) {
  293     } else if (section.Type == WASM_SEC_DATA) {
  296     } else if (section.Type == WASM_SEC_CUSTOM) {
tools/llvm-readobj/WasmDumper.cpp
  170     W.printEnum("Type", WasmSec.Type, makeArrayRef(WasmSectionTypes));
  173     switch (WasmSec.Type) {
tools/obj2yaml/wasm2yaml.cpp
  185     switch (WasmSec.Type) {