Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for reflectData (0.46 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/reflectObject.kt

            is ObjectOrigin.NullObjectOrigin -> ObjectReflection.Null(objectOrigin)
    
            is ObjectOrigin.TopLevelReceiver -> reflectData(OperationId(0, DefaultOperationGenerationId.preExisting), type as DataClass, objectOrigin, context)
    
            is ObjectOrigin.ConfiguringLambdaReceiver -> reflectData(OperationId(-1L, DefaultOperationGenerationId.preExisting), type as DataClass, objectOrigin, context)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    		fn := mapfn(mapaccess2[fast], t, false)
    		call = mkcall1(fn, fn.Type().ResultsTuple(), init, reflectdata.IndexMapRType(base.Pos, r), r.X, key)
    	} else {
    		fn := mapfn("mapaccess2_fat", t, true)
    		z := reflectdata.ZeroAddr(w)
    		call = mkcall1(fn, fn.Type().ResultsTuple(), init, reflectdata.IndexMapRType(base.Pos, r), r.X, key, z)
    	}
    
    	// mapaccess2* returns a typed bool, but due to spec changes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    }
    
    // Note: flag values must match those used in the TMAP case
    // in ../cmd/compile/internal/reflectdata/reflect.go:writeType.
    func (mt *MapType) IndirectKey() bool { // store ptr to key instead of key itself
    	return mt.Flags&1 != 0
    }
    func (mt *MapType) IndirectElem() bool { // store ptr to elem instead of elem itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

    	// It panics if the type's Kind is not Ptr.
    	Elem() Type
    
    	common() *abi.Type
    	uncommon() *uncommonType
    }
    
    /*
     * These data structures are known to the compiler (../../cmd/internal/reflectdata/reflect.go).
     * A few are known to ../runtime/type.go to convey to debuggers.
     * They are also known to ../runtime/type.go.
     */
    
    // A Kind represents the specific kind of type that a Type represents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    	"fmt"
    	"os"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/bitvec"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/typebits"
    	"cmd/compile/internal/types"
    	"cmd/internal/notsha256"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    
    	rtabi "internal/abi"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/runtime/map.go

    func isEmpty(x uint8) bool {
    	return x <= emptyOne
    }
    
    // A header for a Go map.
    type hmap struct {
    	// Note: the format of the hmap is also encoded in cmd/compile/internal/reflectdata/reflect.go.
    	// Make sure this stays in sync with the compiler's definition.
    	count     int // # live cells == size of map.  Must be first (used by len() builtin)
    	flags     uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    				// but if we perform this load at compile time then the dictionary
    				// might be dead.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    			} else if strings.HasPrefix(r.Sym.Name, "go:itab") {
    				// Same, but if we're using an itab we need to record that the
    				// itab._type might be put in an interface.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    			}
    			return r.Sym
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. src/reflect/type.go

    // FieldByName may return one of the fields named x or may report that there are none.
    // See https://golang.org/issue/4876 for more details.
    
    /*
     * These data structures are known to the compiler (../cmd/compile/internal/reflectdata/reflect.go).
     * A few are known to ../runtime/type.go to convey to debuggers.
     * They are also known to ../runtime/type.go.
     */
    
    // A Kind represents the specific kind of type that a [Type] represents.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/compile/internal/abi"
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/liveness"
    	"cmd/compile/internal/objw"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/rttype"
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/staticdata"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    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