Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for assemble64 (0.2 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    							d.defgotype(reloc.Sym())
    						}
    					}
    				}
    			}
    			continue
    		}
    		// Skip file local symbols (this includes static tmps, stack
    		// object symbols, and local symbols in assembler src files).
    		if d.ldr.IsFileLocal(idx) {
    			continue
    		}
    
    		// Find compiler-generated DWARF info sym for global in question,
    		// and tack it onto the appropriate unit.  Note that there are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.language.assembler.tasks.Assemble.getOperationLoggerFactory()> has arguments/return type org.gradle.internal.operations.logging.BuildOperationLoggerFactory that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (Assemble.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // On power10, prefixed loads and stores can be used for offsets > 16 bits and <= 32 bits.
    // and support for PC relative addressing must be available if relocation is needed.
    // On power10, the assembler will determine when to use DS-form or prefixed
    // instructions for non-indexed ops depending on the value of the offset.
    //
    // Fold offsets for stores.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Eq(Ptr|64|32|16|8|B)  x y) => (SETEQ (CMP(Q|Q|L|W|B|B) x y))
    (Neq(Ptr|64|32|16|8|B) x y) => (SETNE (CMP(Q|Q|L|W|B|B) x y))
    
    // Lowering floating point comparisons
    // Note Go assembler gets UCOMISx operand order wrong, but it is right here
    // and the operands are reversed when generating assembly language.
    (Eq(32|64)F   x y) => (SETEQF (UCOMIS(S|D) x y))
    (Neq(32|64)F  x y) => (SETNEF (UCOMIS(S|D) x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm/asm5.go

    	"internal/buildcfg"
    	"log"
    	"math"
    	"sort"
    )
    
    // ctxt5 holds state while assembling a single function.
    // Each function gets a fresh ctxt5.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt5 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	printp     *obj.Prog
    	blitrl     *obj.Prog
    	elitrl     *obj.Prog
    	autosize   int64
    	instoffset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    }
    
    func (l *Loader) IsFileLocal(i Sym) bool {
    	return l.SymVersion(i) >= sym.SymVerStatic
    }
    
    // IsFromAssembly returns true if this symbol is derived from an
    // object file generated by the Go assembler.
    func (l *Loader) IsFromAssembly(i Sym) bool {
    	if l.IsExternal(i) {
    		pp := l.getPayload(i)
    		if pp.objidx != 0 {
    			r := l.objs[pp.objidx]
    			return r.FromAssembly()
    		}
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * ### Paths and Queries should decompose
     *
     * Neither of the built-in URL models offer direct access to path segments or query parameters.
     * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get
     * silently replaced with spaces? If a query parameter contains a '&amp;', does that get escaped?
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	MOVQ DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHQ GS // 0fa8
    	PUSHQ FS // 0fa0
    	POPQ FS  // 0fa1
    	POPQ GS  // 0fa9
    	// All instructions below semantically have unsigned operands,
    	// but previous assembler permitted negative arguments.
    	// This behavior is preserved for compatibility reasons.
    	VPSHUFD $-79, X7, X7         // c5f970ffb1
    	RORXL $-1, (AX), DX          // c4e37bf010ff
    	RORXQ $-1, (AX), DX          // c4e3fbf010ff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
  9. src/time/format.go

    	for pad := width - n; pad > 0; pad-- {
    		b = append(b, '0')
    	}
    
    	// Ensure capacity.
    	if len(b)+n <= cap(b) {
    		b = b[:len(b)+n]
    	} else {
    		b = append(b, make([]byte, n)...)
    	}
    
    	// Assemble decimal in reverse order.
    	i := len(b) - 1
    	for u >= 10 && i > 0 {
    		q := u / 10
    		b[i] = utod(u - q*10)
    		u = q
    		i--
    	}
    	b[i] = utod(u)
    	return b
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    		// exclude from hookPkgs.
    		unhookPkgs := []string{"runtime/testdata/..."}
    		for _, hook := range hooks {
    			// Construct the build flags to use the
    			// maymorestack hook in the compiler and
    			// assembler. We pass this via the GOFLAGS
    			// environment variable so that it applies to
    			// both the test itself and to binaries built
    			// by the test.
    			goFlagsList := []string{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top