Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 362 for asmx (0.14 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/ModuleApplicationNameWritingCompiler.java

    import org.gradle.api.tasks.WorkResult;
    import org.gradle.language.base.internal.compile.Compiler;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.ModuleVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    			jt.Sym.WriteAddr(ctxt, int64(i)*8, 8, s, p.Pc)
    		}
    	}
    }
    
    func instinit(ctxt *obj.Link) {
    	if ycover[0] != 0 {
    		// Already initialized; stop now.
    		// This happens in the cmd/asm tests,
    		// each of which re-initializes the arch.
    		return
    	}
    
    	switch ctxt.Headtype {
    	case objabi.Hplan9:
    		plan9privates = ctxt.Lookup("_privates")
    	}
    
    	for i := range avxOptab {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. doc/asm.html

    	"Path":  "/doc/asm"
    }-->
    
    <h2 id="introduction">A Quick Guide to Go's Assembler</h2>
    
    <p>
    This document is a quick outline of the unusual form of assembly language used by the <code>gc</code> Go compiler.
    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java

    package org.gradle.internal.classanalysis;
    
    import org.objectweb.asm.Opcodes;
    
    public class AsmConstants {
        public static final int ASM_LEVEL = Opcodes.ASM9;
    
        /**
         * The minimal version of Java for which ASM understands the bytecodes.
         */
        public static final int MIN_SUPPORTED_JAVA_VERSION = 1;
    
        /**
         * The latest version of Java for which ASM understands the bytecodes.
         *
         * Updated for ASM 9.7.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:43:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vet/testdata/asm/asm1.s

    Russ Cox <******@****.***> 1613743292 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 883 bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = loopAlign
    				// Don't associate the synthesized PCALIGN with
    				// the original source position, for deterministic
    				// mapping between source and corresponding asm.
    				// q.Pos = p.Pos
    
    				// Manually make the PCALIGN come into effect,
    				// since this loop iteration is for p.
    				pc += int64(pcAlignPadLength(ctxt, pc, loopAlign))
    				p.Pc = pc
    				rescan = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  7. src/internal/reflectlite/asm.s

    Marcel van Lohuizen <******@****.***> 1549644497 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 18:27:01 UTC 2019
    - 199 bytes
    - Viewed (0)
  8. src/sync/atomic/asm.s

    Mauri de Souza Meneguzzo <******@****.***> 1715897567 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/MethodStubbingApiMemberAdapter.java

    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.ClassWriter;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    
    import static org.objectweb.asm.Opcodes.ACC_ABSTRACT;
    import static org.objectweb.asm.Opcodes.ACC_INTERFACE;
    import static org.objectweb.asm.Opcodes.ACC_PRIVATE;
    import static org.objectweb.asm.Opcodes.ACC_STATIC;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/cmd/link/testdata/linkname/coro_asm/asm.s

    Cherry Mui <******@****.***> 1715288863 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 218 bytes
    - Viewed (0)
Back to top