Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewBlock (0.47 sec)

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

    	id := v.ID
    	if v.InCache {
    		f.unCache(v)
    	}
    	*v = Value{}
    	v.ID = id
    	v.argstorage[0] = f.freeValues
    	f.freeValues = v
    }
    
    // NewBlock allocates a new Block of the given kind and places it at the end of f.Blocks.
    func (f *Func) NewBlock(kind BlockKind) *Block {
    	var b *Block
    	if f.freeBlocks != nil {
    		b = f.freeBlocks
    		f.freeBlocks = b.succstorage[0].b
    		b.succstorage[0].b = nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top