Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for PrefetchCache (0.42 sec)

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

    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    // See ISA 3.0 Book II 4.3.2 for more detail. https://openpower.foundation/specifications/isa/
    (PrefetchCache ptr mem)          => (DCBT ptr mem [0])
    (PrefetchCacheStreamed ptr mem)  => (DCBT ptr mem [16])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "ClobberReg", argLength: 0, typ: "Void"},                                // clobber a register
    
    	// Prefetch instruction
    	{name: "PrefetchCache", argLength: 2, hasSideEffects: true},         // Do prefetch arg0 to cache. arg0=addr, arg1=memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    	&& call.Uses == 1
    	&& isInlinableMemmove(dst, src, sz, config)
    	&& clobber(call)
    	=> (Move [sz] dst src mem)
    
    // Prefetch instructions
    (PrefetchCache ...)   => (PrefetchT0 ...)
    (PrefetchCacheStreamed ...) => (PrefetchNTA ...)
    
    // CPUID feature: BMI1.
    (AND(Q|L) x (NOT(Q|L) y))               && buildcfg.GOAMD64 >= 3 => (ANDN(Q|L) x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVDload  [off] {sym} (SB) _) && symIsRO(sym) => (MOVDconst [int64(read64(sym, int64(off), config.ctxt.Arch.ByteOrder))])
    
    // Prefetch instructions (aux is option: 0 - PLDL1KEEP; 1 - PLDL1STRM)
    (PrefetchCache addr mem)         => (PRFM [0] addr mem)
    (PrefetchCacheStreamed addr mem) => (PRFM [1] addr mem)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritePPC64.go

    		v0.AddArg(x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpPrefetchCache(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (PrefetchCache ptr mem)
    	// result: (DCBT ptr mem [0])
    	for {
    		ptr := v_0
    		mem := v_1
    		v.reset(OpPPC64DCBT)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v1.AddArg(v2)
    		v0.AddArg(v1)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueARM64_OpPrefetchCache(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (PrefetchCache addr mem)
    	// result: (PRFM [0] addr mem)
    	for {
    		addr := v_0
    		mem := v_1
    		v.reset(OpARM64PRFM)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg2(addr, mem)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    		argLen:    0,
    		symEffect: SymNone,
    		generic:   true,
    	},
    	{
    		name:    "ClobberReg",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:           "PrefetchCache",
    		argLen:         2,
    		hasSideEffects: true,
    		generic:        true,
    	},
    	{
    		name:           "PrefetchCacheStreamed",
    		argLen:         2,
    		hasSideEffects: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top