Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isLoadStorePairOp (0.17 sec)

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

    		return true
    	}
    	return false
    }
    
    func isNEGop(op obj.As) bool {
    	switch op {
    	case ANEG, ANEGW, ANEGS, ANEGSW:
    		return true
    	}
    	return false
    }
    
    func isLoadStorePairOp(op obj.As) bool {
    	switch op {
    	case AFLDPQ, AFSTPQ, ALDP, ASTP, ALDPW, ASTPW:
    		return true
    	}
    	return false
    }
    
    func isMOVop(op obj.As) bool {
    	switch op {
    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