/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | DSDIRInstructions.td | 110 class DSDIR_Real<DSDIR_Pseudo lds, dag ins, string asm, int subtarget> : 111 DSDIR_Common<lds.Mnemonic, 112 lds.Mnemonic # asm, 114 lds.is_direct>, 115 SIMCInstr <lds.PseudoInstr, subtarget> { 120 let SubtargetPredicate = lds.SubtargetPredicate; 166 defvar lds = !cast<DSDIR_Pseudo>(NAME); 167 def _gfx11 : DSDIR_Real<lds, lds.InOperandList, 168 LDSDIR_getAsm<lds.is_direct>.ret, 170 LDSDIRe<op, lds.is_direct> { [all …]
|
H A D | LDSDIRInstructions.td |
|
H A D | AMDGPUAttributes.def | 30 AMDGPU_ATTRIBUTE(LDS_KERNEL_ID, "amdgpu-no-lds-kernel-id")
|
H A D | AMDGPUPassRegistry.def | 24 MODULE_PASS("amdgpu-lower-module-lds", AMDGPULowerModuleLDSPass(*this))
|
H A D | FLATInstructions.td | 61 bits<1> lds = 0; 117 bits<1> lds = ps.lds; // LDS DMA for global and scratch 133 let Inst{13} = !if(ps.has_sve, ps.sve, lds); 297 let lds = 1; 363 let lds = 0; 475 let lds = 1; 1871 let AsmString = pre_gfx940_name # !cast<FLAT_Pseudo>(NAME).AsmOperands # " lds"; 1874 let AsmString = pre_gfx940_name # !cast<FLAT_Pseudo>(NAME#"_SADDR").AsmOperands # " lds"; 2168 let AsmString = opname # !cast<FLAT_Pseudo>(NAME).AsmOperands # " lds" in 2171 let AsmString = opname # !cast<FLAT_Pseudo>(NAME#"_SADDR").AsmOperands # " lds" in [all …]
|
H A D | BUFInstructions.td | 78 bits<1> lds = 0; 79 bits<1> has_vdata = !not(lds); 454 string Lds = !if(isLds, " lds", ""); 512 let lds = isLds; 672 " $srsrc, $soffset$offset lds$cpol"> { 679 let lds = 1; 2361 let Inst{16} = ps.lds; 3049 let Inst{16} = ps.lds; 3162 let Inst{16} = ps.lds;
|
H A D | AMDGPU.td | 187 def FeatureLdsMisalignedBug : SubtargetFeature<"lds-misaligned-bug", 229 def FeatureLdsBranchVmemWARHazard : SubtargetFeature<"lds-branch-vmem-war-hazard",
|
/freebsd/usr.sbin/pmcstudy/ |
H A D | pmcstudy.c | 1473 double un, lds, con, res; in aliasing() local 1479 lds = ld->vals[pos] * 1.0; in aliasing() 1482 lds = ld->sum * 1.0; in aliasing() 1485 res = (lds * con)/un; in aliasing() 1497 double un, lds, con, res; in aliasing_broad() local 1503 lds = ld->vals[pos] * 1.0; in aliasing_broad() 1506 lds = ld->sum * 1.0; in aliasing_broad() 1509 res = (lds * con)/un; in aliasing_broad()
|
/freebsd/sys/modules/linux64/ |
H A D | Makefile | 82 -T${SRCTOP}/sys/${MACHINE}/linux/linux_vdso.lds.s \
|
/freebsd/contrib/processor-trace/libipt/test/src/ |
H A D | ptunit-ild.c | 563 static struct ptunit_result lds(void) in lds() function 742 ptu_run(suite, lds); in main()
|
/freebsd/sys/compat/linux/ |
H A D | linux_ioctl.c | 1580 l_dvd_struct *lds; in linux_ioctl_cdrom() local 1583 lds = malloc(sizeof(*lds), M_LINUX, M_WAITOK); in linux_ioctl_cdrom() 1585 error = copyin((void *)args->arg, lds, sizeof(*lds)); in linux_ioctl_cdrom() 1588 error = linux_to_bsd_dvd_struct(lds, bds); in linux_ioctl_cdrom() 1595 error = bsd_to_linux_dvd_struct(bds, lds); in linux_ioctl_cdrom() 1598 error = copyout(lds, (void *)args->arg, sizeof(*lds)); in linux_ioctl_cdrom() 1601 free(lds, M_LINUX); in linux_ioctl_cdrom()
|
/freebsd/sys/modules/linux/ |
H A D | Makefile | 116 -T${SRCTOP}/sys/${MACHINE}/linux${SFX}/linux${SFX}_vdso.lds.s \
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | lib-ld.m4 | 14 [# I'd rather use --version here, but apparently some GNU lds only accept -v.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
H A D | AVRInstrInfo.td | 891 def LDSRdK : F32DM<0b0, (outs GPR8:$rd), (ins imm16:$k), "lds\t$rd, $k", 897 "lds\t$rd, $k", [(set i8:$rd, (load imm:$k))]>, 903 // lds Rd, (K+1:K) 904 // lds Rd+1 (K+1:K) + 1
|
H A D | AVRInstrFormats.td | 497 // i = 0 - lds, 1 - sts
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrSystem.td | 350 "lds{w}\t{$src, $dst|$dst, $src}", []>, OpSize16, 353 "lds{l}\t{$src, $dst|$dst, $src}", []>, OpSize32,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsAMDGPU.td | 1839 // This intrinsic reads from lds, but the memory values are constant, 1875 // llvm.amdgcn.lds.direct.load <m0> 1883 // llvm.amdgcn.lds.param.load <attr_chan>, <attr>, <m0> 1884 // Like interp intrinsics, this reads from lds, but the memory values are constant,
|
/freebsd/contrib/openbsm/m4/ |
H A D | libtool.m4 | 3340 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5513 # We only use this code for GNU lds that support --whole-archive. 6586 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/openpam/m4/ |
H A D | libtool.m4 | 3360 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5534 # We only use this code for GNU lds that support --whole-archive. 6608 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/ntp/sntp/libevent/m4/ |
H A D | libtool.m4 | 3340 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5513 # We only use this code for GNU lds that support --whole-archive. 6586 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | libtool.m4 | 3340 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5513 # We only use this code for GNU lds that support --whole-archive. 6586 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/libevent/m4/ |
H A D | libtool.m4 | 3361 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5535 # We only use this code for GNU lds that support --whole-archive. 6609 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/ldns/m4/ |
H A D | libtool.m4 | 3351 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5537 # We only use this code for GNU lds that support --whole-archive. 6611 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/file/m4/ |
H A D | libtool.m4 | 3360 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5534 # We only use this code for GNU lds that support --whole-archive. 6608 # We only use this code for GNU lds that support --whole-archive.
|
/freebsd/contrib/unbound/ |
H A D | aclocal.m4 | 3349 [# I'd rather use --version here, but apparently some GNU lds only accept -v. 5522 # We only use this code for GNU lds that support --whole-archive. 6591 # We only use this code for GNU lds that support --whole-archive.
|