Home
last modified time | relevance | path

Searched refs:OperandARM32ShAmtImm (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceInstARM32.h168 class OperandARM32ShAmtImm : public OperandARM32 {
169 OperandARM32ShAmtImm() = delete;
170 OperandARM32ShAmtImm(const OperandARM32ShAmtImm &) = delete;
171 OperandARM32ShAmtImm &operator=(const OperandARM32ShAmtImm &) = delete;
174 static OperandARM32ShAmtImm *create(Cfg *Func, ConstantInteger32 *ShAmt) { in create()
175 return new (Func->allocate<OperandARM32ShAmtImm>()) in create()
176 OperandARM32ShAmtImm(ShAmt); in create()
190 explicit OperandARM32ShAmtImm(ConstantInteger32 *SA);
DIceTargetLoweringARM32.h191 OperandARM32ShAmtImm *shAmtImm(uint32_t ShAmtImm) const { in shAmtImm()
193 return OperandARM32ShAmtImm::create( in shAmtImm()
DIceInstARM32.cpp344 OperandARM32ShAmtImm::OperandARM32ShAmtImm(ConstantInteger32 *SA) in OperandARM32ShAmtImm() function in Ice::ARM32::OperandARM32ShAmtImm
3359 void OperandARM32ShAmtImm::emit(const Cfg *Func) const { ShAmt->emit(Func); } in emit()
3361 void OperandARM32ShAmtImm::dump(const Cfg *, Ostream &Str) const { in dump()
DIceAssemblerARM32.cpp401 if (const auto *ShAmt = llvm::dyn_cast<OperandARM32ShAmtImm>(Amt)) { in encodeOperand()
413 if (const auto *ShImm = llvm::dyn_cast<OperandARM32ShAmtImm>(Opnd)) { in encodeOperand()
DIceTargetLoweringARM32.cpp2970 OperandARM32ShAmtImm::create( in createShiftedOperand()