Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for c_add (0.15 sec)

  1. src/cmd/internal/obj/arm/a.out.go

    	C_SAUTO  /* -0xfff to 0xfff */
    	C_LAUTO
    
    	C_HOREG
    	C_FOREG
    	C_HFOREG
    	C_SOREG
    	C_ROREG
    	C_SROREG /* both nil and R */
    	C_LOREG
    
    	C_PC
    	C_SP
    	C_HREG
    
    	C_ADDR /* reference to relocatable address */
    
    	// TLS "var" in local exec mode: will become a constant offset from
    	// thread local base that is ultimately chosen by the program linker.
    	C_TLS_LE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/mips/a.out.go

    	C_LECON
    	C_DACON /* $n(REG) where int32 < n */
    	C_STCON /* $tlsvar */
    	C_SBRA
    	C_LBRA
    	C_SAUTO
    	C_LAUTO
    	C_SEXT
    	C_LEXT
    	C_ZOREG
    	C_SOREG
    	C_LOREG
    	C_GOK
    	C_ADDR
    	C_TLS
    	C_TEXTSIZE
    
    	C_NCLASS /* must be the last */
    )
    
    const (
    	AABSD = obj.ABaseMIPS + obj.A_ARCHSPECIFIC + iota
    	AABSF
    	AABSW
    	AADD
    	AADDD
    	AADDF
    	AADDU
    	AADDW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	{Optab: Optab{as: AMOVB, a1: C_ADDR, a6: C_REG, type_: 75, size: 12}, minGOPPC64: 10, pfxsize: 12},
    	{Optab: Optab{as: AMOVB, a1: C_REG, a6: C_ADDR, type_: 74, size: 8}, minGOPPC64: 10, pfxsize: 8},
    
    	{Optab: Optab{as: AMOVBZ, a1: C_LOREG, a6: C_REG, type_: 36, size: 8}, minGOPPC64: 10, pfxsize: 8},
    	{Optab: Optab{as: AMOVBZ, a1: C_ADDR, a6: C_REG, type_: 75, size: 8}, minGOPPC64: 10, pfxsize: 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	{i: 35, as: AMOVDBR, a1: C_REG, a6: C_LOREG},
    	{i: 35, as: AMOVHBR, a1: C_REG, a6: C_LOREG},
    	{i: 74, as: AMOVD, a1: C_REG, a6: C_ADDR},
    	{i: 74, as: AMOVW, a1: C_REG, a6: C_ADDR},
    	{i: 74, as: AMOVWZ, a1: C_REG, a6: C_ADDR},
    	{i: 74, as: AMOVBZ, a1: C_REG, a6: C_ADDR},
    	{i: 74, as: AMOVB, a1: C_REG, a6: C_ADDR},
    
    	// load
    	{i: 36, as: AMOVD, a1: C_LAUTO, a6: C_REG},
    	{i: 36, as: AMOVW, a1: C_LAUTO, a6: C_REG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/a.out.go

    	C_TLS_LE   // TLS - local exec model (for executables)
    	C_TLS_IE   // TLS - initial exec model (for shared libraries loaded at program startup)
    	C_GOK      // general address
    	C_ADDR     // relocation for extern or static symbols (loads and stores)
    	C_SYMADDR  // relocation for extern or static symbols (address taking)
    	C_GOTADDR  // GOT slot for a symbol in -dynlink mode
    	C_TEXTSIZE // text size
    	C_ANY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	C_FPSCR    /* The fpscr register */
    	C_LR       /* The link register */
    	C_CTR      /* The count register */
    	C_ANY      /* Any argument */
    	C_GOK      /* A non-matched argument */
    	C_ADDR     /* A symbolic memory location */
    	C_TLS_LE   /* A thread local, local-exec, type memory arg */
    	C_TLS_IE   /* A thread local, initial-exec, type memory arg */
    	C_TEXTSIZE /* An argument with Type obj.TYPE_TEXTSIZE */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/obj0.go

    	case C_ZCON,
    		C_SCON,
    		C_ADD0CON,
    		C_AND0CON,
    		C_ADDCON,
    		C_ANDCON,
    		C_UCON,
    		C_LCON,
    		C_NONE,
    		C_SBRA,
    		C_LBRA,
    		C_ADDR,
    		C_TEXTSIZE:
    		break
    
    	case C_HI,
    		C_LO:
    		s.set.cc |= E_HILO
    
    	case C_FCREG:
    		s.set.cc |= E_FCR
    
    	case C_MREG:
    		s.set.cc |= E_MCR
    
    	case C_ZOREG,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/a.out.go

    	C_UOREG4K
    	C_UOREG8K_16
    	C_UOREG8K_8
    	C_UOREG8K_4
    	C_UOREG8K
    	C_UOREG16K_16
    	C_UOREG16K_8
    	C_UOREG16K
    	C_UOREG32K_16
    	C_UOREG32K
    	C_UOREG64K
    	C_LOREGPOOL
    	C_LOREG
    
    	C_ADDR // TODO(aram): explain difference from C_VCONADDR
    
    	// The GOT slot for a symbol in -dynlink mode.
    	C_GOTADDR
    
    	// TLS "var" in local exec mode: will become a constant offset from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    		}
    
    	case _Recover:
    		// recover() interface{}
    		x.mode = value
    		x.typ = &emptyInterface
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ))
    		}
    
    	case _Add:
    		// unsafe.Add(ptr unsafe.Pointer, len IntegerType) unsafe.Pointer
    		check.verifyVersionf(call.Fun, go1_17, "unsafe.Add")
    
    		check.assignment(x, Typ[UnsafePointer], "argument to unsafe.Add")
    		if x.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    		}
    
    	case _Recover:
    		// recover() interface{}
    		x.mode = value
    		x.typ = &emptyInterface
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ))
    		}
    
    	case _Add:
    		// unsafe.Add(ptr unsafe.Pointer, len IntegerType) unsafe.Pointer
    		check.verifyVersionf(call.Fun, go1_17, "unsafe.Add")
    
    		check.assignment(x, Typ[UnsafePointer], "argument to unsafe.Add")
    		if x.mode == invalid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top