Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BVS (0.14 sec)

  1. src/cmd/asm/internal/arch/s390x.go

    func jumpS390x(word string) bool {
    	switch word {
    	case "BRC",
    		"BC",
    		"BCL",
    		"BEQ",
    		"BGE",
    		"BGT",
    		"BL",
    		"BLE",
    		"BLEU",
    		"BLT",
    		"BLTU",
    		"BNE",
    		"BR",
    		"BVC",
    		"BVS",
    		"BRCT",
    		"BRCTG",
    		"CMPBEQ",
    		"CMPBGE",
    		"CMPBGT",
    		"CMPBLE",
    		"CMPBLT",
    		"CMPBNE",
    		"CMPUBEQ",
    		"CMPUBGE",
    		"CMPUBGT",
    		"CMPUBLE",
    		"CMPUBLT",
    		"CMPUBNE",
    		"CRJ",
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Oct 17 14:55:25 GMT 2019
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/ppc64.go

    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    )
    
    func jumpPPC64(word string) bool {
    	switch word {
    	case "BC", "BCL", "BEQ", "BGE", "BGT", "BL", "BLE", "BLT", "BNE", "BR", "BVC", "BVS", "BDNZ", "BDZ", "CALL", "JMP":
    		return true
    	}
    	return false
    }
    
    // IsPPC64CMP reports whether the op (as defined by an ppc64.A* constant) is
    // one of the CMP instructions that require special handling.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Sep 07 20:53:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm.go

    var armJump = map[string]bool{
    	"B":    true,
    	"BL":   true,
    	"BX":   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,
    	"JMP":  true,
    }
    
    func jumpArm(word string) bool {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  4. 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,
    	"CBNZ":  true,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm.s

    	BNE	13(PC) // BNE 13(PC)   // 0b00001a
    	BCS	12(PC) // BCS 12(PC)   // 0a00002a
    	BCC	11(PC) // BCC 11(PC)   // 0900003a
    	BMI	10(PC) // BMI 10(PC)   // 0800004a
    	BPL	9(PC)  // BPL 9(PC)    // 0700005a
    	BVS	8(PC)  // BVS 8(PC)    // 0600006a
    	BVC	7(PC)  // BVC 7(PC)    // 0500007a
    	BHI	6(PC)  // BHI 6(PC)    // 0400008a
    	BLS	5(PC)  // BLS 5(PC)    // 0300009a
    	BGE	4(PC)  // BGE 4(PC)    // 020000aa
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	BLT CR5,0(PC)                   // 41940000
    	BNE 0(PC)                       // 40820000
    	BLT CR6,0(PC)                   // 41980000
    	BVC 0(PC)                       // 40830000
    	BVS 0(PC)                       // 41830000
    	JMP 8(PC)                       // 48000010
    
    	NOP
    	NOP R2
    	NOP F2
    	NOP $4
    
    	CRAND CR0GT, CR0EQ, CR0SO       // 4c620a02
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
Back to top