Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for symabis (0.34 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    			cmd = append(cmd, asms...)
    			_, err = runcmd(cmd...)
    			if err != nil {
    				return err
    			}
    		}
    		var objs []string
    		cmd := []string{goTool, "tool", "compile", "-p=main", "-e", "-D", ".", "-importcfg=" + stdlibImportcfgFile(), "-o", "go.o"}
    		if len(asms) > 0 {
    			cmd = append(cmd, "-asmhdr", "go_asm.h", "-symabis", "symabis")
    		}
    		cmd = append(cmd, gos...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	name := NewNameAt(npos, sym, typ)
    	name.Class = PFUNC
    	sym.SetFunc(true)
    
    	fn := &Func{Nname: name}
    	fn.pos = fpos
    	fn.op = ODCLFUNC
    	// Most functions are ABIInternal. The importer or symabis
    	// pass may override this.
    	fn.ABI = obj.ABIInternal
    	fn.SetTypecheck(1)
    
    	name.Func = fn
    
    	return fn
    }
    
    func (f *Func) isStmt() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    /* Symbol visibility - ELFNN_ST_VISIBILITY - st_other */
    type SymVis int
    
    const (
    	STV_DEFAULT   SymVis = 0x0 /* Default visibility (see binding). */
    	STV_INTERNAL  SymVis = 0x1 /* Special meaning in relocatable objects. */
    	STV_HIDDEN    SymVis = 0x2 /* Not visible. */
    	STV_PROTECTED SymVis = 0x3 /* Visible but not preemptible. */
    )
    
    var stvStrings = []intName{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	// matches a real symbol. The dynamic linker assumes we
    	// want the normal symbol with the same address and finds
    	// it in the other module.)
    	//
    	// To work around this we lay out the symbls whose
    	// addresses are vital for multi-module programs to work
    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(SectionType).String", Method, 0},
    		{"(SymBind).GoString", Method, 0},
    		{"(SymBind).String", Method, 0},
    		{"(SymType).GoString", Method, 0},
    		{"(SymType).String", Method, 0},
    		{"(SymVis).GoString", Method, 0},
    		{"(SymVis).String", Method, 0},
    		{"(Type).GoString", Method, 0},
    		{"(Type).String", Method, 0},
    		{"(Version).GoString", Method, 0},
    		{"(Version).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/elf, const STT_OBJECT SymType
    pkg debug/elf, const STT_SECTION SymType
    pkg debug/elf, const STT_TLS SymType
    pkg debug/elf, const STV_DEFAULT SymVis
    pkg debug/elf, const STV_HIDDEN SymVis
    pkg debug/elf, const STV_INTERNAL SymVis
    pkg debug/elf, const STV_PROTECTED SymVis
    pkg debug/elf, const Sym32Size ideal-int
    pkg debug/elf, const Sym64Size ideal-int
    pkg debug/elf, func NewFile(io.ReaderAt) (*File, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top