Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 603 for Instruction (0.3 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAMXTile          bool // Advanced Matrix Extension Tile instructions
    	HasAMXInt8          bool // Advanced Matrix Extension Int8 instructions
    	HasAMXBF16          bool // Advanced Matrix Extension BFloat16 instructions
    	HasBMI1             bool // Bit manipulation instruction set 1
    	HasBMI2             bool // Bit manipulation instruction set 2
    	HasCX16             bool // Compare and exchange 16 Bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

     */
    internal
    sealed class ResidualProgram {
    
        /**
         * A static residue, can be compiled ahead of time.
         */
        data class Static(val instructions: List<Instruction>) : ResidualProgram() {
    
            constructor(vararg instructions: Instruction) :
                this(instructions.toList())
        }
    
        /**
         * A dynamic script [source] residue, can only be compiled after the execution of the static [prelude] at runtime.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/reloctype.go

    	R_ARM64_GOTPCREL
    
    	// R_ARM64_GOT resolves a GOT-relative instruction sequence, usually an adrp
    	// followed by another ld instruction.
    	R_ARM64_GOT
    
    	// R_ARM64_PCREL resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by another add instruction.
    	R_ARM64_PCREL
    
    	// R_ARM64_PCREL_LDST8 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD8 or ST8 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    type encoding struct {
    	encode   func(*instruction) uint32     // encode returns the machine code for an instruction
    	validate func(*obj.Link, *instruction) // validate validates an instruction
    	length   int                           // length of encoded instruction; 0 for pseudo-ops, 4 otherwise
    }
    
    var (
    	// Encodings have the following naming convention:
    	//
    	//  1. the instruction encoding (R/I/S/B/U/J), in lowercase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluator.kt

    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyBasePlugins
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyDefaultPluginRequests
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyPluginRequests
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyPluginRequestsOf
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.CloseTargetScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/doc.go

    to a specified boundary by padding with NOOP instruction. The alignment value supported on arm64
    must be a power of 2 and in the range of [8, 2048].
    
    Examples:
    
    	PCALIGN $16
    	MOVD $2, R0          // This instruction is aligned with 16 bytes.
    	PCALIGN $1024
    	MOVD $3, R1          // This instruction is aligned with 1024 bytes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/cpu.go

    const (
    	// USES_REG_TMP indicates that a machine instruction generated from the
    	// corresponding *obj.Prog uses the temporary register.
    	USES_REG_TMP = 1 << iota
    
    	// NEED_JAL_RELOC is set on JAL instructions to indicate that a
    	// R_RISCV_JAL relocation is needed.
    	NEED_JAL_RELOC
    
    	// NEED_CALL_RELOC is set on an AUIPC instruction to indicate that it
    	// is the first instruction in an AUIPC + JAL pair that needs a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	Len      int      // length of encoded instruction in bytes
    	PCRel    int      // length of PC-relative address in instruction encoding
    	PCRelOff int      // index of start of PC-relative address in instruction encoding
    }
    
    // Prefixes is an array of prefixes associated with a single instruction.
    // The prefixes are listed in the same order as found in the instruction:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            is Instruction.CollectProjectScriptDependencies -> emitCollectProjectScriptDependencies(instruction.script)
            is Instruction.ApplyBasePlugins -> emitApplyBasePluginsTo()
            is Instruction.ApplyDefaultPluginRequests -> emitApplyEmptyPluginRequestsTo()
            is Instruction.ApplyPluginRequests -> emitApplyPluginRequests(instruction.requests, instruction.source)
            is Instruction.ApplyPluginRequestsOf -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. doc/asm.html

    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    The assembler works on the semi-abstract form, so
    when you see an instruction like <code>MOV</code>
    what the toolchain actually generates for that operation might
    not be a move instruction at all, perhaps a clear or load.
    Or it might correspond exactly to the machine instruction with that name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top