Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for symabi (0.12 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/objfile/elf.go

    	return syms, nil
    }
    
    func (f *elfFile) pcln() (textStart uint64, symtab, pclntab []byte, err error) {
    	if sect := f.elf.Section(".text"); sect != nil {
    		textStart = sect.Addr
    	}
    
    	sect := f.elf.Section(".gosymtab")
    	if sect == nil {
    		// try .data.rel.ro.gosymtab, for PIE binaries
    		sect = f.elf.Section(".data.rel.ro.gosymtab")
    	}
    	if sect != nil {
    		if symtab, err = sect.Data(); err != nil {
    			return 0, nil, nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/runtime/pprof/runtime.go

    	"runtime"
    	"unsafe"
    )
    
    // runtime_FrameStartLine is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameStartLine(f *runtime.Frame) int
    
    // runtime_FrameSymbolName is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameSymbolName(f *runtime.Frame) string
    
    // runtime_expandFinalInlineFrame is defined in runtime/symtab.go.
    func runtime_expandFinalInlineFrame(stk []uintptr) []uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/xla_rewrite.cc

      cluster_func_op.erase();
    }
    
    void XlaRewritePass::runOnOperation() {
      ModuleOp module = getOperation();
      SymbolTable symtab(module);
      OpBuilder builder(&getContext());
      module.walk([&](tf_device::ClusterFuncOp cluster_func_op) {
        RewriteCall(cluster_func_op, symtab, builder);
      });
    }
    
    }  // namespace
    
    namespace TFDevice {
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaRewritePass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top