Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,525 for opcode (0.13 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

        }
    }
    
    
    internal
    fun MethodVisitor.ICONST_0() {
        visitInsn(Opcodes.ICONST_0)
    }
    
    
    internal
    fun MethodVisitor.NEW(type: InternalName) {
        visitTypeInsn(Opcodes.NEW, type)
    }
    
    
    internal
    fun MethodVisitor.visitTypeInsn(opcode: Int, type: InternalName) {
        visitTypeInsn(opcode, type.value)
    }
    
    
    internal
    fun MethodVisitor.NEWARRAY(primitiveType: Int) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/evex.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x86
    
    import (
    	"cmd/internal/obj"
    	"errors"
    	"fmt"
    	"strings"
    )
    
    // evexBits stores EVEX prefix info that is used during instruction encoding.
    type evexBits struct {
    	b1 byte // [W1mmLLpp]
    	b2 byte // [NNNbbZRS]
    
    	// Associated instruction opcode.
    	opcode byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    	xArgR16op        // arg r16 with +rw in opcode
    	xArgR32          // arg r32
    	xArgR32M16       // arg r32/m16
    	xArgR32M8        // arg r32/m8
    	xArgR32op        // arg r32 with +rd in opcode
    	xArgR64          // arg r64
    	xArgR64M16       // arg r64/m16
    	xArgR64op        // arg r64 with +rd in opcode
    	xArgR8           // arg r8
    	xArgR8op         // arg r8 with +rb in opcode
    	xArgRAX          // arg RAX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	}
    	inst.Len = 4
    	ui_extn := [2]uint32{ord.Uint32(src[:inst.Len]), 0}
    	ui := uint64(ui_extn[0]) << 32
    	inst.Enc = ui_extn[0]
    	opcode := inst.Enc >> 26
    	if opcode == prefixOpcode {
    		// This is a prefixed instruction
    		inst.Len = 8
    		if len(src) < 8 {
    			return inst, errShort
    		}
    		// Merge the suffixed word.
    		ui_extn[1] = ord.Uint32(src[4:inst.Len])
    		ui |= uint64(ui_extn[1])
    		inst.SuffixEnc = ui_extn[1]
    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. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package x86asm implements decoding of x86 machine code.
    package x86asm
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // An Inst is a single instruction.
    type Inst struct {
    	Prefix   Prefixes // Prefixes applied to the instruction.
    	Op       Op       // Opcode mnemonic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingClassTransform.java

    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    import static org.objectweb.asm.Opcodes.ACC_SYNTHETIC;
    import static org.objectweb.asm.Opcodes.H_INVOKESTATIC;
    import static org.objectweb.asm.Opcodes.INVOKESPECIAL;
    import static org.objectweb.asm.Opcodes.INVOKESTATIC;
    import static org.objectweb.asm.Opcodes.INVOKEVIRTUAL;
    import static org.objectweb.asm.Type.INT_TYPE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/doc.go

    instruction using the constant has an immediate version of the opcode, then an
    immediate value is used with the opcode if possible.
    
    Example:
    
    	ADD $1, R3, R4		<=> 	addi r4, r3, 1
    
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                interceptedCallable.getKind() == CallableKindInfo.INSTANCE_METHOD ? CodeBlock.of("(opcode == $1T.INVOKEVIRTUAL || opcode == $1T.INVOKEINTERFACE)", Opcodes.class) :
                    interceptedCallable.getKind() == CallableKindInfo.AFTER_CONSTRUCTOR ? CodeBlock.of("opcode == $T.INVOKESPECIAL", Opcodes.class) : null;
            if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top