Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UseArgs (0.2 sec)

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

    		p.To.Sym = ssagen.BoundsCheckFunc[v.AuxInt]
    		s.UseArgs(8) // space used in callee args area by assembly stubs
    
    	case ssa.Op386LoweredPanicExtendA, ssa.Op386LoweredPanicExtendB, ssa.Op386LoweredPanicExtendC:
    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		p.To.Sym = ssagen.ExtendCheckFunc[v.AuxInt]
    		s.UseArgs(12) // space used in callee args area by assembly stubs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/s390x/ssa.go

    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		p.To.Sym = ssagen.BoundsCheckFunc[v.AuxInt]
    		s.UseArgs(16) // space used in callee args area by assembly stubs
    	case ssa.OpS390XFLOGR, ssa.OpS390XPOPCNT,
    		ssa.OpS390XNEG, ssa.OpS390XNEGW,
    		ssa.OpS390XMOVWBR, ssa.OpS390XMOVDBR:
    		p := s.Prog(v.Op.Asm())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		p := s.Prog(obj.ACALL)
    		p.To.Type = obj.TYPE_MEM
    		p.To.Name = obj.NAME_EXTERN
    		p.To.Sym = ssagen.BoundsCheckFunc[v.AuxInt]
    		s.UseArgs(16) // space used in callee args area by assembly stubs
    
    	case ssa.OpPPC64LoweredNilCheck:
    		if buildcfg.GOOS == "aix" {
    			// CMP Rarg0, $0
    			// BNE 2(PC)
    			// STW R0, 0(R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	}
    
    	if s.maxarg < v.AuxInt {
    		s.maxarg = v.AuxInt
    	}
    }
    
    // UseArgs records the fact that an instruction needs a certain amount of
    // callee args space for its use.
    func (s *State) UseArgs(n int64) {
    	if s.maxarg < n {
    		s.maxarg = n
    	}
    }
    
    // fieldIdx finds the index of the field referred to by the ODOT node n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top