Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for assemble64 (0.43 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[sec:assembler_sources]]
    === Assembler sources
    
    Assembly language support is provided by means of the `'assembler'` plugin.
    
    === Example: The 'assembler' plugin
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/assembler/groovy/build.gradle[tag=apply-plugin]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        --------------------------------------------------
        Secondary Variant resources
        --------------------------------------------------
        Directories containing assembled resource files for main.
    
        Attributes
            - org.gradle.category            = library
            - org.gradle.dependency.bundling = external
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    	// TODO: These are preprocessed by the assembler into MOVD $const>>shift, R5; SLD $shift, R5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.language.assembler.tasks.Assemble.getAssemblerArgs()> does not have raw return type assignable to org.gradle.api.provider.Property in (Assemble.java:0)
    Method <org.gradle.language.assembler.tasks.Assemble.getObjectFileDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (Assemble.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //        ADDload, which is assembled as AG.
    //
    //     2. Loads and stores using relative addressing require the data be aligned
    //        according to its size (8-bytes for double words, 4-bytes for words
    //        and so on).
    //
    //    We can always work around these by inserting LARL instructions (load address
    //    relative long) in the assembler, but typically this results in worse code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	}
    
    	for _, ins := range inss {
    		ins.p = p
    	}
    
    	return inss
    }
    
    // assemble emits machine code.
    // It is called at the very end of the assembly process.
    func assemble(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {
    	if ctxt.Retpoline {
    		ctxt.Diag("-spectre=ret not supported on riscv")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		p.From.Reg = v.Args[0].Reg()
    		ssagen.AddrAuto(&p.To, v)
    
    	case ssa.OpArgIntReg, ssa.OpArgFloatReg:
    		// The assembler needs to wrap the entry safepoint/stack growth code with spill/unspill
    		// The loop only runs once.
    		for _, a := range v.Block.Func.RegArgs {
    			// Pass the spill/unspill information along to the assembler, offset by size of
    			// the saved LR slot.
    			addr := ssagen.SpillSlotAddr(a, ppc64.REGSP, base.Ctxt.Arch.FixedFrameSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `setToolChain(NativeToolChain)` was removed. Use `Property.set()` instead.
    
    The following have also seen similar changes:
    
     * link:{groovyDslPath}/org.gradle.language.assembler.tasks.Assemble.html[Assemble]
     * link:{groovyDslPath}/org.gradle.language.rc.tasks.WindowsResourceCompile.html[WindowsResourceCompile]
     * link:{javadocPath}/org/gradle/nativeplatform/tasks/StripSymbols.html[StripSymbols]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/asm0.go

    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    	// the content of REGTMP, upon async preemption. Currently, all cases
    	// of assembler-inserted REGTMP fall into this category.
    	// If p doesn't use REGTMP, it can be simply preempted, so we don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    	// the content of REGTMP, upon async preemption. Currently, all cases
    	// of assembler-inserted REGTMP fall into this category.
    	// If p doesn't use REGTMP, it can be simply preempted, so we don't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top