Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/internal/dwarf/dwarf.go

    		if !v.IsInAbstract {
    			continue
    		}
    		putvar(ctxt, s, v, callee, abbrev, inlIndex, encbuf[:0])
    	}
    
    	// Children of this inline.
    	for _, sib := range inlChildren(callIdx, &s.InlCalls) {
    		err := putInlinedFunc(ctxt, s, sib)
    		if err != nil {
    			return err
    		}
    	}
    
    	Uleb128put(ctxt, s.Info, 0)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	RxrEvex = 1 << 4 // AVX512 extension to REX.R/VEX.R
    	Rxw     = 1 << 3 // =1, 64-bit operand size
    	Rxr     = 1 << 2 // extend modrm reg
    	Rxx     = 1 << 1 // extend sib index
    	Rxb     = 1 << 0 // extend modrm r/m, sib base, or opcode reg
    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top