Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for asmbPe (0.2 sec)

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

    func (ab *AsmBuf) Last() byte { return ab.buf[ab.off-1] }
    
    // Len returns the length of the buffer.
    func (ab *AsmBuf) Len() int { return ab.off }
    
    // Bytes returns the contents of the buffer.
    func (ab *AsmBuf) Bytes() []byte { return ab.buf[:ab.off] }
    
    // Reset empties the buffer.
    func (ab *AsmBuf) Reset() { ab.off = 0 }
    
    // At returns the byte at offset i.
    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

    			opset(AADDMEV, r0)
    			opset(AADDMEVCC, r0)
    			opset(AADDZE, r0)
    			opset(AADDZECC, r0)
    			opset(AADDZEV, r0)
    			opset(AADDZEVCC, r0)
    			opset(ASUBME, r0)
    			opset(ASUBMECC, r0)
    			opset(ASUBMEV, r0)
    			opset(ASUBMEVCC, r0)
    			opset(ASUBZE, r0)
    			opset(ASUBZECC, r0)
    			opset(ASUBZEV, r0)
    			opset(ASUBZEVCC, r0)
    
    		case AADDC:
    			opset(AADDCCC, r0)
    
    		case ABEQ:
    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

    			opset(ARISBGNZ, r)
    			opset(ARISBHG, r)
    			opset(ARISBLG, r)
    			opset(ARISBHGZ, r)
    			opset(ARISBLGZ, r)
    		case ACSG:
    			opset(ACS, r)
    		case ASUB:
    			opset(ASUBC, r)
    			opset(ASUBE, r)
    			opset(ASUBW, r)
    		case ANEG:
    			opset(ANEGW, r)
    		case AFMOVD:
    			opset(AFMOVS, r)
    		case AMOVDBR:
    			opset(AMOVWBR, r)
    		case ACMP:
    			opset(ACMPW, r)
    		case ACMPU:
    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/link/internal/ld/data.go

    			}
    			target.Arch.ByteOrder.PutUint32(P[off:], uint32(o))
    		case 8:
    			target.Arch.ByteOrder.PutUint64(P[off:], uint64(o))
    		}
    	}
    	if target.IsExternal() {
    		// We'll stream out the external relocations in asmb2 (e.g. elfrelocsect)
    		// and we only need the count here.
    		atomic.AddUint32(&ldr.SymSect(s).Relcount, uint32(nExtReloc))
    	}
    }
    
    // Convert a Go relocation to an external relocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top