Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NAME_EXTERN (0.09 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			if p.To.Type != obj.TYPE_REG {
    				ctxt.Diag("non-retpoline-compatible: %v", p)
    				continue
    			}
    			p.To.Type = obj.TYPE_BRANCH
    			p.To.Name = obj.NAME_EXTERN
    			p.To.Sym = ctxt.Lookup("runtime.retpoline" + obj.Rconv(int(p.To.Reg)))
    			p.To.Reg = 0
    			p.To.Offset = 0
    		}
    	}
    
    	var count int64 // rough count of number of instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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