Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for mcov (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // rotate by constants
    (ROLQ x (MOV(Q|L)const [c])) => (ROLQconst [int8(c&63)] x)
    (ROLL x (MOV(Q|L)const [c])) => (ROLLconst [int8(c&31)] x)
    (ROLW x (MOV(Q|L)const [c])) => (ROLWconst [int8(c&15)] x)
    (ROLB x (MOV(Q|L)const [c])) => (ROLBconst [int8(c&7) ] x)
    
    (RORQ x (MOV(Q|L)const [c])) => (ROLQconst [int8((-c)&63)] x)
    (RORL x (MOV(Q|L)const [c])) => (ROLLconst [int8((-c)&31)] x)
    (RORW x (MOV(Q|L)const [c])) => (ROLWconst [int8((-c)&15)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOV(B|BZ)reg e:(MOVWreg x)) && clobberIfDead(e) => (MOV(B|BZ)reg x)
    (MOV(H|HZ)reg e:(MOVHreg x)) && clobberIfDead(e) => (MOV(H|HZ)reg x)
    (MOV(H|HZ)reg e:(MOVWreg x)) && clobberIfDead(e) => (MOV(H|HZ)reg x)
    (MOV(W|WZ)reg e:(MOVWreg x)) && clobberIfDead(e) => (MOV(W|WZ)reg x)
    
    // Bypass redundant zero extensions.
    (MOV(B|BZ)reg e:(MOVBZreg x)) && clobberIfDead(e) => (MOV(B|BZ)reg x)
    (MOV(B|BZ)reg e:(MOVHZreg x)) && clobberIfDead(e) => (MOV(B|BZ)reg x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVHZreg y:(MOV(H|B)Zreg _)) => y // repeat
    (MOVHZreg y:(MOVHBRload _ _)) => y
    
    (MOVHreg y:(MOV(H|B)reg _)) => y // repeat
    
    (MOV(H|HZ)reg y:(MOV(HZ|H)reg x)) => (MOV(H|HZ)reg x)
    
    // W - there are more combinations than these
    
    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/asm0.go

    	case 34: /* mov $con,fr ==> or/add $i,t; mov t,fr */
    		a := AADDU
    		if o.a1 == C_ANDCON {
    			a = AOR
    		}
    		v := c.regoff(&p.From)
    		o1 = OP_IRR(c.opirr(a), uint32(v), obj.REG_NONE, REGTMP)
    		o2 = OP_RRR(SP(2, 1)|(4<<21), REGTMP, obj.REG_NONE, p.To.Reg) /* mtc1 */
    
    	case 35: /* mov r,lext/auto/oreg ==> sw o(REGTMP) */
    		r := p.To.Reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		//
    		//   MOV g_panic(g), X5
    		//   BNE X5, ZERO, adjust
    		// end:
    		//   NOP
    		// ...rest of function..
    		// adjust:
    		//   MOV panic_argp(X5), X6
    		//   ADD $(autosize+FIXED_FRAME), SP, X7
    		//   BNE X6, X7, end
    		//   ADD $FIXED_FRAME, SP, X6
    		//   MOV X6, panic_argp(X5)
    		//   JMP end
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/loong64/asm.go

    		default:
    			c.ctxt.Diag("unexpected branch encoding\n%v", p)
    		}
    
    	case 7: // mov r, soreg
    		r := int(p.To.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		v := c.regoff(&p.To)
    		o1 = OP_12IRR(c.opirr(p.As), uint32(v), uint32(r), uint32(p.From.Reg))
    
    	case 8: // mov soreg, r
    		r := int(p.From.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		v := c.regoff(&p.From)
    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/cmd/internal/obj/arm/asm5.go

    		rel.Type = objabi.R_CALLIND
    
    	case 8: /* sll $c,[R],R -> mov (R<<$c),R */
    		c.aclass(&p.From)
    
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		o1 |= (uint32(r) & 15) << 0
    		o1 |= uint32((c.instoffset & 31) << 7)
    		o1 |= (uint32(p.To.Reg) & 15) << 12
    
    	case 9: /* sll R,[R],R -> mov (R<<R),R */
    		o1 = c.oprrr(p, p.As, int(p.Scond))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/runtime/zcallback_windows_arm64.s

    // Code generated by wincallback.go using 'go generate'. DO NOT EDIT.
    
    // External code calls into callbackasm at an offset corresponding
    // to the callback index. Callbackasm is a table of MOV and B instructions.
    // The MOV instruction loads R12 with the callback index, and the
    // B instruction branches to callbackasm1.
    // callbackasm1 takes the callback index from R12 and
    // indexes into an array that stores information about each callback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"video/vnd.nokia.videovoip",
    				"video/vnd.objectvideo",
    				"video/vnd.sealed.mpeg1",
    				"video/vnd.sealed.mpeg4",
    				"video/vnd.sealed.swf",
    				"video/vnd.sealedmedia.softseal.mov",
    				"video/vnd.vivo",
    				"video/x-f4v",
    				"video/x-flc",
    				"video/x-fli",
    				"video/x-flv",
    				"video/x-jng",
    				"video/x-m4v",
    				"video/x-mng",
    				"video/x-ms-asf",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

     */
    
    // The old tools that no longer live in $GOBIN or $GOROOT/bin.
    var oldtool = []string{
    	"5a", "5c", "5g", "5l",
    	"6a", "6c", "6g", "6l",
    	"8a", "8c", "8g", "8l",
    	"9a", "9c", "9g", "9l",
    	"6cov",
    	"6nm",
    	"6prof",
    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    	"gopprof",
    	"gotest",
    	"gotype",
    	"govet",
    	"goyacc",
    	"quietgcc",
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top