Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for symabi (0.17 sec)

  1. src/cmd/go/internal/work/gc.go

    			return err
    		}
    
    		return sh.run(p.Dir, p.ImportPath, nil, args...)
    	}
    
    	var symabis string // Only set if we actually create the file
    	p := a.Package
    	if len(sfiles) != 0 {
    		symabis = a.Objdir + "symabis"
    		if err := mkSymabis(p, sfiles, symabis); err != nil {
    			return "", err
    		}
    	}
    
    	return symabis, nil
    }
    
    // toolVerify checks that the command line args writes the same output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. 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)
  3. pkg/registry/storagemigration/storagemigration/storage/storage.go

    		NewFunc:     func() runtime.Object { return &svmapi.StorageVersionMigration{} },
    		NewListFunc: func() runtime.Object { return &svmapi.StorageVersionMigrationList{} },
    		ObjectNameFunc: func(obj runtime.Object) (string, error) {
    			return obj.(*svmapi.StorageVersionMigration).Name, nil
    		},
    		DefaultQualifiedResource:  svmapi.Resource("storageversionmigrations"),
    		SingularQualifiedResource: svmapi.Resource("storageversionmigration"),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/objfile/macho.go

    	}
    	return &machoFile{f}, nil
    }
    
    func (f *machoFile) symbols() ([]Sym, error) {
    	if f.macho.Symtab == nil {
    		return nil, nil
    	}
    
    	// Build sorted list of addresses of all symbols.
    	// We infer the size of a symbol by looking at where the next symbol begins.
    	var addrs []uint64
    	for _, s := range f.macho.Symtab.Syms {
    		// Skip stab debug info.
    		if s.Type&stabTypeMask == 0 {
    			addrs = append(addrs, s.Value)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/internal/objfile/objfile.go

    	// Otherwise, read the pcln tables and build a Liner out of that.
    	textStart, symtab, pclntab, err := e.raw.pcln()
    	if err != nil {
    		return nil, err
    	}
    	syms, err := e.raw.symbols()
    	if err == nil {
    		for _, s := range syms {
    			if s.Name == "runtime.text" {
    				textStart = s.Addr
    				break
    			}
    		}
    	}
    	return gosym.NewTable(symtab, gosym.NewLineTable(pclntab, textStart))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/xla_validate_inputs.cc

      void runOnOperation() override;
    };
    
    LogicalResult HasNoNestedEntryFunctions(
        const llvm::SmallVector<func::FuncOp> &entry_funcs, SymbolTable &symtab) {
      auto calls_entry_functions = [&](SymbolUserOpInterface op) {
        llvm::SmallVector<func::FuncOp> callees;
        if (GetCallees(op, symtab, callees).failed()) {
          return false;
        }
        for (auto &callee : callees) {
          if (IsEntryFunction(callee)) {
            return true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 19:29:14 UTC 2024
    - 3.8K 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. 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)
  10. src/debug/macho/file.go

    		if strings.Contains(name, ".") && name[0] == '_' {
    			name = name[1:]
    		}
    		symtab = append(symtab, Symbol{
    			Name:  name,
    			Type:  n.Type,
    			Sect:  n.Sect,
    			Desc:  n.Desc,
    			Value: n.Value,
    		})
    	}
    	st := new(Symtab)
    	st.LoadBytes = LoadBytes(cmddat)
    	st.Syms = symtab
    	return st, nil
    }
    
    type relocInfo struct {
    	Addr   uint32
    	Symnum uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top