Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 267 for mary (0.4 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	// need to allocate stack space, so it should be OK to mark them
    	// as NOSPLIT in these cases. In addition, my assumption is that
    	// functions written in assembly are NOSPLIT in most (but not all)
    	// cases. In the case of an ABIInternal target that has too many
    	// parameters to fit into registers, the wrapper would need to
    	// allocate stack space, but this seems like an unlikely scenario.
    	// Hence: mark these wrappers NOSPLIT.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/obj.go

    		switch p.As {
    		case obj.ATEXT:
    			p.Mark |= LABEL | LEAF | SYNC
    			if p.Link != nil {
    				p.Link.Mark |= LABEL
    			}
    
    		case AMOVW,
    			AMOVV:
    			if p.To.Type == obj.TYPE_REG && p.To.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    				break
    			}
    			if p.From.Type == obj.TYPE_REG && p.From.Reg >= REG_SPECIAL {
    				p.Mark |= LABEL | SYNC
    			}
    
    		case ASYSCALL,
    			AWORD:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/memcombine.go

    	}
    	return true
    }
    
    func memcombineStores(f *Func) {
    	mark := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(mark)
    	var order []*Value
    
    	for _, b := range f.Blocks {
    		// Mark all stores which are not last in a store sequence.
    		mark.clear()
    		for _, v := range b.Values {
    			if v.Op == OpStore {
    				mark.add(v.MemoryArg().ID)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	// to black (pre-declared objects are painted black from the start).
    	// A black object (i.e., its type) can only depend on (refer to) other black
    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/alias.go

    	// In the presence of unfinished cyclic declarations, Unalias
    	// would otherwise latch the invalid value (#66704).
    	// TODO(adonovan): rethink, along with checker.typeDecl's use
    	// of Invalid to mark unfinished aliases.
    	if t != Typ[Invalid] {
    		a0.actual = t
    	}
    
    	return t
    }
    
    // asNamed returns t as *Named if that is t's
    // actual type. It returns nil otherwise.
    func asNamed(t Type) *Named {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    				if q1.Mark&LEAF == 0 {
    					q1.Mark |= LABEL
    				}
    			} else {
    				p.Mark |= LABEL
    			}
    			q1 = p.Link
    			if q1 != nil {
    				q1.Mark |= LABEL
    			}
    			continue
    
    		case AFCMPO, AFCMPU:
    			q = p
    			p.Mark |= FCMP | FLOAT
    			continue
    
    		case obj.ARET:
    			q = p
    			if p.Link != nil {
    				p.Link.Mark |= LABEL
    			}
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. utils/tests/models.go

    import (
    	"database/sql"
    	"time"
    
    	"gorm.io/gorm"
    )
    
    // User has one `Account` (has one), many `Pets` (has many) and `Toys` (has many - polymorphic)
    // He works in a Company (belongs to), he has a Manager (belongs to - single-table), and also managed a Team (has many - single-table)
    // He speaks many languages (many to many) and has many friends (many to many - single-table)
    // His pet also has one Toy (has one - polymorphic)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    			// Issue 59680: if the closure we're looking at was produced
    			// by inlining, it could be marked as hidden, which we don't
    			// want (moving the func to a static init will effectively
    			// hide it from escape analysis). Mark as non-hidden here.
    			// so that it will participated in escape analysis.
    			r.Func.SetIsHiddenClosure(false)
    			// Closures with no captured variables are globals,
    			// so the assignment can be done at link time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/benchmark/bench.go

    	"time"
    	"unicode"
    )
    
    type Flags int
    
    const (
    	GC         = 1 << iota
    	NoGC Flags = 0
    )
    
    type Metrics struct {
    	gc        Flags
    	marks     []*mark
    	curMark   *mark
    	filebase  string
    	pprofFile *os.File
    }
    
    type mark struct {
    	name              string
    	startM, endM, gcM runtime.MemStats
    	startT, endT      time.Time
    }
    
    // New creates a new Metrics object.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    			}
    			// Note: needReg is false for values returning Tuple types.
    			// Instead, we mark the corresponding Selects as needReg.
    		}
    	}
    	s.computeLive()
    
    	s.endRegs = make([][]endReg, f.NumBlocks())
    	s.startRegs = make([][]startReg, f.NumBlocks())
    	s.spillLive = make([][]ID, f.NumBlocks())
    	s.sdom = f.Sdom()
    
    	// wasm: Mark instructions that can be optimized to have their values only on the WebAssembly stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top