Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Tretter (0.13 sec)

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

    			state.vars = append(state.vars, topSlot.N)
    		}
    		state.varParts[topSlot.N] = append(state.varParts[topSlot.N], SlotID(i))
    	}
    
    	// Recreate the LocalSlot for each stack-only variable.
    	// This would probably be better as an output from stackframe.
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == OpVarDef {
    				n := v.Aux.(*ir.Name)
    				if ir.IsSynthetic(n) {
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    // non-pointers in this type.
    // TODO: Currently our best solution is to find these manually and list them as
    // they come up. A better solution is desired.
    // Note: DEPRECATED. There is now a better solution. Search for incomplete in this file.
    func (c *typeConv) badPointerTypedef(dt *dwarf.TypedefType) bool {
    	if c.badCFType(dt) {
    		return true
    	}
    	if c.badJNI(dt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (BRC {s390x.Greater}        (CMPconst  x [-129]) yes no) => (CGIJ {s390x.GreaterOrEqual} x [-128] yes no)
    (BRC {s390x.Greater}        (CMPWconst x [-129]) yes no) => (CIJ  {s390x.GreaterOrEqual} x [-128] yes no)
    (BRC {s390x.GreaterOrEqual} (CMPconst  x [ 128]) yes no) => (CGIJ {s390x.Greater}        x [ 127] yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    				for _, e := range s.endRegs[b.Preds[0].b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    					}
    				}
    			} else {
    				for _, e := range s.startRegs[b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Constant condition code values. The condition code can be 0, 1, 2 or 3.
    		{name: "FlagEQ"}, // CC=0 (equal)
    		{name: "FlagLT"}, // CC=1 (less than)
    		{name: "FlagGT"}, // CC=2 (greater than)
    		{name: "FlagOV"}, // CC=3 (overflow)
    
    		// Fast-BCR-serialization to ensure store-load ordering.
    		{name: "SYNC", argLength: 1, reg: sync, asm: "SYNC", typ: "Mem"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    					// if it shares the same block and line and is eligible.
    					// The second option is v, which has a as an input.  Because aa is earlier in
    					// the data flow, it is the better choice.
    					if a.Pos.IsStmt() == src.PosIsStmt {
    						if aa.Block == a.Block && aa.Pos.Line() == a.Pos.Line() && aa.Pos.IsStmt() != src.PosNotStmt {
    							aa.Pos = aa.Pos.WithIsStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	jumpTable0
    )
    
    // relation represents the set of possible relations between
    // pairs of variables (v, w). Without a priori knowledge the
    // mask is lt | eq | gt meaning v can be less than, equal to or
    // greater than w. When the execution path branches on the condition
    // `v op w` the set of relations is updated to exclude any
    // relation not possible due to `v op w` being true (or false).
    //
    // E.g.
    //
    //	r := relation(...)
    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/compile/internal/syntax/parser.go

    		if p.tok == _Semi {
    			semi.pos = p.pos()
    			semi.lit = p.lit
    			p.next()
    		} else {
    			// asking for a '{' rather than a ';' here leads to a better error message
    			p.want(_Lbrace)
    			if p.tok != _Lbrace {
    				p.advance(_Lbrace, _Rbrace) // for better synchronization (e.g., go.dev/issue/22581)
    			}
    		}
    		if keyword == _For {
    			if p.tok != _Semi {
    				if p.tok == _Lbrace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	AND	$1, ZR                              // fb0340b2ff031b8a
    	ANDW	$1, ZR                              // fb030032ff031b0a
    	// TODO: this could have better encoding
    	ANDW	$-1, R10                            // 1b0080124a011b0a
    	AND	$8, R0, RSP                         // 1f007d92
    	ORR	$8, R0, RSP                         // 1f007db2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
Back to top