Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 623 for opcode (0.1 sec)

  1. src/cmd/internal/obj/ppc64/doc.go

    instruction using the constant has an immediate version of the opcode, then an
    immediate value is used with the opcode if possible.
    
    Example:
    
    	ADD $1, R3, R4		<=> 	addi r4, r3, 1
    
    3. Opcodes setting condition codes
    
    In PPC64 asm, some instructions other than compares have variations that can set
    the condition code where meaningful. This is indicated by adding '.' to the end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                interceptedCallable.getKind() == CallableKindInfo.INSTANCE_METHOD ? CodeBlock.of("(opcode == $1T.INVOKEVIRTUAL || opcode == $1T.INVOKEINTERFACE)", Opcodes.class) :
                    interceptedCallable.getKind() == CallableKindInfo.AFTER_CONSTRUCTOR ? CodeBlock.of("opcode == $T.INVOKESPECIAL", Opcodes.class) : null;
            if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// NOTE: iant thinks this is deliberate, but we can't find the history.
    		_, reg1 := inst.Args[0].(Reg)
    		_, reg2 := inst.Args[1].(Reg)
    		if reg1 && reg2 && (inst.Opcode>>24 == 0xDC || inst.Opcode>>24 == 0xDE) {
    			switch inst.Op {
    			case FDIV:
    				inst.Op = FDIVR
    			case FDIVR:
    				inst.Op = FDIV
    			case FSUB:
    				inst.Op = FSUBR
    			case FSUBR:
    				inst.Op = FSUB
    			case FDIVP:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			}
    			if bh == 0 {
    				str := fmt.Sprintf(" %d,%s", bo, gnuArg(&inst, 1, inst.Args[1], PC))
    				buf.WriteString(str)
    				startArg = 3
    			}
    		}
    
    	case "mtspr":
    		opcode := inst.Op.String()
    		buf.WriteString(opcode[0:2])
    		switch spr := inst.Args[0].(type) {
    		case SpReg:
    			switch spr {
    			case 1:
    				buf.WriteString("xer")
    				startArg = 1
    			case 8:
    				buf.WriteString("lr")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    
    // Each architecture is allotted a distinct subspace of opcode values
    // for declaring its arch-specific opcodes.
    // Within this subspace, the first arch-specific opcode should be
    // at offset A_ARCHSPECIFIC.
    //
    // Subspaces are aligned to a power of two so opcodes can be masked
    // with AMask and used as compact array indices.
    const (
    	ABase386 = (1 + iota) << 11
    	ABaseARM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.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/amd64/versions_test.go

    	// Clobber all the non-v1 opcodes.
    	opcodes := map[string]bool{}
    	var features []string
    	for feature, opcodeList := range featureToOpcodes {
    		if runtimeFeatures[feature] {
    			features = append(features, fmt.Sprintf("cpu.%s=off", feature))
    		}
    		for _, op := range opcodeList {
    			opcodes[op] = true
    		}
    	}
    	clobber(t, os.Args[0], dst, opcodes)
    	if err = dst.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/util.go

    	C_UBIT      = 1 << 7
    	C_SCOND_XOR = 14
    )
    
    // CConv formats opcode suffix bits (Prog.Scond).
    func CConv(s uint8) string {
    	if s == 0 {
    		return ""
    	}
    	for i := range opSuffixSpace {
    		sset := &opSuffixSpace[i]
    		if sset.arch == buildcfg.GOARCH {
    			return sset.cconv(s)
    		}
    	}
    	return fmt.Sprintf("SC???%d", s)
    }
    
    // CConvARM formats ARM opcode suffix bits (mostly condition codes).
    func CConvARM(s uint8) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/debug/dwarf/const.go

    	encDecimalFloat   = 0x0F
    	// The following are new in DWARF 4.
    	encUTF = 0x10
    	// The following are new in DWARF 5.
    	encUCS   = 0x11
    	encASCII = 0x12
    )
    
    // Statement program standard opcode encodings.
    const (
    	lnsCopy           = 1
    	lnsAdvancePC      = 2
    	lnsAdvanceLine    = 3
    	lnsSetFile        = 4
    	lnsSetColumn      = 5
    	lnsNegateStmt     = 6
    	lnsSetBasicBlock  = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/main.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The gen command generates Go code (in the parent directory) for all
    // the architecture-specific opcodes, blocks, and rewrites.
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"log"
    	"math/bits"
    	"os"
    	"path"
    	"regexp"
    	"runtime"
    	"runtime/pprof"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top