Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for btif (0.02 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64error.s

    	SHA256SU1	V1.S4, V2.B16, V3.S4                     // ERROR "invalid arrangement"
    	SHA1H	V1.B16, V2.B16                                   // ERROR "invalid operands"
    	BTI                                       		 // ERROR "missing operand"
    	BTI	PLDL1KEEP					 // ERROR "illegal argument"
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Mar 26 10:48:50 UTC 2025
    - 37.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arch.go

    		return true
    	}
    	return false
    }
    
    func jumpWasm(word string) bool {
    	return word == "JMP" || word == "CALL" || word == "Call" || word == "Br" || word == "BrIf"
    }
    
    func archX86(linkArch *obj.LinkArch) *Arch {
    	register := make(map[string]int16)
    	// Create maps for easy lookup of instruction names etc.
    	for i, s := range x86.Register {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Nov 07 02:20:14 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top