Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 558 for opcodes (0.18 sec)

  1. src/cmd/compile/internal/ssa/_gen/README

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

    import static org.gradle.internal.classpath.transforms.CommonTypes.STRING_TYPE;
    import static org.objectweb.asm.Opcodes.ACC_INTERFACE;
    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.Type.getMethodDescriptor;
    import static org.objectweb.asm.Type.getType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    
    import org.junit.Assert.assertFalse
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    import org.objectweb.asm.Opcodes.ACC_PUBLIC
    import org.objectweb.asm.Opcodes.ACC_SYNTHETIC
    
    
    @Suppress("unused")
    class PublicGenericType<T>
    
    
    class PublicComponentType
    
    
    private
    class PrivateComponentType
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompilerTest.groovy

    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.junit.Rule
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    import org.objectweb.asm.Opcodes
    import spock.lang.Specification
    
    import static org.gradle.util.internal.TextUtil.normaliseLineSeparators
    
    class SimpleGeneratedJavaClassCompilerTest extends Specification {
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/lower.go

    	// repeat rewrites until we find no more rewrites
    	if f.Config.lateLowerValue != nil {
    		applyRewrite(f, f.Config.lateLowerBlock, f.Config.lateLowerValue, removeDeadValues)
    	}
    }
    
    // checkLower checks for unlowered opcodes and fails if we find one.
    func checkLower(f *Func) {
    	// Needs to be a separate phase because it must run after both
    	// lowering and a subsequent dead code elimination (because lowering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 00:16:13 UTC 2023
    - 1.7K 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/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

    import org.gradle.work.DisableCachingByDefault;
    import org.gradle.workers.WorkAction;
    import org.gradle.workers.WorkParameters;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.io.File;
    import java.io.IOException;
    import java.lang.annotation.Annotation;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	}
    }
    
    // An As denotes an assembler opcode.
    // There are some portable opcodes, declared here in package obj,
    // that are common to all architectures.
    // However, the majority of opcodes are arch-specific
    // and are declared in their respective architecture's subpackage.
    type As int16
    
    // These are the portable opcodes.
    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            TestFile classFile = outputDir.createFile("${className}.class")
            ClassNode classNode = new ClassNode()
            classNode.version = className == 'module-info' ? Opcodes.V9 : Opcodes.V1_6
            classNode.access = Opcodes.ACC_PUBLIC
            classNode.name = className
            classNode.superName = 'java/lang/Object'
    
            ClassWriter cw = new ClassWriter(0)
            classNode.accept(cw)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

    import static org.objectweb.asm.Opcodes.ACC_FINAL;
    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    import static org.objectweb.asm.Opcodes.ACC_PUBLIC;
    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    import static org.objectweb.asm.Opcodes.ACC_SYNTHETIC;
    import static org.objectweb.asm.Opcodes.ACC_TRANSIENT;
    import static org.objectweb.asm.Opcodes.H_INVOKESPECIAL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top