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

References

include/llvm/ObjectYAML/WasmYAML.h
  190     return S->Type == wasm::WASM_SEC_CUSTOM;
  266     return S->Type == wasm::WASM_SEC_TYPE;
  276     return S->Type == wasm::WASM_SEC_IMPORT;
  286     return S->Type == wasm::WASM_SEC_FUNCTION;
  296     return S->Type == wasm::WASM_SEC_TABLE;
  306     return S->Type == wasm::WASM_SEC_MEMORY;
  316     return S->Type == wasm::WASM_SEC_GLOBAL;
  326     return S->Type == wasm::WASM_SEC_EVENT;
  336     return S->Type == wasm::WASM_SEC_EXPORT;
  346     return S->Type == wasm::WASM_SEC_START;
  356     return S->Type == wasm::WASM_SEC_ELEM;
  366     return S->Type == wasm::WASM_SEC_CODE;
  376     return S->Type == wasm::WASM_SEC_DATA;
  386     return S->Type == wasm::WASM_SEC_DATACOUNT;
lib/ObjectYAML/WasmEmitter.cpp
  510   switch (Sec.Type) {
  555     if (!Checker.isValidSectionOrder(Sec->Type, SecName)) {
  556       reportError("out of order section type: " + Twine(Sec->Type));
  559     encodeULEB128(Sec->Type, OS);
  591       reportError("unknown section type: " + Twine(Sec->Type));
lib/ObjectYAML/WasmYAML.cpp
   46   IO.mapRequired("Type", Section.Type);
  165     SectionType = Section->Type;