Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for Symtab (0.14 sec)

  1. src/debug/gosym/symtab.go

    // returning an in-memory representation.
    // Starting with Go 1.3, the Go symbol table no longer includes symbol data.
    func NewTable(symtab []byte, pcln *LineTable) (*Table, error) {
    	var n int
    	err := walksymtab(symtab, func(s sym) error {
    		n++
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	var t Table
    	if pcln.isGo12() {
    		t.go12line = pcln
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/symtab.go

    	)
    
    	symgofuncrel := symgofunc
    	if ctxt.UseRelro() {
    		symgofuncrel = groupSym("go:funcrel.*", sym.SGOFUNCRELRO)
    	}
    
    	symt := ldr.CreateSymForUpdate("runtime.symtab", 0)
    	symt.SetType(sym.SSYMTAB)
    	symt.SetSize(0)
    	symt.SetLocal(true)
    
    	// assign specific types so that they sort together.
    	// within a type they sort by size, so the .* symbols
    	// just defined above will be first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. src/internal/abi/symtab.go

    qiulaidongfeng <******@****.***> 1708042529 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    }
    
    // moduledata records information about the layout of the executable
    // image. It is written by the linker. Any changes here must be
    // matched changes to the code in cmd/link/internal/ld/symtab.go:symtab.
    // moduledata is stored in statically allocated non-pointer memory;
    // none of the pointers here are visible to the garbage collector.
    type moduledata struct {
    	sys.NotInHeap // Only in static data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/symtab.go

    Keith Randall <******@****.***> 1695057198 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:26 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util_test.cc

      mlir::OwningOpRef<mlir::ModuleOp> module =
          mlir::parseSourceString<mlir::ModuleOp>(code, &context);
      ASSERT_TRUE(module);
      mlir::SymbolTable symtab(*module);
      llvm::SmallVector<mlir::func::FuncOp> callees;
      module->walk([&](mlir::SymbolUserOpInterface op) {
        auto result = GetCallees(op, symtab, callees).succeeded();
        ASSERT_TRUE(result);
        EXPECT_EQ(callees.size(), 2);
        EXPECT_EQ(callees[0].getSymName(), "while_body_func");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/internal/objfile/plan9obj.go

    			return 0, nil, nil, err
    		}
    	}
    	if symtab, err = loadPlan9Table(f.plan9, "runtime.symtab", "runtime.esymtab"); err != nil {
    		// Same as above.
    		var err2 error
    		if symtab, err2 = loadPlan9Table(f.plan9, "symtab", "esymtab"); err2 != nil {
    			return 0, nil, nil, err
    		}
    	}
    	return textStart, symtab, pclntab, nil
    }
    
    func (f *plan9File) text() (textStart uint64, text []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 01:01:44 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/internal/objfile/pe.go

    			return 0, nil, nil, err
    		}
    	}
    	if symtab, err = loadPETable(f.pe, "runtime.symtab", "runtime.esymtab"); err != nil {
    		// Same as above.
    		var err2 error
    		if symtab, err2 = loadPETable(f.pe, "symtab", "esymtab"); err2 != nil {
    			return 0, nil, nil, err
    		}
    	}
    	return textStart, symtab, pclntab, nil
    }
    
    func (f *peFile) text() (textStart uint64, text []byte, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 20 00:56:30 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.h

    llvm::SmallVector<func::FuncOp> GetEntryFunctions(ModuleOp module);
    
    // Get all the functions referenced in a symber user op and save them in
    // `callees`.
    LogicalResult GetCallees(SymbolUserOpInterface op, SymbolTable &symtab,
                             llvm::SmallVector<func::FuncOp> &callees);
    
    // Find the first op with any of the specified types on each path rooted at the
    // `root` node in a tree. Additional checks can be applied via `predicate`. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 16 06:18:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadmacho/ldmacho.go

    }
    
    func macholoadsym(m *ldMachoObj, symtab *ldMachoSymtab) int {
    	if symtab.sym != nil {
    		return 0
    	}
    
    	m.f.MustSeek(m.base+int64(symtab.stroff), 0)
    	strbuf, _, err := m.f.Slice(uint64(symtab.strsize))
    	if err != nil {
    		return -1
    	}
    
    	symsize := 12
    	if m.is64 {
    		symsize = 16
    	}
    	n := int(symtab.nsym * uint32(symsize))
    	m.f.MustSeek(m.base+int64(symtab.symoff), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top