Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for newRule (0.19 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    		OpPPC64SUB:      OpPPC64SUBCC,
    		OpPPC64NEG:      OpPPC64NEGCC,
    		OpPPC64NOR:      OpPPC64NORCC,
    		OpPPC64XOR:      OpPPC64XORCC,
    	}
    	b := op.Block
    	opCC := b.NewValue0I(op.Pos, ccOpMap[op.Op], types.NewTuple(op.Type, types.TypeFlags), op.AuxInt)
    	opCC.AddArgs(op.Args...)
    	op.reset(OpSelect0)
    	op.AddArgs(opCC)
    	return op
    }
    
    // Try converting a RLDICL to ANDCC. If successful, return the mask otherwise 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		if r0 != 0 {
    			fd, _, _ := CallLeFuncWithPtrReturn(GetZosLibVec()+SYS___ATOI_A<<4, r0)
    			f := os.NewFile(fd, "zostracefile")
    			if f != nil {
    				ZosTracefile = f
    			}
    		}
    
    	}
    }
    
    //go:noescape
    func CallLeFuncWithErr(funcdesc uintptr, parms ...uintptr) (ret, errno2 uintptr, err Errno)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		rewrittenOutput := *flagOutfile + "~"
    		exef, err := os.Open(*flagOutfile)
    		if err != nil {
    			Exitf("%s: %s failed: %v", os.Args[0], op, err)
    		}
    		defer exef.Close()
    		exem, err := macho.NewFile(exef)
    		if err != nil {
    			Exitf("%s: parsing Mach-O header failed: %v", os.Args[0], err)
    		}
    		if err := updateFunc(ctxt, exef, exem, rewrittenOutput); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top