Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/obj/riscv/cpu.go

    	AFEQS
    	AFLTS
    	AFLES
    
    	// 11.9: Single-Precision Floating-Point Classify Instruction
    	AFCLASSS
    
    	// 12.3: Double-Precision Load and Store Instructions
    	AFLD
    	AFSD
    
    	// 12.4: Double-Precision Floating-Point Computational Instructions
    	AFADDD
    	AFSUBD
    	AFMULD
    	AFDIVD
    	AFMIND
    	AFMAXD
    	AFSQRTD
    	AFMADDD
    	AFMSUBD
    	AFNMADDD
    	AFNMSUBD
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/inst.go

    	case AFEQD:
    		return &inst{0x53, 0x2, 0x0, -1504, 0x51}
    	case AFEQQ:
    		return &inst{0x53, 0x2, 0x0, -1440, 0x53}
    	case AFEQS:
    		return &inst{0x53, 0x2, 0x0, -1536, 0x50}
    	case AFLD:
    		return &inst{0x7, 0x3, 0x0, 0, 0x0}
    	case AFLED:
    		return &inst{0x53, 0x0, 0x0, -1504, 0x51}
    	case AFLEQ:
    		return &inst{0x53, 0x0, 0x0, -1440, 0x53}
    	case AFLES:
    		return &inst{0x53, 0x0, 0x0, -1536, 0x50}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    		return ALH
    	case AMOVW:
    		return ALW
    	case AMOVBU:
    		return ALBU
    	case AMOVHU:
    		return ALHU
    	case AMOVWU:
    		return ALWU
    	case AMOVF:
    		return AFLW
    	case AMOVD:
    		return AFLD
    	default:
    		panic(fmt.Sprintf("%+v is not a MOV", mnemonic))
    	}
    }
    
    // movToStore converts a MOV mnemonic into the corresponding store instruction.
    func movToStore(mnemonic obj.As) obj.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top