Searched refs:ndd (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrUtils.td | 111 class NDD<bit ndd> { 112 string Constraints = !if(!eq(ndd, 0), tie_dst_src1, ""); 113 Encoding OpEnc = !if(!eq(ndd, 0), EncNormal, EncEVEX); 114 bit hasEVEX_B = ndd; 115 bit hasVEX_4V = ndd; 116 Map OpMap = !if(!eq(ndd, 0), OB, T_MAP4); 990 class BinOpRR_R<bits<8> o, string m, X86TypeInfo t, bit ndd = 0> 991 : BinOpRR<o, m, !if(!eq(ndd, 0), binop_args, binop_ndd_args), t, 992 (outs t.RegClass:$dst), []>, NDD<ndd>; 994 class BinOpRR_R_Rev<bits<8> o, string m, X86TypeInfo t, bit ndd = 0> [all …]
|
H A D | X86InstrArithmetic.td | 197 class IMulOpRR_R<X86TypeInfo t, X86FoldableSchedWrite sched, bit ndd = 0> 198 : BinOpRR_R<0xAF, "imul", t, ndd> { 204 class IMulOpRR_RF<X86TypeInfo t, X86FoldableSchedWrite sched, bit ndd = 0> 205 : BinOpRR_RF<0xAF, "imul", t, X86smul_flag, ndd> { 211 class IMulOpRM_R<X86TypeInfo t, X86FoldableSchedWrite sched, bit ndd = 0> 212 : BinOpRM_R<0xAF, "imul", t, ndd> { 216 class IMulOpRM_RF<X86TypeInfo t, X86FoldableSchedWrite sched, bit ndd = 0> 217 : BinOpRM_RF<0xAF, "imul", t, X86smul_flag, ndd> { 378 class IncOpR_RF<X86TypeInfo t, bit ndd = 0> : UnaryOpR_RF<0xFF, MRM0r, "inc", t, null_frag, ndd> { 382 class DecOpR_RF<X86TypeInfo t, bit ndd = 0> : UnaryOpR_RF<0xFF, MRM1r, "dec", t, null_frag, ndd> { [all …]
|
H A D | X86InstrCMovSetCC.td | 16 multiclass Cmov<X86TypeInfo t, string args, bit ndd = 0, string suffix = ""> { 22 … t.RegClass:$src2, timm:$cond, EFLAGS))]>, UseEFLAGS, NDD<ndd>; 28 … (t.LoadNode addr:$src2), timm:$cond, EFLAGS))]>, UseEFLAGS, NDD<ndd>;
|
H A D | X86.td | 335 def FeatureNDD : SubtargetFeature<"ndd", "HasNDD", "true",
|
/freebsd/sys/kern/ |
H A D | vfs_cache.c | 2501 struct namecache *ncp, *n2, *ndd; in cache_enter_time() local 2546 ndd = NULL; in cache_enter_time() 2646 if ((ndd = vp->v_cache_dd) != NULL) { in cache_enter_time() 2647 if ((ndd->nc_flag & NCF_ISDOTDOT) != 0) in cache_enter_time() 2648 cache_zap_locked(ndd); in cache_enter_time() 2650 ndd = NULL; in cache_enter_time() 2694 if (ndd != NULL) in cache_enter_time() 2695 cache_free(ndd); in cache_enter_time()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
H A D | X86TargetParser.def | 245 X86_FEATURE (NDD, "ndd")
|
/freebsd/share/examples/ipfilter/ |
H A D | ipf-howto.txt | 2409 ndd -set /dev/ip ip_forwarding 1 2428 ndd -set /dev/tcp tcp_smallest_anon_port 25000 2429 ndd -set /dev/tcp tcp_largest_anon_port 65535 2461 ndd -set /dev/ip ip_forward_directed_broadcasts 0 2462 ndd -set /dev/ip ip_forward_src_routed 0 2463 ndd -set /dev/ip ip_respond_to_echo_broadcast 0
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Options.td | 6378 …HelpText<"Enable features of APX">, Values<"egpr,push2pop2,ppx,ndd,ccmp,nf,cf,zu">, Visibility<[C… 6380 …HelpText<"Disable features of APX">, Values<"egpr,push2pop2,ppx,ndd,ccmp,nf,cf,zu">, Visibility<[C… 6381 def mapxf : Flag<["-"], "mapxf">, Alias<mapx_features_EQ>, AliasArgs<["egpr","push2pop2","ppx","ndd… 6382 …o-apxf">, Alias<mno_apx_features_EQ>, AliasArgs<["egpr","push2pop2","ppx","ndd","ccmp","nf","cf","…
|