Lines Matching refs:Local
33 void addExtended(const Scope::Local &Local) override { in addExtended() argument
34 return this->addLocal(Local); in addExtended()
790 Scope::Local Local = this->createLocal(D); in allocateLocalPrimitive() local
792 Locals.insert({VD, Local}); in allocateLocalPrimitive()
793 VarScope->add(Local, IsExtended); in allocateLocalPrimitive()
794 return Local.Offset; in allocateLocalPrimitive()
829 Scope::Local Local = this->createLocal(D); in allocateLocal() local
831 Locals.insert({Key, Local}); in allocateLocal()
832 VarScope->add(Local, IsExtended); in allocateLocal()
833 return Local.Offset; in allocateLocal()
1135 auto Local = Locals.find(VD); in visitDecl() local
1136 assert(Local != Locals.end()); // Same here. in visitDecl()
1137 if (!this->emitGetPtrLocal(Local->second.Offset, VD)) in visitDecl()