Home
last modified time | relevance | path

Searched refs:ndd (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrUtils.td111 class NDD<bit ndd> {
114 bit hasEVEX_B = ndd;
115 bit hasVEX_4V = ndd;
116 Map OpMap = !if(!eq(ndd, 0), OB, T_MAP4);
992 : BinOpRR_R<o, m, t, ndd>, DisassembleOnly {
1036 []>, NDD<ndd>;
1048 DefEFLAGS, UseEFLAGS, NDD<ndd> {
1071 []>, NDD<ndd>;
1104 …: BinOpRI8<o, m, !if(!eq(ndd, 0), binop_args, binop_ndd_args), t, f, (outs t.RegClass:$dst)>, NDD<
1107 …: BinOpRI8<o, m, !if(!eq(ndd, 0), binop_args, binop_ndd_args), t, f, (outs t.RegClass:$dst)>, DefE…
[all …]
H A DX86InstrArithmetic.td198 : BinOpRR_R<0xAF, "imul", t, ndd> {
212 : BinOpRM_R<0xAF, "imul", t, ndd> {
340 class IncOpR_RF<X86TypeInfo t, bit ndd = 0> : UnaryOpR_RF<0xFF, MRM0r, "inc", t, null_frag, ndd> {
344 class DecOpR_RF<X86TypeInfo t, bit ndd = 0> : UnaryOpR_RF<0xFF, MRM1r, "dec", t, null_frag, ndd> {
348 class IncOpR_R<X86TypeInfo t, bit ndd = 0> : UnaryOpR_R<0xFF, MRM0r, "inc", t, null_frag, ndd>;
349 class DecOpR_R<X86TypeInfo t, bit ndd = 0> : UnaryOpR_R<0xFF, MRM1r, "dec", t, null_frag, ndd>;
478 class NegOpR_R<X86TypeInfo t, bit ndd = 0>
479 : UnaryOpR_R<0xF7, MRM3r, "neg", t, ineg, ndd>;
480 class NegOpR_RF<X86TypeInfo t, bit ndd = 0>
487 class NotOpR_R<X86TypeInfo t, bit ndd = 0>
[all …]
H A DX86InstrShiftRotate.td346 …ShlrdOpRRI8U_R<bits<8> o, string m, X86TypeInfo t, SDPatternOperator node = null_frag, bit ndd = 0>
348 …(ins t.RegClass:$src1, t.RegClass:$src2, u8imm:$src3), m, !if(!eq(ndd, 0), triop_args, triop_ndd_a…
349 []>, NDD<ndd> {
358 class ShlrdOpRRC_R<bits<8> o, string m, X86TypeInfo t, SDPatternOperator node = null_frag, bit ndd
359 …: BinOpRR<o, m, !if(!eq(ndd, 0), triop_cl_args, triop_cl_ndd_args), t, (outs t.RegClass:$dst), []>…
H A DX86.td350 def FeatureNDD : SubtargetFeature<"ndd", "HasNDD", "true",
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DX86TargetParser.def253 X86_FEATURE (NDD, "ndd")
/freebsd-14.2/sys/kern/
H A Dvfs_cache.c2404 struct namecache *ncp, *n2, *ndd; in cache_enter_time() local
2450 ndd = NULL; in cache_enter_time()
2546 if ((ndd = vp->v_cache_dd) != NULL) { in cache_enter_time()
2547 if ((ndd->nc_flag & NCF_ISDOTDOT) != 0) in cache_enter_time()
2548 cache_zap_locked(ndd); in cache_enter_time()
2550 ndd = NULL; in cache_enter_time()
2599 if (ndd != NULL) in cache_enter_time()
2600 cache_free(ndd); in cache_enter_time()
/freebsd-14.2/share/examples/ipfilter/
H A Dipf-howto.txt2409 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-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td6086 HelpText<"Enable features of APX">, Values<"egpr,push2pop2,ppx,ndd,ccmp,cf">;
6088 HelpText<"Disable features of APX">, Values<"egpr,push2pop2,ppx,ndd,ccmp,cf">;
6089 // Features egpr, push2pop2, ppx and ndd are validated with llvm-test-suite && cpu2017 on Intel SDE.
6092 …apxf : Flag<["-"], "mapxf">, Alias<mapx_features_EQ>, AliasArgs<["egpr","push2pop2","ppx", "ndd"]>;
6093 …: Flag<["-"], "mno-apxf">, Alias<mno_apx_features_EQ>, AliasArgs<["egpr","push2pop2","ppx","ndd"]>;