Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Int128Sym (0.11 sec)

  1. src/cmd/internal/obj/sym.go

    		s.Size = 8
    		s.WriteInt(ctxt, 0, 8, i)
    		s.Type = objabi.SRODATA
    		s.Set(AttrLocal, true)
    		s.Set(AttrContentAddressable, true)
    		ctxt.constSyms = append(ctxt.constSyms, s)
    	})
    }
    
    func (ctxt *Link) Int128Sym(hi, lo int64) *LSym {
    	name := fmt.Sprintf("$i128.%016x%016x", uint64(hi), uint64(lo))
    	return ctxt.LookupInit(name, func(s *LSym) {
    		s.Size = 16
    		if ctxt.Arch.ByteOrder == binary.LittleEndian {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/obj7.go

    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    		}
    
    	case AVMOVQ:
    		if p.From.Type == obj.TYPE_CONST {
    			p.From.Type = obj.TYPE_MEM
    			p.From.Sym = c.ctxt.Int128Sym(p.GetFrom3().Offset, p.From.Offset)
    			p.From.Name = obj.NAME_EXTERN
    			p.From.Offset = 0
    			p.RestArgs = nil
    		}
    
    	case AFMOVS:
    		if p.From.Type == obj.TYPE_FCONST {
    			f64 := p.From.Val.(float64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top