Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for FPReg (0.06 sec)

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

    	s.allocatable &^= 1 << s.SPReg
    	s.allocatable &^= 1 << s.SBReg
    	if s.f.Config.hasGReg {
    		s.allocatable &^= 1 << s.GReg
    	}
    	if buildcfg.FramePointerEnabled && s.f.Config.FPReg >= 0 {
    		s.allocatable &^= 1 << uint(s.f.Config.FPReg)
    	}
    	if s.f.Config.LinkReg != -1 {
    		if isLeaf(f) {
    			// Leaf functions don't save/restore the link register.
    			s.allocatable &^= 1 << uint(s.f.Config.LinkReg)
    		}
    	}
    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