Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BDNZ (0.14 sec)

  1. 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)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	MOVFL R1, $128                  // 7c380120
    	MOVFL R1, $3                    // 7c203120
    	MOVMW 4(R3), R4                 // b8830004
    
    
    	// Verify supported bdnz/bdz encodings.
    	BC 16,0,0(PC)                   // BC $16, CR0LT, 0(PC) // 42000000
    	BDNZ 0(PC)                      // 42000000
    	BDZ 0(PC)                       // 42400000
    	BC 18,0,0(PC)                   // BC $18, CR0LT, 0(PC) // 42400000
    
    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