Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bpl (0.03 sec)

  1. test/codegen/comparisons.go

    	if a+5 <= 0 {
    		return 1
    	}
    
    	// arm64:`CMN`,-`ADD`,`(BMI|BPL)`
    	if a+13 >= 0 {
    		return 2
    	}
    
    	// arm64:`CMP|CMN`,-`(ADD|SUB)`,`(BMI|BPL)`
    	if a-7 < 0 {
    		return 3
    	}
    
    	// arm64:`SUB`,`TBZ`
    	if a-11 >= 0 {
    		return 4
    	}
    
    	// arm64:`SUB`,`CMP`,`BGT`
    	if a-19 > 0 {
    		return 4
    	}
    
    	// arm64:`CMNW`,-`ADDW`,`(BMI|BPL)`
    	// arm:`CMN`,-`ADD`,`(BMI|BPL)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arm64.go

    }
    
    var arm64Jump = map[string]bool{
    	"B":     true,
    	"BL":    true,
    	"BEQ":   true,
    	"BNE":   true,
    	"BCS":   true,
    	"BHS":   true,
    	"BCC":   true,
    	"BLO":   true,
    	"BMI":   true,
    	"BPL":   true,
    	"BVS":   true,
    	"BVC":   true,
    	"BHI":   true,
    	"BLS":   true,
    	"BGE":   true,
    	"BLT":   true,
    	"BGT":   true,
    	"BLE":   true,
    	"CALL":  true,
    	"CBZ":   true,
    	"CBZW":  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	X8:  "xmm8",
    	X9:  "xmm9",
    	X10: "xmm10",
    	X11: "xmm11",
    	X12: "xmm12",
    	X13: "xmm13",
    	X14: "xmm14",
    	X15: "xmm15",
    
    	// TODO: Maybe the constants are named wrong.
    	SPB: "spl",
    	BPB: "bpl",
    	SIB: "sil",
    	DIB: "dil",
    
    	R8L:  "r8d",
    	R9L:  "r9d",
    	R10L: "r10d",
    	R11L: "r11d",
    	R12L: "r12d",
    	R13L: "r13d",
    	R14L: "r14d",
    	R15L: "r15d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    }
    
    var gccRegName = [...]string{
    	0:    "REG0",
    	AL:   "%al",
    	CL:   "%cl",
    	BL:   "%bl",
    	DL:   "%dl",
    	AH:   "%ah",
    	CH:   "%ch",
    	BH:   "%bh",
    	DH:   "%dh",
    	SPB:  "%spl",
    	BPB:  "%bpl",
    	SIB:  "%sil",
    	DIB:  "%dil",
    	R8B:  "%r8b",
    	R9B:  "%r9b",
    	R10B: "%r10b",
    	R11B: "%r11b",
    	R12B: "%r12b",
    	R13B: "%r13b",
    	R14B: "%r14b",
    	R15B: "%r15b",
    	AX:   "%ax",
    	CX:   "%cx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. src/encoding/pem/pem_test.go

    eQp5ZkH6CyHBz7BZfUPxyLCCmftsBJ7HlqGb8Ld21cSwnzWZ4/SIlhyrUtsfw7VR
    2TTwA+odo9ex7GdxOTaH8oZFumIRoiEjHsk8U7Bhntp+ekkPP79xunnN7hb7hkhr
    yGDQZgA7s2cQHQ71v3gwT2BACAft26jCjbM1wgNzBnJ8M0Rzn68YWqaPtdBu8qb/
    zVR5JB1mnqvTSbFsfF5yMc6o2WQ9jJCl6KypnMl+BpL+dlvdjYVK4l9lYsB1Hs3d
    +zDBbWxos818zzhS8/y6eIfiSG27cqrbhURbmgiSfDXjncK4m/pLcQ7mmBL6mFOr
    3Pj4jepzgOiFRL6MKE//h62fZvI1ErYr8VunHEykgKNhChDvb1RO6LEfqKBu+Ivw
    TB6fBhW3TCLMnVPYVoYwA+fHNTmZZm8BEonlIMfI+KktjWUg4Oia+NI6vKcPpFox
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
Back to top