Searched refs:InstARM32Call (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceInstARM32.h | 1174 class InstARM32Call : public InstARM32 { 1175 InstARM32Call() = delete; 1176 InstARM32Call(const InstARM32Call &) = delete; 1177 InstARM32Call &operator=(const InstARM32Call &) = delete; 1180 static InstARM32Call *create(Cfg *Func, Variable *Dest, Operand *CallTarget) { in create() 1181 return new (Func->allocate<InstARM32Call>()) in create() 1182 InstARM32Call(Func, Dest, CallTarget); in create() 1191 InstARM32Call(Cfg *Func, Variable *Dest, Operand *CallTarget);
|
D | IceInstARM32.cpp | 1282 InstARM32Call::InstARM32Call(Cfg *Func, Variable *Dest, Operand *CallTarget) in InstARM32Call() function in Ice::ARM32::InstARM32Call 2233 void InstARM32Call::emit(const Cfg *Func) const { in emit() 2258 void InstARM32Call::emitIAS(const Cfg *Func) const { in emitIAS() 2277 void InstARM32Call::dump(const Cfg *Func) const { in dump()
|
D | IceTargetLoweringARM32.h | 1090 InstARM32Call *bl(Variable *ReturnReg, Operand *CallTarget);
|
D | IceTargetLoweringARM32.cpp | 1839 if (llvm::isa<InstARM32Call>(Instr)) { in resetTempBaseIfClobberedBy() 3843 InstARM32Call *NewCall = in lowerCall() 7135 InstARM32Call *TargetARM32::Sandboxer::bl(Variable *ReturnReg, in bl() 7144 return Target->Context.insert<InstARM32Call>(ReturnReg, CallTarget); in bl()
|