Home
last modified time | relevance | path

Searched refs:soffset (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DBUFInstructions.td146 bits<8> soffset;
162 dag SOffset = !if(hasGFX12Enc, (ins SReg_32:$soffset),
190 "$vaddr, $srsrc,$format $soffset offen",
192 "$vaddr, $srsrc,$format $soffset idxen",
196 "$vaddr, $srsrc,$format $soffset addr64",
358 bits<8> soffset;
412 dag SOffset = !if(hasGFX12Enc, (ins SReg_32:$soffset), (ins SCSrc_b32:$soffset));
689 dag SOffset = !if(hasGFX12Enc, (ins SReg_32:$soffset), (ins SCSrc_b32:$soffset));
1588 SCSrc_b32:$soffset, offset:$offset);
1657 SCSrc_b32:$soffset, timm:$offset, CachePolicy)
[all …]
H A DSMInstructions.td77 bits<8> soffset;
91 def SGPR_Offset : OffsetMode<0, 1, "_SGPR", (ins SReg_32:$soffset), "$soffset">;
94 "$soffset$offset">;
536 // soffset.
551 // soffset
553 soffset{6-0}, ?);
871 (smrd_load (SMRDSgpr i64:$sbase, i32:$soffset)),
876 (smrd_load (SMRDSgpr i64:$sbase, i32:$soffset)),
944 (node (SMRDSgpr i64:$sbase, i32:$soffset)),
1108 let Inst{63-57} = !if(ps.has_soffset, soffset{6-0},
[all …]
H A DSIInstrInfo.td97 SDTCisVT<4, i32>, // soffset(SGPR)
115 SDTCisVT<4, i32>, // soffset(SGPR)
133 SDTCisVT<4, i32>, // soffset(SGPR)
161 SDTCisVT<4, i32>, // soffset(SGPR)
187 SDTCisVT<5, i32>, // soffset(SGPR)
197 node:$voffset, node:$soffset, node:$offset, node:$cachepolicy,
227 SDTCisVT<6, i32>, // soffset(SGPR)
236 node:$soffset, node:$offset, node:$cachepolicy, node:$idxen),
238 node:$voffset, node:$soffset, node:$offset, node:$cachepolicy,
588 (ops node:$rsrc, node:$vindex, node:$voffset, node:$soffset, node:$offset,
[all …]
H A DSILoadStoreOptimizer.cpp795 AMDGPU::getNamedOperandIdx(Opc, AMDGPU::OpName::soffset); in setMI()
1425 New.add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)); in mergeSMemLoadImmPair()
1478 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeBufferLoadPair()
1536 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeTBufferLoadPair()
1607 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeTBufferStorePair()
1934 .add(*TII->getNamedOperand(*CI.I, AMDGPU::OpName::soffset)) in mergeBufferStorePair()
H A DSIRegisterInfo.cpp906 MachineOperand *SOffset = TII->getNamedOperand(MI, AMDGPU::OpName::soffset); in resolveFrameIndex()
1270 .add(*TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)) in buildMUBUFOffsetLoadStore()
2169 assert(TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)->getReg() == in eliminateFrameIndex()
2237 assert(TII->getNamedOperand(*MI, AMDGPU::OpName::soffset)->getReg() == in eliminateFrameIndex()
2560 auto &SOffset = *TII->getNamedOperand(*MI, AMDGPU::OpName::soffset); in eliminateFrameIndex()
H A DSIInstructions.td965 SReg_32:$soffset, i32imm:$offset)> {
977 SReg_32:$soffset, i32imm:$offset)> {
3720 type2:$soffset, untyped_imm_0:$offset,
3729 type2:$soffset, untyped_imm_0:$offset, untyped_imm_0:$format,
3749 type2:$soffset, untyped_imm_0:$offset,
3758 type2:$soffset, untyped_imm_0:$offset,
3855 type2:$soffset, untyped_imm_0:$offset,
3883 type2:$voffset, type2:$soffset, untyped_imm_0:$offset,
H A DSIInstrInfo.cpp317 if (!nodesHaveSameOperandValue(Load0, Load1, AMDGPU::OpName::soffset) || in areLoadsFromSameBasePtr()
447 getNamedOperand(LdSt, AMDGPU::OpName::soffset); in getMemOperandsWithOffsetWidth()
4993 const MachineOperand *Soff = getNamedOperand(MI, AMDGPU::OpName::soffset); in verifyInstruction()
5995 MachineOperand *SOff = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperandsSMRD()
6646 AMDGPU::getNamedOperandIdx(MI.getOpcode(), AMDGPU::OpName::soffset); in legalizeOperands()
6738 MachineOperand *SOffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands()
6795 MachineOperand *Soffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands()
6807 MachineOperand *Soffset = getNamedOperand(MI, AMDGPU::OpName::soffset); in legalizeOperands()
H A DSIFoldOperands.cpp808 *TII->getNamedOperand(*UseMI, AMDGPU::OpName::soffset); in foldOperand()
H A DGCNHazardRecognizer.cpp831 TII->getNamedOperand(MI, AMDGPU::OpName::soffset); in createsVALUHazard()
H A DAMDGPU.td855 def FeatureHasRestrictedSOffset : SubtargetFeature<"restricted-soffset",
/freebsd-14.2/lib/libvgl/
H A Dsimple.c52 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-14.2/stand/efi/libefi/
H A Defi_console.c277 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-14.2/contrib/ntp/ntpdate/
H A Dntpdate.h43 s_fp soffset; /* fp version of above */ member
H A Dntpdate.c1002 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-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsAMDGPU.td1114 // These new instrinsics also keep the offset and soffset arguments separate as
1128 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1171 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1214 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1258 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1505 llvm_i32_ty, // soffset(SGPR)
1522 llvm_i32_ty, // soffset(SGPR)
1579 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1600 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
1664 llvm_i32_ty, // soffset(SGPR/imm, excluded from bounds checking and swizzling)
[all …]
/freebsd-14.2/contrib/libarchive/libarchive/
H A Darchive_write_set_format_pax.c1266 int64_t soffset, slength; local
1296 &soffset, &slength) == ARCHIVE_OK) {
1299 (intmax_t)soffset,
1302 if (sparse_list_add(pax, soffset, slength)
/freebsd-14.2/stand/common/
H A Dgfx_fb.c1176 unsigned soffset, doffset; in gfx_fb_copy_line() local
1180 soffset = s->tp_col + s->tp_row * state->tg_tp.tp_col; in gfx_fb_copy_line()
1184 if (is_same_pixel(&screen_buffer[soffset + x], in gfx_fb_copy_line()
1191 screen_buffer[doffset + x] = screen_buffer[soffset + x]; in gfx_fb_copy_line()
1216 unsigned doffset, soffset; in gfx_fb_copy() local
1232 soffset = r->tr_begin.tp_col + r->tr_begin.tp_row * state->tg_tp.tp_col; in gfx_fb_copy()
1242 if (doffset <= soffset) { in gfx_fb_copy()
/freebsd-14.2/sys/cam/ctl/
H A Dctl_tpc.c1153 int *srange, off_t *soffset) in tpc_skip_ranges() argument
1163 *soffset = skip - off; in tpc_skip_ranges()
1178 off_t doffset, soffset; in tpc_process_wut() local
1226 &srange, &soffset) != 0) { in tpc_process_wut()
1232 srclba = scsi_8btou64(list->token->range[srange].lba) + soffset; in tpc_process_wut()
1235 (scsi_4btoul(list->token->range[srange].length) - soffset); in tpc_process_wut()
/freebsd-14.2/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsahw.c2991 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 Dsaproto.h885 bit32 soffset,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp896 AMDGPU::getNamedOperandIdx(MI->getOpcode(), AMDGPU::OpName::soffset); in printRegularOperand()