Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DWORD (0.03 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	c.elitrl = nil
    	c.pool.size = 0
    	c.pool.start = 0
    }
    
    /*
     * MOVD foo(SB), R is actually
     *   MOVD addr, REGTMP
     *   MOVD REGTMP, R
     * where addr is the address of the DWORD containing the address of foo.
     *
     * TODO: hash
     */
    func (c *ctxt7) addpool(p *obj.Prog, a *obj.Addr) {
    	cls := c.aclass(a)
    	lit := c.instoffset
    	t := c.newprog()
    	t.As = AWORD
    	sz := 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		// Opcodes with shift count operands.
    		case ARLDIMI, ARLDIMICC:
    			o1 = AOP_MD(c.opirr(p.As), uint32(p.To.Reg), uint32(p.Reg), sh, uint32(d))
    		}
    
    	case 31: /* dword */
    		d := c.vregoff(&p.From)
    
    		if c.ctxt.Arch.ByteOrder == binary.BigEndian {
    			o1 = uint32(d >> 32)
    			o2 = uint32(d)
    		} else {
    			o1 = uint32(d)
    			o2 = uint32(d >> 32)
    		}
    
    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

    		} else {
    			zRIL(_a, op_LGFI, regtmp(p), uint32(v), asm)
    			zRX(op_LA, uint32(p.To.Reg), uint32(r), regtmp(p), uint32(i), asm)
    		}
    
    	case 31: // dword
    		wd := uint64(c.vregoff(&p.From))
    		*asm = append(*asm,
    			uint8(wd>>56),
    			uint8(wd>>48),
    			uint8(wd>>40),
    			uint8(wd>>32),
    			uint8(wd>>24),
    			uint8(wd>>16),
    			uint8(wd>>8),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
Back to top