Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 917 for Instruction (0.69 sec)

  1. 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)
  2. 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)
  3. src/hash/crc32/crc32_arm64.go

    	return cpu.ARM64.HasCRC32
    }
    
    func archInitCastagnoli() {
    	if !cpu.ARM64.HasCRC32 {
    		panic("arch-specific crc32 instruction for Castagnoli not available")
    	}
    }
    
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !cpu.ARM64.HasCRC32 {
    		panic("arch-specific crc32 instruction for Castagnoli not available")
    	}
    
    	return ^castagnoliUpdate(^crc, p)
    }
    
    func archAvailableIEEE() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 05:31:01 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/obj/ppc64/doc.go

    3. Opcodes setting condition codes
    
    In PPC64 asm, some instructions other than compares have variations that can set
    the condition code where meaningful. This is indicated by adding '.' to the end
    of the PPC64 instruction. In Go asm, these instructions have 'CC' at the end of
    the opcode. The possible settings of the condition code depend on the instruction.
    CR0 is the default for fixed-point instructions; CR1 for floating point; CR6 for
    vector instructions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/cmd/dist/util_gc.go

    //go:build gc
    
    package main
    
    // useVFPv1 tries to execute one VFPv1 instruction on ARM.
    // It will crash the current process if VFPv1 is missing.
    func useVFPv1()
    
    // useVFPv3 tries to execute one VFPv3 instruction on ARM.
    // It will crash the current process if VFPv3 is missing.
    func useVFPv3()
    
    // useARMv6K tries to run ARMv6K instructions on ARM.
    // It will crash the current process if it doesn't implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 609 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    // An Args holds the instruction arguments.
    // If an instruction has fewer than 4 arguments,
    // the final elements in the array are nil.
    type Args [4]Arg
    
    // An Arg is a single instruction argument, one of these types:
    // Endian, Imm, Mem, PCRel, Reg, RegList, RegShift, RegShiftReg.
    type Arg interface {
    	IsArg()
    	String() string
    }
    
    type Float32Imm float32
    
    func (Float32Imm) IsArg() {}
    
    func (f Float32Imm) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"ASR (immediate)","Bits":"1|0|0|1|0|0|1|1|0|1|immr:6|111111:6|Rn:5|Rd:5","Arch":"64-bit variant","Syntax":"ASR <Xd>, <Xn>, #<shift>","Code":"","Alias":"This instruction is an alias of the SBFM instruction."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  9. src/cmd/dist/vfp_arm.s

    //go:build gc
    
    #include "textflag.h"
    
    // try to run "vmov.f64 d0, d0" instruction
    TEXT ·useVFPv1(SB),NOSPLIT,$0
    	WORD $0xeeb00b40	// vmov.f64 d0, d0
    	RET
    
    // try to run VFPv3-only "vmov.f64 d0, #112" instruction
    TEXT ·useVFPv3(SB),NOSPLIT,$0
    	WORD $0xeeb70b00	// vmov.f64 d0, #112
    	RET
    
    // try to run ARMv6K (or above) "ldrexd" instruction
    TEXT ·useARMv6K(SB),NOSPLIT,$32
    	MOVW R13, R2
    	BIC  $15, R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 651 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    type decodeOp uint16
    
    const (
    	xFail  decodeOp = iota // invalid instruction (return)
    	xMatch                 // completed match
    	xJump                  // jump to pc
    
    	xCondByte     // switch on instruction byte value
    	xCondSlashR   // read and switch on instruction /r value
    	xCondPrefix   // switch on presence of instruction prefix
    	xCondIs64     // switch on 64-bit processor mode
    	xCondDataSize // switch on operand size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top