Searched refs:EncodedOffset (Results 1 - 1 of 1) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp1102 /// \param EncodedOffset This is the immediate value that will be encoded
1103 /// directly into the instruction. On SI/CI the \p EncodedOffset
1106 int64_t EncodedOffset) {
1108 isUInt<8>(EncodedOffset) : isUInt<20>(EncodedOffset);
1122 int64_t EncodedOffset = Gen < AMDGPUSubtarget::VOLCANIC_ISLANDS ? local
1125 if (isLegalSMRDImmOffset(Subtarget, EncodedOffset)) {
1126 Offset = CurDAG->getTargetConstant(EncodedOffset, SL, MVT::i32);
1131 if (!isUInt<32>(EncodedOffset) || !isUInt<32>(ByteOffset))
1134 if (Gen == AMDGPUSubtarget::SEA_ISLANDS && isUInt<32>(EncodedOffset)) {
1105 isLegalSMRDImmOffset(const AMDGPUSubtarget *ST, int64_t EncodedOffset) argument
[all...]

Completed in 53 milliseconds