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

References

lib/Object/WasmObjectFile.cpp
  761     Reloc.Type = readVaruint32(Ctx);
  768     switch (Reloc.Type) {
  819                                                 Twine(Reloc.Type),
  827     if (Reloc.Type == wasm::R_WASM_TABLE_INDEX_I32 ||
  828         Reloc.Type == wasm::R_WASM_MEMORY_ADDR_I32 ||
  829         Reloc.Type == wasm::R_WASM_SECTION_OFFSET_I32 ||
  830         Reloc.Type == wasm::R_WASM_FUNCTION_OFFSET_I32)
 1481   if (Rel.Type == wasm::R_WASM_TYPE_INDEX_LEB)
 1491   return Rel.Type;
 1504   switch (Rel.Type) {
tools/lld/wasm/InputChunks.cpp
   53     switch (rel.Type) {
   80     if (rel.Type != R_WASM_GLOBAL_INDEX_LEB) {
   83         warn("unexpected existing value for " + relocTypeToString(rel.Type) +
  110     LLVM_DEBUG(dbgs() << "apply reloc: type=" << relocTypeToString(rel.Type));
  111     if (rel.Type != R_WASM_TYPE_INDEX_LEB)
  117     switch (rel.Type) {
  155     writeUleb128(os, rel.Type, "reloc type");
  159     if (relocTypeHasAddend(rel.Type))
  182   switch (rel.Type) {
  198   switch (rel.Type) {
  309     LLVM_DEBUG(dbgs() << "gen reloc: type=" << relocTypeToString(rel.Type)
  334       if (rel.Type == R_WASM_TABLE_INDEX_I32)
tools/lld/wasm/InputFiles.cpp
   92   if (reloc.Type == R_WASM_TYPE_INDEX_LEB) {
  105   switch (reloc.Type) {
  123   switch (reloc.Type) {
  167   if (reloc.Type != R_WASM_TYPE_INDEX_LEB) {
  176   switch (reloc.Type) {
  183     if (reloc.Type == R_WASM_TABLE_INDEX_REL_SLEB)
  305       if (reloc.Type == R_WASM_FUNCTION_INDEX_LEB)
tools/lld/wasm/MarkLive.cpp
  113       if (reloc.Type == R_WASM_TYPE_INDEX_LEB)
  124       if (reloc.Type == R_WASM_TABLE_INDEX_SLEB ||
  125           reloc.Type == R_WASM_TABLE_INDEX_I32) {
tools/lld/wasm/Relocations.cpp
   62     if (reloc.Type == R_WASM_TYPE_INDEX_LEB) {
   73     switch (reloc.Type) {
   88       switch (reloc.Type) {
   94         error(toString(file) + ": relocation " + relocTypeToString(reloc.Type) +
tools/obj2yaml/wasm2yaml.cpp
  365       R.Type = Reloc.Type;