Lines Matching refs:Loc

83     Location &Loc = ParseResult.first;  in recordStackMapOpers()  local
84 assert(Loc.LocType == Location::Register && in recordStackMapOpers()
86 CallsiteLocs.push_back(Loc); in recordStackMapOpers()
93 Location &Loc = ParseResult.first; in recordStackMapOpers() local
96 if (Loc.LocType == Location::Constant && (Loc.Offset & ~0xFFFFFFFFULL)) { in recordStackMapOpers()
97 Loc.LocType = Location::ConstantIndex; in recordStackMapOpers()
98 Loc.Offset = ConstPool.getConstantIndex(Loc.Offset); in recordStackMapOpers()
101 CallsiteLocs.push_back(Loc); in recordStackMapOpers()
253 const Location &Loc = *LocI; in serializeToStackMapSection() local
256 switch (Loc.LocType) { in serializeToStackMapSection()
261 dbgs() << "Register " << MCRI.getName(Loc.Reg); in serializeToStackMapSection()
264 dbgs() << "Direct " << MCRI.getName(Loc.Reg); in serializeToStackMapSection()
265 if (Loc.Offset) in serializeToStackMapSection()
266 dbgs() << " + " << Loc.Offset; in serializeToStackMapSection()
269 dbgs() << "Indirect " << MCRI.getName(Loc.Reg) in serializeToStackMapSection()
270 << " + " << Loc.Offset; in serializeToStackMapSection()
273 dbgs() << "Constant " << Loc.Offset; in serializeToStackMapSection()
276 dbgs() << "Constant Index " << Loc.Offset; in serializeToStackMapSection()
283 int Offset = Loc.Offset; in serializeToStackMapSection()
284 if(Loc.Reg) { in serializeToStackMapSection()
285 RegNo = MCRI.getDwarfRegNum(Loc.Reg, false); in serializeToStackMapSection()
286 for (MCSuperRegIterator SR(Loc.Reg, TRI); in serializeToStackMapSection()
292 if (Loc.LocType == Location::Register) { in serializeToStackMapSection()
293 assert(!Loc.Offset && "Register location should have zero offset"); in serializeToStackMapSection()
295 unsigned SubRegIdx = MCRI.getSubRegIndex(LLVMRegNo, Loc.Reg); in serializeToStackMapSection()
301 assert(Loc.LocType != Location::Register && in serializeToStackMapSection()
304 AP.OutStreamer.EmitIntValue(Loc.LocType, 1); in serializeToStackMapSection()
305 AP.OutStreamer.EmitIntValue(Loc.Size, 1); in serializeToStackMapSection()