Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for symabi (0.12 sec)

  1. src/internal/abi/abi_test.go

    	goSrc := filepath.Join("testdata", "x.go")
    	symabi := filepath.Join(tmpdir, "symabi")
    	obj := filepath.Join(tmpdir, "x.o")
    
    	// Write an importcfg file for the dependencies of the package.
    	importcfgfile := filepath.Join(tmpdir, "hello.importcfg")
    	testenv.WriteImportcfg(t, importcfgfile, nil, "internal/abi")
    
    	// parse assembly code for symabi.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/abi.go

    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/wasm"
    )
    
    // SymABIs records information provided by the assembler about symbol
    // definition ABIs and reference ABIs.
    type SymABIs struct {
    	defs map[string]obj.ABI
    	refs map[string]obj.ABISet
    }
    
    func NewSymABIs() *SymABIs {
    	return &SymABIs{
    		defs: make(map[string]obj.ABI),
    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/symtab.go

    	putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	for k, sect := range Segtext.Sections[1:] {
    		n := k + 1
    		if sect.Name != ".text" || (ctxt.IsAIX() && ctxt.IsExternal()) {
    			// On AIX, runtime.text.X are symbols already in the symtab.
    			break
    		}
    		s = ldr.Lookup(fmt.Sprintf("runtime.text.%d", n), 0)
    		if s == 0 {
    			break
    		}
    		if ldr.SymType(s) != sym.STEXT {
    			panic("unexpected type for runtime.text symbol")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/asm/main.go

    			log.Printf(format, args...)
    		}
    		if *flags.SymABIs {
    			ok = parser.ParseSymABIs(buf)
    		} else {
    			pList := new(obj.Plist)
    			pList.Firstpc, ok = parser.Parse()
    			// reports errors to parser.Errorf
    			if ok {
    				obj.Flushplist(ctxt, pList, nil)
    			}
    		}
    		if !ok {
    			failedFile = f
    			break
    		}
    	}
    	if ok && !*flags.SymABIs {
    		ctxt.NumberSyms()
    		obj.WriteObjFile(ctxt, buf)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. docs/tr/docs/tutorial/first-steps.md

    #### API "Şeması"
    
    Bu durumda, <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank">OpenAPI</a>, API şemasını nasıl tanımlayacağınızı belirten bir şartnamedir.
    
    Bu şema tanımı, API yollarınızla birlikte yollarınızın aldığı olası parametreler gibi tanımlamaları içerir.
    
    #### Veri "Şeması"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. 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)
Back to top