/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | BUFInstructions.td | 149 bits<8> soffset; 165 dag SOffset = !if(hasRestrictedSOffset, (ins SReg_32:$soffset), 166 (ins SCSrc_b32:$soffset)); 191 !if(!eq(addrKind, BUFAddrKind.Offset), "off, $srsrc,$format $soffset", 193 "$vaddr, $srsrc,$format $soffset offen", 195 "$vaddr, $srsrc,$format $soffset idxen", 197 "$vaddr, $srsrc,$format $soffset idxen offen", 199 "$vaddr, $srsrc,$format $soffset addr64", 364 bits<8> soffset; 416 dag SOffset = !if(hasRestrictedSOffset, (ins SReg_32:$soffset), (ins SCSrc_b32:$soffset)); [all …]
|
H A D | SMInstructions.td | 85 bits<8> soffset; 99 def SGPR_Offset : OffsetMode<0, 1, "_SGPR", (ins SReg_32:$soffset), "$soffset">; 101 (ins SReg_32:$soffset, SMEMOffsetMod:$offset), 102 "$soffset$offset">; 104 (ins SReg_32:$soffset, OptSMEMOffsetMod:$offset), 105 "$soffset$offset">; 238 (ins SMEMOffset:$offset, SReg_32:$soffset, i8imm:$sdata)), 239 !if(hasSBase, " $sbase,", "") # " $offset, $soffset, $sdata"> { 490 let Inst{7-0} = !if(ps.has_offset, offset{7-0}, !if(ps.has_soffset, soffset, ?)); 552 // soffset. [all …]
|
H A D | SIInstrInfo.td | 102 SDTCisVT<4, i32>, // soffset(SGPR) 120 SDTCisVT<4, i32>, // soffset(SGPR) 138 SDTCisVT<4, i32>, // soffset(SGPR) 176 SDTCisVT<4, i32>, // soffset(SGPR) 202 SDTCisVT<5, i32>, // soffset(SGPR) 209 (ops node:$vdata_in, node:$rsrc, node:$vindex, node:$voffset, node:$soffset, 212 node:$voffset, node:$soffset, node:$offset, node:$cachepolicy, 241 SDTCisVT<6, i32>, // soffset(SGPR) 250 node:$soffset, node:$offset, node:$cachepolicy, node:$idxen), 252 node:$voffset, node:$soffset, node:$offset, node:$cachepolicy, [all …]
|
H A D | SILoadStoreOptimizer.cpp | 835 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::soffset); in setMI() 1487 New.add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)); in mergeSMemLoadImmPair() 1526 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeBufferLoadPair() 1570 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeTBufferLoadPair() 1613 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeTBufferStorePair() 1908 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeBufferStorePair()
|
H A D | SIRegisterInfo.cpp | 915 MachineOperand *SOffset = TII->getNamedOperand(MI, AMDGPU::OpName::soffset); in resolveFrameIndex() 1279 .add(*TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)) in buildMUBUFOffsetLoadStore() 2180 assert(TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)->getReg() == in eliminateFrameIndex() 2248 assert(TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)->getReg() == in eliminateFrameIndex() 2569 auto &SOffset = *TII->getNamedOperand(*MI, AMDGPU::OpName::soffset); in eliminateFrameIndex()
|
H A D | SIInstructions.td | 968 SReg_32:$soffset, i32imm:$offset)> { 980 SReg_32:$soffset, i32imm:$offset)> { 3735 type2:$soffset, untyped_imm_0:$offset, 3744 type2:$soffset, untyped_imm_0:$offset, untyped_imm_0:$format, 3769 type2:$soffset, untyped_imm_0:$offset, 3778 type2:$soffset, untyped_imm_0:$offset, 3870 type2:$soffset, untyped_imm_0:$offset, 3897 type2:$voffset, type2:$soffset, untyped_imm_0:$offset,
|
H A D | SIInstrInfo.cpp | 312 if (!nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::soffset) || in areLoadsFromSameBasePtr() 442 getNamedOperand(LdSt, AMDGPU::OpName::soffset); in getMemOperandsWithOffsetWidth() 5119 const MachineOperand *Soff = getNamedOperand(MI, AMDGPU::OpName::soffset); in verifyInstruction() 6111 MachineOperand *SOff = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperandsSMRD() 6769 AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::soffset); in legalizeOperands() 6861 MachineOperand *SOffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands() 6918 MachineOperand *Soffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands() 6930 MachineOperand *Soffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands()
|
H A D | SIFoldOperands.cpp | 813 *TII->getNamedOperand(*UseMI, AMDGPU::OpName::soffset); in foldOperand()
|
H A D | GCNHazardRecognizer.cpp | 833 TII->getNamedOperand(MI, AMDGPU::OpName::soffset); in createsVALUHazard()
|
H A D | AMDGPU.td | 944 def FeatureHasRestrictedSOffset : SubtargetFeature<"restricted-soffset",
|
/freebsd/lib/libvgl/ |
H A D | simple.c | 52 int offset, soffset, undermouse; in VGLSetXY() local 93 soffset = VGLSetSegment(offset); in VGLSetXY() 95 switch (VGLAdpInfo.va_window_size - soffset) { in VGLSetXY() 97 memcpy(&object->Bitmap[soffset], &color, 1); in VGLSetXY() 98 soffset = VGLSetSegment(offset + 1); in VGLSetXY() 99 memcpy(&object->Bitmap[soffset], (byte *)&color + 1, 2); in VGLSetXY() 102 memcpy(&object->Bitmap[soffset], &color, 2); in VGLSetXY() 103 soffset = VGLSetSegment(offset + 2); in VGLSetXY() 104 memcpy(&object->Bitmap[soffset], (byte *)&color + 2, 1); in VGLSetXY() 107 memcpy(&object->Bitmap[soffset], &color, 3); in VGLSetXY()
|
/freebsd/stand/efi/libefi/ |
H A D | efi_console.c | 277 unsigned soffset, doffset; in efi_text_copy_line() local 281 soffset = s->tp_col + s->tp_row * state->tg_tp.tp_col; in efi_text_copy_line() 289 if (!is_same_pixel(&screen_buffer[soffset + x], in efi_text_copy_line() 292 screen_buffer[soffset + x]; in efi_text_copy_line() 309 unsigned doffset, soffset; in efi_text_copy() local 332 soffset = r->tr_begin.tp_col + r->tr_begin.tp_row * state->tg_tp.tp_col; in efi_text_copy() 342 if (doffset <= soffset) { in efi_text_copy()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | IntrinsicsAMDGPU.td | 1114 // These instrinsics also keep the offset and soffset arguments separate as 1128 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1145 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1158 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1176 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1190 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1208 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1227 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1245 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) 1265 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling) [all …]
|
/freebsd/contrib/ntp/ntpdate/ |
H A D | ntpdate.h | 43 s_fp soffset; /* fp version of above */ member
|
H A D | ntpdate.c | 1002 server->soffset = 0; in clock_filter() 1009 server->soffset = LFPTOFP(&server->offset); in clock_filter() 1199 d = server_list[j]->soffset - in clock_select() 1200 server_list[k]->soffset; in clock_select() 1292 if (server->soffset < 0) in clock_adjust() 1293 absoffset = 1u + (u_fp)(-(server->soffset + 1)); in clock_adjust() 1295 absoffset = (u_fp)server->soffset; in clock_adjust()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_set_format_pax.c | 1266 int64_t soffset, slength; local 1296 &soffset, &slength) == ARCHIVE_OK) { 1299 (intmax_t)soffset, 1302 if (sparse_list_add(pax, soffset, slength)
|
/freebsd/stand/common/ |
H A D | gfx_fb.c | 1186 unsigned soffset, doffset; in gfx_fb_copy_line() local 1190 soffset = s->tp_col + s->tp_row * state->tg_tp.tp_col; in gfx_fb_copy_line() 1194 if (is_same_pixel(&screen_buffer[soffset + x], in gfx_fb_copy_line() 1201 screen_buffer[doffset + x] = screen_buffer[soffset + x]; in gfx_fb_copy_line() 1226 unsigned doffset, soffset; in gfx_fb_copy() local 1242 soffset = r->tr_begin.tp_col + r->tr_begin.tp_row * state->tg_tp.tp_col; in gfx_fb_copy() 1252 if (doffset <= soffset) { in gfx_fb_copy()
|
/freebsd/sys/cam/ctl/ |
H A D | ctl_tpc.c | 1152 int *srange, off_t *soffset) in tpc_skip_ranges() argument 1162 *soffset = skip - off; in tpc_skip_ranges() 1177 off_t doffset, soffset; in tpc_process_wut() local 1225 &srange, &soffset) != 0) { in tpc_process_wut() 1231 srclba = scsi_8btou64(list->token->range[srange].lba) + soffset; in tpc_process_wut() 1234 (scsi_4btoul(list->token->range[srange].length) - soffset); in tpc_process_wut()
|
/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/ |
H A D | sahw.c | 2991 bit32 soffset, in siPciCpyMem() argument 3002 SA_DBG1(("siPciCpyMem:copy DWcount %d from offset 0x%x to %p\n",DWcount,soffset,dst)); in siPciCpyMem() 3006 offset = (soffset + i / 4); in siPciCpyMem()
|
H A D | saproto.h | 885 bit32 soffset,
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUInstPrinter.cpp | 960 AMDGPU::getNamedOperandIdx(MI->getOpcode(), AMDGPU::OpName::soffset); in printRegularOperand()
|