Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 558 for opcodes (0.5 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    import org.jetbrains.org.objectweb.asm.ClassReader
    import org.jetbrains.org.objectweb.asm.Opcodes
    import org.jetbrains.org.objectweb.asm.Type
    import org.jetbrains.org.objectweb.asm.tree.ClassNode
    import java.io.File
    import kotlin.test.assertFalse
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/cpu.go

    	// it is the first instruction in an AUIPC + S-type pair that needs a
    	// R_RISCV_PCREL_STYPE relocation.
    	NEED_PCREL_STYPE_RELOC
    )
    
    // RISC-V mnemonics, as defined in the "opcodes" and "opcodes-pseudo" files
    // at https://github.com/riscv/riscv-opcodes.
    //
    // As well as some pseudo-mnemonics (e.g. MOV) used only in the assembler.
    //
    // See also "The RISC-V Instruction Set Manual" at https://riscv.org/specifications/.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

    import org.codehaus.groovy.control.ResolveVisitor;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.syntax.Types;
    import org.codehaus.groovy.transform.trait.Traits;
    import org.objectweb.asm.Opcodes;
    
    import javax.inject.Inject;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.reflect.Modifier;
    import java.util.HashMap;
    import java.util.HashSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    import org.jetbrains.org.objectweb.asm.AnnotationVisitor
    import org.jetbrains.org.objectweb.asm.ClassReader
    import org.jetbrains.org.objectweb.asm.ClassVisitor
    import org.jetbrains.org.objectweb.asm.Opcodes.ACC_PUBLIC
    import org.jetbrains.org.objectweb.asm.Opcodes.ACC_SYNTHETIC
    import org.jetbrains.org.objectweb.asm.signature.SignatureReader
    import org.jetbrains.org.objectweb.asm.signature.SignatureVisitor
    import java.io.Closeable
    import java.io.File
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func_test.go

    	}
    
    }
    
    // opcodeMap returns a map from opcode to the number of times that opcode
    // appears in the function.
    func opcodeMap(f *Func) map[Op]int {
    	m := map[Op]int{}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			m[v.Op]++
    		}
    	}
    	return m
    }
    
    // opcodeCounts checks that the number of opcodes listed in m agree with the
    // number of opcodes that appear in the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/ssa/_gen/main.go

    }
    
    type regInfo struct {
    	// inputs[i] encodes the set of registers allowed for the i'th input.
    	// Inputs that don't use registers (flags, memory, etc.) should be 0.
    	inputs []regMask
    	// clobbers encodes the set of registers that are overwritten by
    	// the instruction (other than the output registers).
    	clobbers regMask
    	// outputs[i] encodes the set of registers allowed for the i'th output.
    	outputs []regMask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. test/codegen/README

    verifies that the code generated for a bits.TrailingZeros8 call on
    amd64 contains both a "BSFQ" instruction and an "ORQ $256".
    
    Note how the ORQ regex includes a tab char (\t). In the Go assembly
    syntax, operands are separated from opcodes by a tabulation.
    
    Regexps can be quoted using either " or `. Special characters must be
    escaped accordingly. Both of these are accepted, and equivalent:
    
      // amd64:"ADDQ\t\\$3"
      // amd64:`ADDQ\t\$3`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    	"cmd/internal/obj"
    	"fmt"
    	"strings"
    )
    
    // An Op encodes the specific operation that a Value performs.
    // Opcodes' semantics can be modified by the type and aux fields of the Value.
    // For instance, OpAdd can be 32 or 64 bit, signed or unsigned, float or complex, depending on Value.Type.
    // Semantics of each op are described in the opcode files in _gen/*Ops.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/debug/dwarf/const.go

    	if t <= TagTemplateAlias {
    		return "dwarf.Tag" + t.String()
    	}
    	return "dwarf." + t.String()
    }
    
    // Location expression operators.
    // The debug info encodes value locations like 8(R3)
    // as a sequence of these op codes.
    // This package does not implement full expressions;
    // the opPlusUconst operator is expected by the type parser.
    const (
    	opAddr       = 0x03 /* 1 op, const addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top