Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for NAME_EXTERN (0.14 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		// AuxInt encodes how many buffer entries we need.
    		p.To.Sym = ir.Syms.GCWriteBarrier[v.AuxInt-1]
    
    	case ssa.OpPPC64LoweredPanicBoundsA, ssa.OpPPC64LoweredPanicBoundsB, ssa.OpPPC64LoweredPanicBoundsC:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		p.To.Sym = ssagen.BoundsCheckFunc[v.AuxInt]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/asm0.go

    			return C_WREG
    		}
    		if a.Reg == REG_LO {
    			return C_LO
    		}
    		if a.Reg == REG_HI {
    			return C_HI
    		}
    		return C_GOK
    
    	case obj.TYPE_MEM:
    		switch a.Name {
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			if a.Sym == nil {
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym != nil { // use relocation
    				if a.Sym.Type == objabi.STLSBSS {
    					return C_TLS
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	//	for TYPE_FCONST, a float64
    	//	for TYPE_BRANCH, a *Prog (optional)
    	//	for TYPE_TEXTSIZE, an int32 (optional)
    	Val interface{}
    }
    
    type AddrName int8
    
    const (
    	NAME_NONE AddrName = iota
    	NAME_EXTERN
    	NAME_STATIC
    	NAME_AUTO
    	NAME_PARAM
    	// A reference to name@GOT(SB) is a reference to the entry in the global offset
    	// table for 'name'.
    	NAME_GOTREF
    	// Indicates that this is a reference to a TOC anchor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/asm.go

    			return C_FCSRREG
    		}
    		if REG_FCC0 <= a.Reg && a.Reg <= REG_FCC31 {
    			return C_FCCREG
    		}
    		return C_GOK
    
    	case obj.TYPE_MEM:
    		switch a.Name {
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			if a.Sym == nil {
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym != nil { // use relocation
    				if a.Sym.Type == objabi.STLSBSS {
    					if c.ctxt.Flag_shared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    	case "PC":
    		if prefix != 0 {
    			p.errorf("illegal addressing mode for PC")
    		}
    		addr.Type = obj.TYPE_BRANCH // We set the type and leave NAME untouched. See asmJump.
    	case "SB":
    		addr.Name = obj.NAME_EXTERN
    		if isStatic {
    			addr.Name = obj.NAME_STATIC
    		}
    	case "SP":
    		addr.Name = obj.NAME_AUTO // The pseudo-stack.
    	default:
    		p.errorf("expected pseudo-register; found %s", reg)
    	}
    	if prefix == '$' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	if v.Aux == nil {
    		return
    	}
    	// Add symbol's offset from its base register.
    	switch n := v.Aux.(type) {
    	case *ssa.AuxCall:
    		a.Name = obj.NAME_EXTERN
    		a.Sym = n.Fn
    	case *obj.LSym:
    		a.Name = obj.NAME_EXTERN
    		a.Sym = n
    	case *ir.Name:
    		if n.Class == ir.PPARAM || (n.Class == ir.PPARAMOUT && !n.IsOutputParamInRegisters()) {
    			a.Name = obj.NAME_PARAM
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    			// register shift R>>i
    			return C_SHIFT
    		} else {
    			// memory address with shifted offset R>>i(R)
    			return C_SHIFTADDR
    		}
    
    	case obj.TYPE_MEM:
    		switch a.Name {
    		case obj.NAME_EXTERN,
    			obj.NAME_GOTREF,
    			obj.NAME_STATIC:
    			if a.Sym == nil || a.Sym.Name == "" {
    				fmt.Printf("null sym external\n")
    				return C_GOK
    			}
    
    			c.instoffset = 0 // s.b. unused but just in case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			}
    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			c.instoffset = a.Offset
    			if a.Sym == nil {
    				break
    			} else if a.Sym.Type == objabi.STLSBSS {
    				// For PIC builds, use 12 byte got initial-exec TLS accesses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    			return C_AREG
    		}
    		if REG_V0 <= a.Reg && a.Reg <= REG_V31 {
    			return C_VREG
    		}
    		return C_GOK
    
    	case obj.TYPE_MEM:
    		switch a.Name {
    		case obj.NAME_EXTERN,
    			obj.NAME_STATIC:
    			if a.Sym == nil {
    				// must have a symbol
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym.Type == objabi.STLSBSS {
    				if c.ctxt.Flag_shared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    		return C_LIST
    
    	case obj.TYPE_MEM:
    		// The base register should be an integer register.
    		if int16(REG_F0) <= a.Reg && a.Reg <= int16(REG_V31) {
    			break
    		}
    		switch a.Name {
    		case obj.NAME_EXTERN, obj.NAME_STATIC:
    			if a.Sym == nil {
    				break
    			}
    			c.instoffset = a.Offset
    			if a.Sym != nil { // use relocation
    				if a.Sym.Type == objabi.STLSBSS {
    					if c.ctxt.Flag_shared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top