Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 83 of 83 for free1 (0.07 sec)

  1. src/cmd/link/internal/loader/loader.go

    		pp := l.getPayload(i)
    		return string(pp.data)
    	}
    	r, li := l.toLocal(i)
    	return r.DataString(li)
    }
    
    // FreeData clears the symbol data of an external symbol, allowing the memory
    // to be freed earlier. No-op for non-external symbols.
    // i is global index.
    func (l *Loader) FreeData(i Sym) {
    	if l.IsExternal(i) {
    		pp := l.getPayload(i)
    		if pp != nil {
    			pp.data = nil
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // HMULx is commutative, but its first argument must go in AX.
    // If possible, put a rematerializeable value in the first argument slot,
    // to reduce the odds that another value will be have to spilled
    // specifically to free up AX.
    (HMUL(Q|L)  x y) && !x.rematerializeable() && y.rematerializeable() => (HMUL(Q|L)  y x)
    (HMUL(Q|L)U x y) && !x.rematerializeable() && y.rematerializeable() => (HMUL(Q|L)U y x)
    
    // Fold loads into compares
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top