Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 917 for Instruction (0.17 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64error.s

    	MOVQ CR8, (AX)                  // ERROR "invalid instruction"
    	MOVQ (AX), CR0                  // ERROR "invalid instruction"
    	MOVQ (AX), CR2                  // ERROR "invalid instruction"
    	MOVQ (AX), CR3                  // ERROR "invalid instruction"
    	MOVQ (AX), CR4                  // ERROR "invalid instruction"
    	MOVQ (AX), CR8                  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    // instFormat is a decoding rule for one specific instruction form.
    // an instruction ins matches the rule if ins&Mask == Value
    // DontCare bits should be zero, but the machine might not reject
    // ones in those bits, they are mainly reserved for future expansion
    // of the instruction set.
    // The Args are stored in the same order as the instruction manual.
    //
    // Prefixed instructions are stored as:
    //
    //	prefix << 32 | suffix,
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/wincallback.go

    // External code calls into callbackasm at an offset corresponding
    // to the callback index. Callbackasm is a table of MOV and B instructions.
    // The MOV instruction loads R12 with the callback index, and the
    // B instruction branches to callbackasm1.
    // callbackasm1 takes the callback index from R12 and
    // indexes into an array that stores information about each callback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top