Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 174 for mcov (0.04 sec)

  1. src/cmd/internal/obj/riscv/anames.go

    	"WORD",
    	"BEQZ",
    	"BGEZ",
    	"BGT",
    	"BGTU",
    	"BGTZ",
    	"BLE",
    	"BLEU",
    	"BLEZ",
    	"BLTZ",
    	"BNEZ",
    	"FABSD",
    	"FABSS",
    	"FNEGD",
    	"FNEGS",
    	"FNED",
    	"FNES",
    	"MOV",
    	"MOVB",
    	"MOVBU",
    	"MOVF",
    	"MOVD",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWU",
    	"NEG",
    	"NEGW",
    	"NOT",
    	"SEQZ",
    	"SNEZ",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		POP, PUSH, RET, SGDT, SIDT, SYSRET, XBEGIN:
    		markLastImplicit(&inst, PrefixDataSize)
    
    	case LOOP, LOOPE, LOOPNE, MONITOR:
    		markLastImplicit(&inst, PrefixAddrSize)
    
    	case MOV:
    		// The 16-bit and 32-bit forms of MOV Sreg, dst and MOV src, Sreg
    		// cannot be distinguished when src or dst refers to memory, because
    		// Sreg is always a 16-bit value, even when we're doing a 32-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/doc.go

    related to real ARM64 instruction. NOOP serves for the hardware nop instruction. NOOP is an alias of
    HINT $0.
    
    Examples:
    
    	VMOV V13.B[1], R20      <=>      mov x20, v13.b[1]
    	VMOV V13.H[1], R20      <=>      mov w20, v13.h[1]
    	JMP (R3)                <=>      br x3
    	CALL (R17)              <=>      blr x17
    	LDAXRB (R19), R16       <=>      ldaxrb w16, [x19]
    	NOOP                    <=>      nop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	switch inst.Op {
    	case INSB, INSD, INSW, OUTSB, OUTSD, OUTSW, LOOPNE, JCXZ, JECXZ, JRCXZ, LOOP, LOOPE, MOV, XLATB:
    		if inst.Op == MOV && (inst.Opcode>>16)&0xFFFC != 0x0F20 {
    			break
    		}
    		for i, p := range inst.Prefix {
    			if p&0xFF == PrefixAddrSize {
    				inst.Prefix[i] &^= PrefixImplicit
    			}
    		}
    	}
    
    	switch inst.Op {
    	case MOV:
    		dst, _ := inst.Args[0].(Reg)
    		src, _ := inst.Args[1].(Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

        protected def getAsmSource(String methodName) {
            if (toolChain.isVisualCpp()) {
                return """
    .386
    .model    flat
    
    PUBLIC    _${methodName}
    _TEXT     SEGMENT
    _${methodName}    PROC
    mov    eax, DWORD PTR 4[esp]
    add    eax, DWORD PTR 8[esp]
    ret    0
    _${methodName}    ENDP
    _TEXT   ENDS
    END
    """
            }else{
                return """
    .text
    .globl  _${methodName}
    _${methodName}:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue11656.dir/issue11656.go

    	case "s390x":
    		ill = append(ill[:0], 0xa7, 0x09, 0x00, 0x00)         // MOVD $0, R0
    		ill = append(ill, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x24) // MOVD R0, (R0)
    	case "riscv64":
    		binary.LittleEndian.PutUint32(ill, 0x00003023) // MOV X0, (X0)
    	default:
    		// Just leave it as 0 and hope for the best.
    	}
    
    	f.x = uintptr(unsafe.Pointer(&ill[0]))
    	p := &f
    	fn := *(*func())(unsafe.Pointer(&p))
    	syncIcache(f.x)
    	fn()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/mreader.go

    // Copyright 2022 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.
    
    package cov
    
    import (
    	"cmd/internal/bio"
    	"io"
    	"os"
    )
    
    // This file contains the helper "MReader", a wrapper around bio plus
    // an "mmap'd read-only" view of the file obtained from bio.SliceRO().
    // MReader is designed to implement the io.ReaderSeeker interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:12:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    	//            carry = hi
    	//        }
    	//        return carry + c1 + c2
    	//    }
    	//
    	// The loop is fully unrolled and the hi / carry registers are alternated
    	// instead of introducing a MOV.
    
    	z = Mem{Base: Load(Param("z"), GP64())}
    	x = Mem{Base: Load(Param("x"), GP64())}
    	Load(Param("y"), RDX) // implicit source of MULXQ
    
    	carry = GP64()
    	XORQ(carry, carry) // zero out carry
    	z0 := GP64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

    .386
    ;.model flat
    .model small,c
    .data
    msg db "fooFromAsm", 10, 0
    .code
    includelib MSVCRT
    extrn printf:near
    extrn exit:NEAR
    public sayFooFromAsm
    sayFooFromAsm proc
    push    offset msg
    call    printf
    mov eax,0
    push eax
    call exit
    sayFooFromAsm endp
    end
    """
            } else {
                return """
    .text
    
    LC0:
    .ascii "fooFromAsm\\12\\0"
    .globl _sayFooFromAsm
    
    _sayFooFromAsm:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedLanguageHelloWorldApp.groovy

        // See: https://github.com/gradle/gradle/issues/3662
        private static String windowsMasmSource = '''
    .386
    .model    flat
    
    INCLUDE <ks386.inc>
    PUBLIC    _sumx
    _TEXT     SEGMENT
    _sumx    PROC
    mov    eax, DWORD PTR 4[esp]
    add    eax, DWORD PTR 8[esp]
    ret    0
    _sumx    ENDP
    _TEXT   ENDS
    END
    '''
    
        private static String i386GnuAsmSource = '''
        .text
        .globl  _sumx
    _sumx:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top