Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fixup (0.04 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    		}
    		ctxt.Arch.ByteOrder.PutUint32(p[r.Off()+4:], OP_TOCRESTORE)
    	}
    
    	return stub.Sym(), firstUse
    }
    
    // Scan relocs and generate PLT stubs and generate/fixup ABI defined functions created by the linker.
    func genstubs(ctxt *ld.Link, ldr *loader.Loader) {
    	var stubs []loader.Sym
    	var abifuncs []loader.Sym
    	for _, s := range ctxt.Textp {
    		relocs := ldr.Relocs(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    //
    // It also requires that there are no critical edges (critical =
    // comes from a block with >1 successor and goes to a block with >1
    // predecessor).  This makes it easy to add fixup code on merge edges -
    // the source of a merge edge has only one successor, so we can add
    // fixup code to the end of that block.
    
    // Spilling
    //
    // During the normal course of the allocator, we might throw a still-live
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    	nbits := int64((auxint >> 24) & 0xFF)
    	mask = ((1 << uint(nbits-mb)) - 1) ^ ((1 << uint(nbits-me)) - 1)
    	if mb > me {
    		mask = ^mask
    	}
    	if nbits == 32 {
    		mask = uint64(uint32(mask))
    	}
    
    	// Fixup ME to match ISA definition.  The second argument to MASK(..,me)
    	// is inclusive.
    	me = (me - 1) & (nbits - 1)
    	return
    }
    
    // This verifies that the mask is a set of
    // consecutive bits including the least
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			ReturnUnknownFieldPaths: v.returnUnknownFieldPaths,
    		})
    		if err != nil {
    			return nil, err
    		}
    		unknownFieldPaths = append(unknownFieldPaths, paths...)
    
    		// fixup missing generation in very old CRs
    		if v.repairGeneration && objectMeta.Generation == 0 {
    			objectMeta.Generation = 1
    		}
    	}
    
    	// restore meta fields, starting clean
    	if foundKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top