Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for checkSize (0.13 sec)

  1. src/cmd/compile/internal/types/size.go

    // is needed immediately.  CheckSize makes sure the
    // size is evaluated eventually.
    
    var deferredTypeStack []*Type
    
    func CheckSize(t *Type) {
    	if t == nil {
    		return
    	}
    
    	// function arg structs should not be checked
    	// outside of the enclosing function.
    	if t.IsFuncArgStruct() {
    		base.Fatalf("CheckSize %v", t)
    	}
    
    	if defercalc == 0 {
    		CalcSize(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/expr.go

    	base.Errorf("cannot use promoted field %v in struct literal of type %v", strings.Join(ep, "."), typ)
    	return nil
    }
    
    // tcConv typechecks an OCONV node.
    func tcConv(n *ir.ConvExpr) ir.Node {
    	types.CheckSize(n.Type()) // ensure width is calculated for backend
    	n.X = Expr(n.X)
    	n.X = convlit1(n.X, n.Type(), true, nil)
    	t := n.X.Type()
    	if t == nil || n.Type() == nil {
    		n.SetType(nil)
    		return n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	// It is 19K on linux/amd64, with separate-code in binutils ld and 64k being most common alignment
    	// 4*64k should be enough, but this might need revision eventually.
    	checkSize(t, "./trivial.pie", 256000)
    }
    
    // Check that the file size does not exceed a limit.
    func checkSize(t *testing.T, f string, limit int64) {
    	fi, err := os.Stat(f)
    	if err != nil {
    		t.Fatalf("stat failed: %v", err)
    	}
    	if sz := fi.Size(); sz > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/func.go

    		n.SetType(l.Type())
    		return tcConv(n)
    	}
    
    	RewriteNonNameCall(n)
    	typecheckargs(n)
    	t := l.Type()
    	if t == nil {
    		n.SetType(nil)
    		return n
    	}
    	types.CheckSize(t)
    
    	switch l.Op() {
    	case ir.ODOTINTER:
    		n.SetOp(ir.OCALLINTER)
    
    	case ir.ODOTMETH:
    		l := l.(*ir.SelectorExpr)
    		n.SetOp(ir.OCALLMETH)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/expr.go

    	// Eagerly compute sizes of all expressions for the back end.
    	if typ := n.Type(); typ != nil && typ.Kind() != types.TBLANK && !typ.IsFuncArgStruct() {
    		types.CheckSize(typ)
    	}
    	if n, ok := n.(*ir.Name); ok && n.Heapaddr != nil {
    		types.CheckSize(n.Heapaddr.Type())
    	}
    	if ir.IsConst(n, constant.String) {
    		// Emit string symbol now to avoid emitting
    		// any concurrently during the backend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    		return
    	}
    
    	lhs, rhs := []ir.Node{n.X}, []ir.Node{n.Y}
    	assign(n, lhs, rhs)
    	n.X, n.Y = lhs[0], rhs[0]
    
    	// TODO(mdempsky): This seems out of place.
    	if !ir.IsBlank(n.X) {
    		types.CheckSize(n.X.Type()) // ensure width is calculated for backend
    	}
    }
    
    func tcAssignList(n *ir.AssignListStmt) {
    	if base.EnableTrace && base.Flag.LowerT {
    		defer tracePrint("tcAssignList", n)(nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/typecheck.go

    		switch t.Kind() {
    		case types.TFUNC, // might have TANY; wait until it's called
    			types.TANY, types.TFORW, types.TIDEAL, types.TNIL, types.TBLANK:
    			break
    
    		default:
    			types.CheckSize(t)
    		}
    	}
    
    	return n
    }
    
    // indexlit implements typechecking of untyped values as
    // array/slice indexes. It is almost equivalent to DefaultLit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileAttributesTest.java

                  SmbFile checkFile = new SmbFile(f.getCanonicalPath(), f.getContext()) ) {
    
                try {
                    assertTrue(checkFile.exists());
                }
                finally {
                    ostream.close();
                    checkFile.close();
                    f.delete();
                }
            }
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. src/testing/fstest/testfs.go

    		return strings.Compare(fa[1]+" "+fb[0], fb[1]+" "+fa[0])
    	})
    
    	t.errorf("%s: diff %s:\n\t%s", dir, desc, strings.Join(diffs, "\n\t"))
    }
    
    // checkFile checks that basic file reading works correctly.
    func (t *fsTester) checkFile(file string) {
    	t.files = append(t.files, file)
    
    	// Read entire file.
    	f, err := t.fsys.Open(file)
    	if err != nil {
    		t.errorf("%s: Open: %w", file, err)
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    			compile(t, rootDir, entry.Name(), filepath.Join(tmpdir, "testdata"), nil, filename)
    			pkgName := strings.TrimSuffix(entry.Name(), ".go")
    			imported := importPkg(t, "./testdata/"+pkgName, tmpdir)
    			checked := checkFile(t, filename, src)
    
    			seen := make(map[string]bool)
    			for _, name := range imported.Scope().Names() {
    				if !token.IsExported(name) {
    					continue // ignore synthetic names like .inittask and .dict.*
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top