Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Parr (0.08 sec)

  1. src/cmd/asm/internal/asm/parse.go

    	//	"@>" == 3
    	r1, ok := p.registerReference(name)
    	if !ok {
    		return 0
    	}
    	var op int16
    	switch p.next().ScanToken {
    	case lex.LSH:
    		op = 0
    	case lex.RSH:
    		op = 1
    	case lex.ARR:
    		op = 2
    	case lex.ROT:
    		// following instructions on ARM64 support rotate right
    		// AND, ANDS, TST, BIC, BICS, EON, EOR, ORR, MVN, ORN
    		op = 3
    	}
    	tok := p.next()
    	str := tok.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/builtin.go

    	}
    	if n.Esc() == ir.EscNone {
    		if why := escape.HeapAllocReason(n); why != "" {
    			base.Fatalf("%v has EscNone, but %v", n, why)
    		}
    		// var arr [r]T
    		// n = arr[:l]
    		i := typecheck.IndexConst(r)
    		if i < 0 {
    			base.Fatalf("walkExpr: invalid index %v", r)
    		}
    
    		// cap is constrained to [0,2^31) or [0,2^63) depending on whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top