Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for asm (0.13 sec)

  1. src/cmd/asm/internal/asm/asm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"fmt"
    	"internal/abi"
    	"strconv"
    	"strings"
    	"text/scanner"
    
    	"cmd/asm/internal/arch"
    	"cmd/asm/internal/flags"
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    	"cmd/internal/obj/riscv"
    	"cmd/internal/obj/x86"
    	"cmd/internal/sys"
    )
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  2. 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>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/unrecognized-asm-9.6.txt

    ASM: a very small and fast Java bytecode manipulation framework
    Copyright (c) 2000-2011 INRIA, France Telecom
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Nov 13 12:16:58 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  4. build-logic-commons/build-platform/build.gradle.kts

            api("org.junit.vintage:junit-vintage-engine:5.8.2")
            api("org.openmbee.junit:junit-xml-parser:1.0.0")
            api("org.ow2.asm:asm:$asmVersion")
            api("org.ow2.asm:asm-commons:$asmVersion")
            api("org.ow2.asm:asm-tree:$asmVersion")
            api("xerces:xercesImpl:2.12.2") {
                because("Maven Central and JCenter disagree on version 2.9.1 metadata")
            }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl/build.gradle.kts

        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation(kotlin("gradle-plugin"))
        implementation(kotlin("sam-with-receiver"))
        implementation("org.ow2.asm:asm")
        implementation("com.thoughtworks.qdox:qdox")
    
        testImplementation("junit:junit")
        testImplementation("com.nhaarman:mockito-kotlin")
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:08 GMT 2023
    - 737 bytes
    - Viewed (0)
  6. 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
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val antLauncher = "org.apache.ant:ant-launcher"
        val antJunit = "org.apache.ant:ant-junit"
        val asm = "org.ow2.asm:asm"
        val asmAnalysis = "org.ow2.asm:asm-analysis"
        val asmCommons = "org.ow2.asm:asm-commons"
        val asmTree = "org.ow2.asm:asm-tree"
        val asmUtil = "org.ow2.asm:asm-util"
        val assertj = "org.assertj:assertj-core"
        val awsS3Core = "com.amazonaws:aws-java-sdk-core"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  8. LICENSE

    org.ow2.asm:asm
    org.ow2.asm:asm-analysis
    org.ow2.asm:asm-commons
    org.ow2.asm:asm-tree
    org.ow2.asm:asm-util
    ASM: a very small and fast Java bytecode manipulation framework
     Copyright (c) 2000-2011 INRIA, France Telecom
     All rights reserved.
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

    import org.jetbrains.kotlin.psi.KtFile
    import org.jetbrains.kotlin.utils.addToStdlib.firstIsInstanceOrNull
    import org.jetbrains.kotlin.utils.toMetadataVersion
    import org.jetbrains.org.objectweb.asm.Type
    import org.jetbrains.org.objectweb.asm.commons.Method
    import java.util.*
    
    @OptIn(KtAnalysisNonPublicApi::class)
    internal class KtFirMetadataCalculator(override val analysisSession: KtFirAnalysisSession) : KtMetadataCalculator(),
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 09:19:07 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. pom.xml

    		</dependency>
    		<dependency>
    			<groupId>org.ow2.asm</groupId>
    			<artifactId>asm</artifactId>
    			<version>${asm.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.ow2.asm</groupId>
    			<artifactId>asm-commons</artifactId>
    			<version>${asm.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.ow2.asm</groupId>
    			<artifactId>asm-util</artifactId>
    			<version>${asm.version}</version>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top