Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 494 for move (3.45 sec)

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

    // Small moves
    (Move [0] _ _ mem) => mem
    (Move [1] dst src mem) => (MOVBstore dst (MOVBload src mem) mem)
    (Move [2] {t} dst src mem) && t.Alignment()%2 == 0 =>
    	(MOVHstore dst (MOVHload src mem) mem)
    (Move [2] dst src mem) =>
    	(MOVBstore [1] dst (MOVBload [1] src mem)
    		(MOVBstore dst (MOVBload src mem) mem))
    (Move [4] {t} dst src mem) && t.Alignment()%4 == 0 =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& clobber(move)
    	=> (Zero {t} [n] dst1 mem)
    (Move {t} [n] dst1 src1 move:(Move {t} [n] dst2 _ mem))
    	&& move.Uses == 1
    	&& isSamePtr(dst1, dst2) && disjoint(src1, n, dst2, n)
    	&& clobber(move)
    	=> (Move {t} [n] dst1 src1 mem)
    (Zero {t} [n] dst1 vardef:(VarDef {x} move:(Move {t} [n] dst2 _ mem)))
    	&& move.Uses == 1 && vardef.Uses == 1
    	&& isSamePtr(dst1, dst2)
    	&& clobber(move, vardef)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/looprotate.go

    	for i, b := range f.Blocks {
    		idToIdx[b.ID] = i
    	}
    
    	// Set of blocks we're moving, by ID.
    	move := map[ID]struct{}{}
    
    	// Map from block ID to the moving blocks that should
    	// come right after it.
    	after := map[ID][]*Block{}
    
    	// Check each loop header and decide if we want to move it.
    	for _, loop := range loopnest.loops {
    		b := loop.header
    		var p *Block // b's in-loop predecessor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "MOVWreg", argLength: 1, reg: gp11, asm: "MOVW"},   // move from arg0, sign-extended from word
    		{name: "MOVDreg", argLength: 1, reg: gp11, asm: "MOV"},    // move from arg0
    		{name: "MOVBUreg", argLength: 1, reg: gp11, asm: "MOVBU"}, // move from arg0, unsign-extended from byte
    		{name: "MOVHUreg", argLength: 1, reg: gp11, asm: "MOVHU"}, // move from arg0, unsign-extended from half
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    		(MOVQstore dst (MOVQload src mem) mem))
    
    (Move [32] dst src mem) =>
    	(Move [16]
    		(OffPtr <dst.Type> dst [16])
    		(OffPtr <src.Type> src [16])
    		(Move [16] dst src mem))
    
    (Move [48] dst src mem) && config.useSSE =>
    	(Move [32]
    		(OffPtr <dst.Type> dst [16])
    		(OffPtr <src.Type> src [16])
    		(Move [16] dst src mem))
    
    (Move [64] dst src mem) && config.useSSE =>
    	(Move [32]
    		(OffPtr <dst.Type> dst [32])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    1C. Once there is an existing well-formed file YYYY-MM-DD.json in localdir
        eventually the upload will succeed, and the file will be moved to updatedir.
        It is possible that other processes will not see the file in updatedir and
        upload it again and also move it to uploaddir. This is harmless as all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // strip off fractional word move
    (Move [s] dst src mem) && s%16 != 0 && s%16 <= 8 && s > 16 =>
    	(Move [8]
    		(OffPtr <dst.Type> dst [s-8])
    		(OffPtr <src.Type> src [s-8])
    		(Move [s-s%16] dst src mem))
    (Move [s] dst src mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Move [16]
    		(OffPtr <dst.Type> dst [s-16])
    		(OffPtr <src.Type> src [s-16])
    		(Move [s-s%16] dst src mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    				bz2.c[b]++
    				bufIndex++
    			}
    			repeat = 0
    		}
    
    		if int(v) == numSymbols-1 {
    			// This is the EOF symbol. Because it's always at the
    			// end of the move-to-front list, and never gets moved
    			// to the front, it has this unique value.
    			break
    		}
    
    		// Since two metasymbols (RUNA and RUNB) have values 0 and 1,
    		// one would expect |v-2| to be passed to the MTF decoder.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD SAVSTACK_ASYNC(R8), R9
    	MOVD 0(R9), R15
    
    	RET
    
    // func svcLoad(name *byte) unsafe.Pointer
    TEXT ·svcLoad(SB), NOSPLIT, $0
    	MOVD R15, R2         // Save go stack pointer
    	MOVD name+0(FP), R0  // Move SVC args into registers
    	MOVD $0x80000000, R1
    	MOVD $0, R15
    	SVC_LOAD
    	MOVW R15, R3         // Save return code from SVC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/alg.go

    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top