Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrefetchCache (0.15 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/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)
Back to top