Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for icbt (0.04 sec)

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

    // Prefetch instructions (TH specified using aux field)
    // 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/rewritePPC64.go

    		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)
Back to top