Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for obj (0.07 sec)

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

    		pbahead := s.Prog(ppc64.ABEQ)
    		pbahead.To.Type = obj.TYPE_BRANCH
    
    		p = s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r1
    		p.Reg = r0
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    
    		pbover := s.Prog(obj.AJMP)
    		pbover.To.Type = obj.TYPE_BRANCH
    
    		p = s.Prog(ppc64.ANEG)
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = r
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = r0
    		pbahead.To.SetTarget(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    			}
    			if def.Pos() != test.obj.Pos() {
    				t.Errorf("Pos() = %v, want %v", def.Pos(), test.obj.Pos())
    			}
    			if def.Parent() != test.obj.Parent() {
    				t.Fatalf("Parent() = %v, want %v", def.Parent(), test.obj.Parent())
    			}
    			if def.Exported() != test.obj.Exported() {
    				t.Fatalf("Exported() = %v, want %v", def.Exported(), test.obj.Exported())
    			}
    			if def.Id() != test.obj.Id() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    	state.lists[varID] = list
    }
    
    // PutLocationList adds list (a location list in its intermediate representation) to listSym.
    func (debugInfo *FuncDebug) PutLocationList(list []byte, ctxt *obj.Link, listSym, startPC *obj.LSym) {
    	getPC := debugInfo.GetPC
    
    	if ctxt.UseBASEntries {
    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    		listSym.WriteAddr(ctxt, listSym.Size, ctxt.Arch.PtrSize, startPC, 0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// from any other cache the user might have, and for the location
    	// to build the bootstrap versions of the standard library.
    	obj := pathf("%s/pkg/obj", goroot)
    	if !isdir(obj) {
    		xmkdir(obj)
    	}
    	xatexit(func() { xremove(obj) })
    
    	// Create build cache directory.
    	objGobuild := pathf("%s/pkg/obj/go-build", goroot)
    	if rebuildall {
    		xremoveall(objGobuild)
    	}
    	xmkdirall(objGobuild)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	src := tg.path("main.go")
    	obj := tg.path("main")
    	tg.run("build", "-o", obj, src)
    
    	out, err = testenv.Command(t, "upx", obj).CombinedOutput()
    	if err != nil {
    		t.Logf("executing upx\n%s\n", out)
    		t.Fatalf("upx failed with %v", err)
    	}
    
    	out, err = testenv.Command(t, obj).CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    //	LTYPE8 cond ioreg ',' '[' reglist ']'
    //	{
    //		var g obj.Addr
    //
    //		g = nullgen;
    //		g.Type = obj.TYPE_CONST;
    //		g.Offset = int64($6);
    //		outcode($1, $2, &$3, 0, &g);
    //	}
    	MOVM	0(R1), [R2,R5,R8,g] // MOVM	(R1), [R2,R5,R8,g]
    	MOVM	(R1), [R2-R5] // MOVM (R1), [R2,R3,R4,R5]
    	MOVM	(R1), [R2]
    
    //	LTYPE8 cond '[' reglist ']' ',' ioreg
    //	{
    //		var g obj.Addr
    //
    //		g = nullgen;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    func (t *Type) Sym() *Sym {
    	if t.obj != nil {
    		return t.obj.Sym()
    	}
    	return nil
    }
    
    // Underlying returns the underlying type of type t.
    func (t *Type) Underlying() *Type { return t.underlying }
    
    // Pos returns a position associated with t, if any.
    // This should only be used for diagnostics.
    func (t *Type) Pos() src.XPos {
    	if t.obj != nil {
    		return t.obj.Pos()
    	}
    	return src.NoXPos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	lsym := sym.(*obj.LSym)
    	if lsym.Extra == nil {
    		return false
    	}
    	if _, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize && size == 4 {
    			return true // type hash field
    		}
    	}
    	return false
    }
    func fixed32(c *Config, sym Sym, off int64) int32 {
    	lsym := sym.(*obj.LSym)
    	if ti, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/ppc64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This contains the majority of valid opcode combinations
    // available in cmd/internal/obj/ppc64/asm9.go with
    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		}
    		return
    	}
    
    	if f, err := xcoff.Open(obj); err == nil {
    		defer f.Close()
    		sym, err := f.ImportedSymbols()
    		if err != nil {
    			fatalf("cannot load imported symbols from XCOFF file %s: %v", obj, err)
    		}
    		for _, s := range sym {
    			if s.Name == "runtime_rt0_go" || s.Name == "_rt0_ppc64_aix_lib" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top