Searched refs:LocNo (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 130 void coalesceLocation(unsigned LocNo); 133 void insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, unsigned LocNo, 235 void extendDef(SlotIndex Idx, unsigned LocNo, 248 void addDefsFromCopies(LiveInterval *LI, unsigned LocNo, 425 void UserValue::coalesceLocation(unsigned LocNo) { in coalesceLocation() argument 428 if (KeepLoc == LocNo) in coalesceLocation() 430 if (locations[KeepLoc].isIdenticalTo(locations[LocNo])) in coalesceLocation() 438 unsigned EraseLoc = LocNo; in coalesceLocation() 542 void UserValue::extendDef(SlotIndex Idx, unsigned LocNo, LiveRange *LR, in extendDef() argument 570 if (I.value() != LocNo || I.stop() != Start) in extendDef() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 103 DbgValueLocation(unsigned LocNo, bool WasIndirect) in DbgValueLocation() argument 104 : LocNo(LocNo), WasIndirect(WasIndirect) { in DbgValueLocation() 106 assert(locNo() == LocNo && "location truncation"); in DbgValueLocation() 109 DbgValueLocation() : LocNo(0), WasIndirect(0) {} in DbgValueLocation() 113 return LocNo == INT_MAX ? UndefLocNo : LocNo; in locNo() 124 return LHS.LocNo == RHS.LocNo && LHS.WasIndirect == RHS.WasIndirect; in operator ==() 133 unsigned LocNo : 31; member in DbgValueLocation 267 void removeLocationIfUnused(unsigned LocNo) { in removeLocationIfUnused() argument 271 if (Loc.locNo() == LocNo) in removeLocationIfUnused() 276 locations.erase(locations.begin() + LocNo); in removeLocationIfUnused() [all …]
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | LiveDebugVariables.cpp | 103 DbgVariableValue(unsigned LocNo, bool WasIndirect, in DbgVariableValue() argument 105 : LocNo(LocNo), WasIndirect(WasIndirect), Expression(&Expression) { in DbgVariableValue() 106 assert(getLocNo() == LocNo && "location truncation"); in DbgVariableValue() 109 DbgVariableValue() : LocNo(0), WasIndirect(0) {} in DbgVariableValue() 114 return LocNo == INT_MAX ? UndefLocNo : LocNo; in getLocNo() 125 return LHS.LocNo == RHS.LocNo && LHS.WasIndirect == RHS.WasIndirect && in operator ==() 135 unsigned LocNo : 31; member in __anona6a3267b0211::DbgVariableValue 264 void removeLocationIfUnused(unsigned LocNo) { in removeLocationIfUnused() argument 268 if (DbgValue.getLocNo() == LocNo) in removeLocationIfUnused() 273 locations.erase(locations.begin() + LocNo); in removeLocationIfUnused() [all …]
|
/external/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
D | InstrRefBasedImpl.cpp | 303 uint64_t LocNo : NUM_LOC_BITS; /// The machine location where the def happens. member in __anon84c0493f0111::ValueIDNum 310 LocNo(0xFFFFFF) { } in ValueIDNum() 313 : BlockNo(Block), InstNo(Inst), LocNo(Loc) { } in ValueIDNum() 316 : BlockNo(Block), InstNo(Inst), LocNo(Loc.asU64()) { } in ValueIDNum() 320 uint64_t getLoc() const { return LocNo; } in getLoc() 326 return TmpBlock << 44ull | TmpInst << NUM_LOC_BITS | LocNo; in asU64() 339 return std::tie(BlockNo, InstNo, LocNo) == in operator ==() 340 std::tie(Other.BlockNo, Other.InstNo, Other.LocNo); in operator ==() 702 unsigned LocNo = getLocID(SpillID, true); in getSpillMLoc() local 703 return LocIDToLocIdx[LocNo]; in getSpillMLoc()
|