Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for regIndex (0.76 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    func avx2gatherValid(ctxt *obj.Link, p *obj.Prog) bool {
    	// If any pair of the index, mask, or destination registers
    	// are the same, illegal instruction trap (#UD) is triggered.
    	index := regIndex(p.GetFrom3().Index)
    	mask := regIndex(p.From.Reg)
    	dest := regIndex(p.To.Reg)
    	if dest == mask || dest == index || mask == index {
    		ctxt.Diag("mask, index, and destination registers should be distinct: %v", p)
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Data Migration */
        public static final String LABELS_upgrade_data_migration = "{labels.upgrade_data_migration}";
    
        /** The key of the message: Reindex */
        public static final String LABELS_upgrade_reindex = "{labels.upgrade_reindex}";
    
        /** The key of the message: Start */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
Back to top