Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for original (0.15 sec)

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

    	for m != 0 {
    		r := pickReg(m)
    		m &^= 1 << r
    		x := s.curBlock.NewValue0(src.NoXPos, OpClobberReg, types.TypeVoid)
    		s.f.setHome(x, &s.registers[r])
    	}
    }
    
    // setOrig records that c's original value is the same as
    // v's original value.
    func (s *regAllocState) setOrig(c *Value, v *Value) {
    	if int(c.ID) >= cap(s.orig) {
    		x := s.f.Cache.allocValueSlice(int(c.ID) + 1)
    		copy(x, s.orig)
    		s.f.Cache.freeValueSlice(s.orig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    	}
    
    	// Walk the relocations of the subprogram DIE symbol to discover
    	// references to abstract function DIEs, Go type DIES, and
    	// (via R_USETYPE relocs) types that were originally assigned to
    	// locals/params but were optimized away.
    	drelocs := d.ldr.Relocs(infosym)
    	for ri := 0; ri < drelocs.Count(); ri++ {
    		r := drelocs.At(ri)
    		// Look for "use type" relocs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	    Note that because coverage works by annotating the source
    	    code before compilation, compilation and test failures with
    	    coverage enabled may report line numbers that don't correspond
    	    to the original sources.
    
    	-covermode set,count,atomic
    	    Set the mode for coverage analysis for the package[s]
    	    being tested. The default is "set" unless -race is enabled,
    	    in which case it is "atomic".
    	    The values:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    		"riscv64": {"GORISCV64", "rva20u64", "rva22u64"},
    	}
    )
    
    // wantedAsmOpcode is a single asmcheck check
    type wantedAsmOpcode struct {
    	fileline string         // original source file/line (eg: "/path/foo.go:45")
    	line     int            // original source line
    	opcode   *regexp.Regexp // opcode check to be performed on assembly output
    	negative bool           // true if the check is supposed to fail rather than pass
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    // GetProcAddressByOrdinal retrieves the address of the exported
    // function from module by ordinal.
    func GetProcAddressByOrdinal(module Handle, ordinal uintptr) (proc uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), ordinal, 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/time/time_test.go

    	}
    
    	if !(t0.Equal(t1) && t1.Equal(t2)) {
    		if !t0.Equal(t1) {
    			t.Errorf("The result t1: %+v after Marshal is not matched original t0: %+v", t1, t0)
    		}
    		if !t1.Equal(t2) {
    			t.Errorf("The result t2: %+v after Unmarshal is not matched original t1: %+v", t2, t1)
    		}
    	}
    }
    
    func TestUnmarshalTextAllocations(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    		//		do something without using ind nor nxt
    		//		nxt = ind - inc
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// this is better because it only require to keep ind then nxt alive while looping,
    		// while the original form keeps ind then nxt and end alive
    		start, end := v.min, v.max
    		if v.flags&indVarCountDown != 0 {
    			start, end = end, start
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    					ldr.SetIsDeferReturnTramp(tramp, true)
    				}
    				if ldr.SymValue(tramp) == 0 {
    					break
    				}
    				// Note, the trampoline is always called directly. The addend of the original relocation is accounted for in the
    				// trampoline itself.
    				t = ldr.SymValue(tramp) - (ldr.SymValue(s) + int64(r.Off()))
    
    				// With internal linking, the trampoline can be used if it is not too far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    			return
    		}
    		print("\n")
    		goroutineheader(gp)
    		// Note: gp.m == getg().m occurs when tracebackothers is called
    		// from a signal handler initiated during a systemstack call.
    		// The original G is still in the running state, and we want to
    		// print its stack.
    		if gp.m != getg().m && readgstatus(gp)&^_Gscan == _Grunning {
    			print("\tgoroutine running on other thread; stack unavailable\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    			}
    			ident.Obj = obj
    		}
    	}
    }
    
    func (p *parser) shortVarDecl(idents []*ast.Ident) {
    	// Go spec: A short variable declaration may redeclare variables
    	// provided they were originally declared in the same block with
    	// the same type, and at least one of the non-blank variables is new.
    	n := 0 // number of new variables
    	for _, ident := range idents {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top