Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,108 for opcode (0.26 sec)

  1. src/cmd/internal/obj/dwarf.go

    	}
    
    	// Subtract from deltaPC and deltaLC the amounts that the opcode will add.
    	deltaPC -= uint64((opcode - OPCODE_BASE) / LINE_RANGE)
    	deltaLC -= (opcode-OPCODE_BASE)%LINE_RANGE + LINE_BASE
    
    	// Encode deltaPC.
    	if deltaPC != 0 {
    		if deltaPC <= PC_RANGE {
    			// Adjust the opcode so that we can use the 1-byte DW_LNS_const_add_pc
    			// instruction.
    			opcode -= LINE_RANGE * int64(PC_RANGE-deltaPC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                                                   String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/test/Task")) {
                             if (name.equals("isIncremental") && descriptor.equals("()Z") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                            String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/api/Rule")) {
                            if (name.equals("getDescription") && descriptor.equals("()Ljava/lang/String;") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		v = append(v, d.valueInterface())
    
    		// Next token must be , or ].
    		if d.opcode == scanSkipSpace {
    			d.scanWhile(scanSkipSpace)
    		}
    		if d.opcode == scanEndArray {
    			break
    		}
    		if d.opcode != scanArrayValue {
    			panic(phasePanicMsg)
    		}
    	}
    	return v
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

          }
        }
      }
    
      @Throws(IOException::class)
      private fun readMessageFrame() {
        val opcode = this.opcode
        if (opcode != OPCODE_TEXT && opcode != OPCODE_BINARY) {
          throw ProtocolException("Unknown opcode: ${opcode.toHexString()}")
        }
    
        readMessage()
    
        if (readingCompressedMessage) {
          val messageInflater =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    	// ignore it.
    }
    
    // step processes the next opcode and updates r.state. If the opcode
    // emits a row in the line table, this updates *entry and returns
    // true.
    func (r *LineReader) step(entry *LineEntry) bool {
    	opcode := int(r.buf.uint8())
    
    	if opcode >= r.opcodeBase {
    		// Special opcode [DWARF2 6.2.5.1, DWARF4 6.2.5.1]
    		adjustedOpcode := opcode - r.opcodeBase
    		r.advancePC(adjustedOpcode / r.lineRange)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

        visitInsn(Opcodes.BASTORE)
    }
    
    
    internal
    fun MethodVisitor.DUP() {
        visitInsn(Opcodes.DUP)
    }
    
    
    internal
    fun MethodVisitor.ARETURN() {
        visitInsn(Opcodes.ARETURN)
    }
    
    
    fun MethodVisitor.RETURN() {
        visitInsn(Opcodes.RETURN)
    }
    
    
    internal
    fun MethodVisitor.ALOAD(`var`: Int) {
        visitVarInsn(Opcodes.ALOAD, `var`)
    }
    
    
    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. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingBackwardsCompatibilityVisitor.java

            }
    
            @Override
            public void visitTypeInsn(int opcode, String type) {
                String newType = fixInternalNameForBackwardCompatibility(type);
                super.visitTypeInsn(opcode, newType);
            }
    
            @Override
            public void visitFieldInsn(int opcode, String owner, String name, String descriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    			log.Fatalf("unexpected opcode %v", p.As)
    		case ACFEBRA:
    			opcode = op_CFEBRA
    		case ACFDBRA:
    			opcode = op_CFDBRA
    		case ACGEBRA:
    			opcode = op_CGEBRA
    		case ACGDBRA:
    			opcode = op_CGDBRA
    		case ACLFEBR:
    			opcode = op_CLFEBR
    		case ACLFDBR:
    			opcode = op_CLFDBR
    		case ACLGEBR:
    			opcode = op_CLGEBR
    		case ACLGDBR:
    			opcode = op_CLGDBR
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                        }
                    }
    
                    @Override
                    public void visitFieldInsn(int opcode, String owner, String name, String desc) {
                        if ((opcode == Opcodes.GETSTATIC || opcode == Opcodes.PUTSTATIC) && CLASS_DESC.equals(desc)) {
                            ImplementationDependencyRelocator.ClassLiteralRemapping remapping = remapper.maybeRemap(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top