Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fpTrans (0.3 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	switch inst.Op &^ 15 {
    	case STREX_EQ, STREXB_EQ, STREXH_EQ, SWP_EQ, SWP_B_EQ:
    		args = []string{args[1], args[0], args[2]}
    	}
    
    	// special process for FP instructions
    	op, args = fpTrans(&inst, op, args)
    
    	// LDR/STR like instructions -> MOV like
    	switch inst.Op &^ 15 {
    	case MOV_EQ:
    		op = "MOVW" + op[3:]
    	case LDR_EQ, MSR_EQ, MRS_EQ:
    		op = "MOVW" + op[3:] + suffix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top