Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,525 for opcode (0.54 sec)

  1. src/cmd/asm/internal/arch/arm.go

    // ARMMRCOffset implements the peculiar encoding of the MRC and MCR instructions.
    // The difference between MRC and MCR is represented by a bit high in the word, not
    // in the usual way by the opcode itself. Asm must use AMRC for both instructions, so
    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    func ARMMRCOffset(op obj.As, cond string, x0, x1, x2, x3, x4, x5 int64) (offset int64, op0 obj.As, ok bool) {
    	op1 := int64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/list7.go

    	str := ""
    
    	// ARM64 register list follows ARM64 instruction decode schema
    	// | 31 | 30 | ... | 15 - 12 | 11 - 10 | ... |
    	// +----+----+-----+---------+---------+-----+
    	// |    | Q  | ... | opcode  |   size  | ... |
    
    	firstReg := int(list & 31)
    	opcode := (list >> 12) & 15
    	var regCnt int
    	var t string
    	switch opcode {
    	case 0x7:
    		regCnt = 1
    	case 0xa:
    		regCnt = 2
    	case 0x6:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

      }
    
      fun closeCodeExceptionMessage(code: Int): String? {
        return if (code < 1000 || code >= 5000) {
          "Code must be in range [1000,5000): $code"
        } else if (code in 1004..1006 || code in 1015..2999) {
          "Code $code is reserved and may not be used."
        } else {
          null
        }
      }
    
      fun validateCloseCode(code: Int) {
        val message = closeCodeExceptionMessage(code)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      }
    
      /**
       * Send a close frame with optional code and reason.
       *
       * @param code Status code as defined by
       *     [Section 7.4 of RFC 6455](http://tools.ietf.org/html/rfc6455#section-7.4) or `0`.
       * @param reason Reason for shutting down or `null`.
       */
      @Throws(IOException::class)
      fun writeClose(
        code: Int,
        reason: ByteString?,
      ) {
        var payload = ByteString.EMPTY
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// NOTE: iant thinks this is deliberate, but we can't find the history.
    		_, reg1 := inst.Args[0].(Reg)
    		_, reg2 := inst.Args[1].(Reg)
    		if reg1 && reg2 && (inst.Opcode>>24 == 0xDC || inst.Opcode>>24 == 0xDE) {
    			switch inst.Op {
    			case FDIV:
    				inst.Op = FDIVR
    			case FDIVR:
    				inst.Op = FDIV
    			case FSUB:
    				inst.Op = FSUBR
    			case FSUBR:
    				inst.Op = FSUB
    			case FDIVP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			}
    			if bh == 0 {
    				str := fmt.Sprintf(" %d,%s", bo, gnuArg(&inst, 1, inst.Args[1], PC))
    				buf.WriteString(str)
    				startArg = 3
    			}
    		}
    
    	case "mtspr":
    		opcode := inst.Op.String()
    		buf.WriteString(opcode[0:2])
    		switch spr := inst.Args[0].(type) {
    		case SpReg:
    			switch spr {
    			case 1:
    				buf.WriteString("xer")
    				startArg = 1
    			case 8:
    				buf.WriteString("lr")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/jvmbytecode/JvmBytecodeCallInterceptor.java

    import java.util.function.Supplier;
    
    public interface JvmBytecodeCallInterceptor extends FilterableBytecodeInterceptor {
        boolean visitMethodInsn(
                String className,
                int opcode,
                String owner,
                String name,
                String descriptor,
                boolean isInterface,
                Supplier<MethodNode> readMethodNode
        );
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    
    // Each architecture is allotted a distinct subspace of opcode values
    // for declaring its arch-specific opcodes.
    // Within this subspace, the first arch-specific opcode should be
    // at offset A_ARCHSPECIFIC.
    //
    // Subspaces are aligned to a power of two so opcodes can be masked
    // with AMask and used as compact array indices.
    const (
    	ABase386 = (1 + iota) << 11
    	ABaseARM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                @Override
                public void visitFieldInsn(int opcode, String owner, String name, String desc) {
                    mv.visitFieldInsn(opcode, remap(owner), name, remap(desc));
                }
    
                @Override
                public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean intf) {
                    mv.visitMethodInsn(opcode, remap(owner), name, remap(desc), intf);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/amd64/versions_test.go

    	// Clobber all the non-v1 opcodes.
    	opcodes := map[string]bool{}
    	var features []string
    	for feature, opcodeList := range featureToOpcodes {
    		if runtimeFeatures[feature] {
    			features = append(features, fmt.Sprintf("cpu.%s=off", feature))
    		}
    		for _, op := range opcodeList {
    			opcodes[op] = true
    		}
    	}
    	clobber(t, os.Args[0], dst, opcodes)
    	if err = dst.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top