Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for fpregs (0.13 sec)

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

    		node := work[len(work)-1]
    		work = work[:len(work)-1]
    
    		switch node.op {
    		case Work:
    			b := node.block
    
    			// First, see if we're dominated by an explicit nil check.
    			if len(b.Preds) == 1 {
    				p := b.Preds[0].b
    				if p.Kind == BlockIf && p.Controls[0].Op == OpIsNonNil && p.Succs[0].b == b {
    					if ptr := p.Controls[0].Args[0]; nonNilValues[ptr.ID] == nil {
    						nonNilValues[ptr.ID] = ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/loopbce.go

    //		do something
    //	      nxt = inc + ind
    //		goto loop
    //
    //	 exit_loop:
    func findIndVar(f *Func) []indVar {
    	var iv []indVar
    	sdom := f.Sdom()
    
    	for _, b := range f.Blocks {
    		if b.Kind != BlockIf || len(b.Preds) != 2 {
    			continue
    		}
    
    		var ind *Value   // induction variable
    		var init *Value  // starting value
    		var limit *Value // ending value
    
    		// Check that the control if it either ind </<= limit or limit </<= ind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            p.configure { }
    
            then:
            def e = thrown(IllegalStateException)
            e.message == 'Cannot add actions to this collection as it has already been realized.'
        }
    
        def "fires finalize event for element with name after configuration has completed"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def finalAction = Mock(Action)
            def binary1 = Stub(SwiftBinary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/writebarrier.go

    	config := b.Func.Config
    	typ := config.Types.Uintptr // type of all argument values
    	nargs := len(args)
    
    	// TODO (register args) this is a bit of a hack.
    	inRegs := b.Func.ABIDefault == b.Func.ABI1 && len(config.intParamRegs) >= 3
    
    	if !inRegs {
    		// Store arguments to the appropriate stack slot.
    		off := config.ctxt.Arch.FixedFrameSize
    		for _, arg := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		if len(args) == 0 {
    			args = append(args, "st0")
    		}
    
    	case FPTAN, FSINCOS, FUCOMPP, FCOMPP, FYL2X, FPATAN, FXTRACT, FPREM1, FPREM, FYL2XP1, FSCALE:
    		if len(args) == 0 {
    			args = []string{"st0", "st1"}
    		}
    
    	case FST, FSTP, FISTTP, FIST, FISTP, FBSTP:
    		if len(args) == 1 {
    			args = append(args, "st0")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/anames.go

    	"FMOVL",
    	"FMOVLP",
    	"FMOVV",
    	"FMOVVP",
    	"FMOVW",
    	"FMOVWP",
    	"FMOVX",
    	"FMOVXP",
    	"FMULD",
    	"FMULDP",
    	"FMULF",
    	"FMULL",
    	"FMULW",
    	"FNOP",
    	"FPATAN",
    	"FPREM",
    	"FPREM1",
    	"FPTAN",
    	"FRNDINT",
    	"FRSTOR",
    	"FSAVE",
    	"FSCALE",
    	"FSIN",
    	"FSINCOS",
    	"FSQRT",
    	"FSTCW",
    	"FSTENV",
    	"FSTSW",
    	"FSUBD",
    	"FSUBDP",
    	"FSUBF",
    	"FSUBL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    func TestGetArticleForNoun(t *testing.T) {
    	tests := []struct {
    		noun    string
    		padding string
    		want    string
    	}{
    		{
    			noun:    "Frog",
    			padding: " ",
    			want:    " a ",
    		},
    		{
    			noun:    "frogs",
    			padding: " ",
    			want:    " ",
    		},
    		{
    			noun:    "apple",
    			padding: "",
    			want:    "an",
    		},
    		{
    			noun:    "Apples",
    			padding: " ",
    			want:    " ",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

        }
      }
    }
    
    /**
     * Attempts to exhaust this, returning true if successful. This is useful when reading a complete
     * source is helpful, such as when doing so completes a cache body or frees a socket connection for
     * reuse.
     */
    internal fun Source.discard(
      timeout: Int,
      timeUnit: TimeUnit,
    ): Boolean =
      try {
        this.skipAll(timeout, timeUnit)
      } catch (_: IOException) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    	if cleanFuzzcache {
    		fuzzDir := cache.Default().FuzzDir()
    		if err := sh.RemoveAll(fuzzDir); err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    var cleaned = map[*load.Package]bool{}
    
    // TODO: These are dregs left by Makefile-based builds.
    // Eventually, can stop deleting these.
    var cleanDir = map[string]bool{
    	"_test": true,
    	"_obj":  true,
    }
    
    var cleanFile = map[string]bool{
    	"_testmain.go": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    }
    
    func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err error) {
    	return PtraceIO(PIOD_WRITE_I, pid, addr, data, SizeofLong)
    }
    
    func PtraceSetRegs(pid int, regs *Reg) (err error) {
    	return ptracePtr(PT_SETREGS, pid, unsafe.Pointer(regs), 0)
    }
    
    func PtraceSingleStep(pid int) (err error) {
    	return ptrace(PT_STEP, pid, 1, 0)
    }
    
    func Dup3(oldfd, newfd, flags int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top