Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 408 for Asm (0.02 sec)

  1. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

     */
    
    package org.gradle.model.internal.asm;
    
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Type;
    
    import javax.annotation.Nullable;
    
    import static org.gradle.internal.classanalysis.AsmConstants.ASM_LEVEL;
    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    import static org.objectweb.asm.Opcodes.ACC_PUBLIC;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <artifactId>asm-parent</artifactId>
      <groupId>asm</groupId>
      <version>3.0</version>
      <packaging>pom</packaging>
    
      <dependencyManagement>
        <dependencies>
          <dependency>
            <artifactId>asm-util</artifactId>
            <groupId>${project.groupId}</groupId>
            <version>${project.version}</version>
          </dependency>
        </dependencies>
      </dependencyManagement>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 441 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

            }
    
    
            then:
            def components = realizeComponents()
            def exe = components.exe
            exe.sources instanceof ModelMap
            exe.sources.asm instanceof AssemblerSourceSet
            exe.sources.asm.source.srcDirs == [project.file("src/exe/asm")] as Set
    
            and:
            def sources = realizeSourceSets()
            sources as Set == exe.sources as Set
        }
    
        def "can configure source set locations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/x86/ssa.go

    		ssa.Op386ADCL,
    		ssa.Op386SBBL:
    		opregreg(s, v.Op.Asm(), v.Reg(), v.Args[1].Reg())
    
    	case ssa.Op386ADDLcarry, ssa.Op386SUBLcarry:
    		// output 0 is carry/borrow, output 1 is the low 32 bits.
    		opregreg(s, v.Op.Asm(), v.Reg0(), v.Args[1].Reg())
    
    	case ssa.Op386ADDLconstcarry, ssa.Op386SUBLconstcarry:
    		// output 0 is carry/borrow, output 1 is the low 32 bits.
    		p := s.Prog(v.Op.Asm())
    		p.From.Type = obj.TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  5. gradle/dependency-management/capabilities.json

        // even if there's no conflict, and forces an upgrade to the specified version
        {
            "name": "asm",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
            ],
            "selected": "org.ow2.asm:asm",
            "upgrade": "7.1"
        },
        {
            "name": "asm-analysis",
            "providedBy": [
                "asm:asm", "asm:asm-all", "asm:asm-debug-all"
            ],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/asm_test.go

    }
    
    func TestPCAlign(t *testing.T) {
    	dir := t.TempDir()
    	tmpfile := filepath.Join(dir, "x.s")
    	asm := `
    TEXT _stub(SB),$0-0
    	FENCE
    	PCALIGN	$8
    	FENCE
    	RET
    `
    	if err := os.WriteFile(tmpfile, []byte(asm), 0644); err != nil {
    		t.Fatal(err)
    	}
    	cmd := exec.Command(testenv.GoToolPath(t), "tool", "asm", "-o", filepath.Join(dir, "x.o"), "-S", tmpfile)
    	cmd.Env = append(os.Environ(), "GOARCH=riscv64", "GOOS=linux")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 01:50:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

    import org.gradle.internal.progress.PercentageProgressFormatter;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.FieldVisitor;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    import org.objectweb.asm.commons.ClassRemapper;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

    import org.objectweb.asm.AnnotationVisitor
    import org.objectweb.asm.Attribute
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassReader.SKIP_CODE
    import org.objectweb.asm.ClassReader.SKIP_FRAMES
    import org.objectweb.asm.FieldVisitor
    import org.objectweb.asm.Opcodes.ACC_ABSTRACT
    import org.objectweb.asm.Opcodes.ACC_PUBLIC
    import org.objectweb.asm.Opcodes.ACC_STATIC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 19:56:10 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

            return  [
                sourceFile("c", "main.c", """
                #include <stdio.h>
    
                // Ensure consistent asm name mapping on all platforms
                #if !defined(_MSC_VER)
                extern int sum1(int a, int b) asm("_sum1");
                extern int sum2(int a, int b) asm("_sum2");
                #endif
    
                int main () {
                    printf("foo%dfoo%d", sum1(1, 0), sum2(1, 1));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-asm/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Base asm classes and utilities for Gradle's internal use"
    
    dependencies {
        api(libs.asm)
        api(libs.jsr305)
        implementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 850 bytes
    - Viewed (0)
Back to top