Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AFCLASSS (0.5 sec)

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

    	AFMVXS
    	AFMVSX
    	AFMVXW
    	AFMVWX
    
    	// 11.8: Single-Precision Floating-Point Compare Instructions
    	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
    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 AFADDS:
    		return &inst{0x53, 0x0, 0x0, 0, 0x0}
    	case AFCLASSD:
    		return &inst{0x53, 0x1, 0x0, -480, 0x71}
    	case AFCLASSQ:
    		return &inst{0x53, 0x1, 0x0, -416, 0x73}
    	case AFCLASSS:
    		return &inst{0x53, 0x1, 0x0, -512, 0x70}
    	case AFCVTDL:
    		return &inst{0x53, 0x0, 0x2, -734, 0x69}
    	case AFCVTDLU:
    		return &inst{0x53, 0x0, 0x3, -733, 0x69}
    	case AFCVTDQ:
    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

    	AFEQS & obj.AMask: rFFIEncoding,
    	AFLTS & obj.AMask: rFFIEncoding,
    	AFLES & obj.AMask: rFFIEncoding,
    
    	// 11.9: Single-Precision Floating-Point Classify Instruction
    	AFCLASSS & obj.AMask: rFIEncoding,
    
    	// 12.3: Double-Precision Load and Store Instructions
    	AFLD & obj.AMask: iFEncoding,
    	AFSD & obj.AMask: sFEncoding,
    
    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