/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | StackSlotColoring.cpp | 233 auto StackID = MFI->getStackID(FI); in InitializeSlots() local 234 if (StackID != 0) { in InitializeSlots() 235 AllColors.resize(StackID + 1); in InitializeSlots() 236 UsedColors.resize(StackID + 1); in InitializeSlots() 237 AllColors[StackID].resize(LastFI); in InitializeSlots() 238 UsedColors[StackID].resize(LastFI); in InitializeSlots() 241 AllColors[StackID].set(FI); in InitializeSlots() 273 uint8_t StackID = MFI->getStackID(FI); in ColorSlot() local 278 Color = UsedColors[StackID].find_first(); in ColorSlot() 285 Color = UsedColors[StackID].find_next(Color); in ColorSlot() [all …]
|
D | MachineFrameInfo.cpp | 53 uint8_t StackID) { in CreateStackObject() argument 57 !IsSpillSlot, StackID)); in CreateStackObject() 60 if (StackID == 0) in CreateStackObject() 226 if (SO.StackID != 0) in print() 227 OS << "id=" << static_cast<unsigned>(SO.StackID) << ' '; in print()
|
D | MIRPrinter.cpp | 376 YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I); in convertStackObjects() 403 YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I); in convertStackObjects()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceGlobalContext.h | 317 void dumpTimers(TimerStackIdT StackID = TSK_Default, 320 TimerStackIdT StackID = TSK_Default, 323 TimerIdT getTimerID(TimerStackIdT StackID, const std::string &Name); 324 void pushTimer(TimerIdT ID, TimerStackIdT StackID); 325 void popTimer(TimerIdT ID, TimerStackIdT StackID); 326 void resetTimer(TimerStackIdT StackID); 327 std::string getTimerName(TimerStackIdT StackID); 328 void setTimerName(TimerStackIdT StackID, const std::string &NewName); 578 TimerStackIdT StackID = GlobalContext::TSK_Default) 579 : ID(ID), Ctx(Ctx), StackID(StackID) { in ID() [all …]
|
D | IceGlobalContext.cpp | 837 TimerIdT GlobalContext::getTimerID(TimerStackIdT StackID, in getTimerID() argument 840 assert(StackID < Timers->size()); in getTimerID() 841 return Timers->at(StackID).getTimerID(Name); in getTimerID() 844 void GlobalContext::pushTimer(TimerIdT ID, TimerStackIdT StackID) { in pushTimer() argument 846 assert(StackID < Timers->size()); in pushTimer() 847 Timers->at(StackID).push(ID); in pushTimer() 850 void GlobalContext::popTimer(TimerIdT ID, TimerStackIdT StackID) { in popTimer() argument 852 assert(StackID < Timers->size()); in popTimer() 853 Timers->at(StackID).pop(ID); in popTimer() 856 void GlobalContext::resetTimer(TimerStackIdT StackID) { in resetTimer() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineMemOperand.h | 45 uint8_t StackID; member 51 : V(v), Offset(offset), StackID(ID) { in V() 57 : V(v), Offset(offset), StackID(ID) { in V() 62 : V((const Value *)nullptr), Offset(0), StackID(0), 69 : V(v), Offset(offset), StackID(ID) { in V() 82 return MachinePointerInfo(V.get<const Value*>(), Offset+O, StackID); in getWithOffset() 84 StackID); in getWithOffset()
|
D | MachineFrameInfo.h | 160 uint8_t StackID; member 186 bool IsAliased, uint8_t StackID = 0) 188 isImmutable(IsImmutable), isSpillSlot(IsSpillSlot), StackID(StackID), in SPOffset() 701 return Objects[ObjectIdx+NumFixedObjects].StackID; in getStackID() 708 Objects[ObjectIdx+NumFixedObjects].StackID = ID; in setStackID()
|
D | MIRYamlMapping.h | 216 TargetStackID::Value StackID; 228 StackID == Other.StackID && 256 YamlIO.mapOptional("stack-id", Object.StackID, TargetStackID::Default); 282 TargetStackID::Value StackID; 294 StackID == Other.StackID && 331 YamlIO.mapOptional("stack-id", Object.StackID, TargetStackID::Default);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MIRParser.cpp | 682 if (!TFI->isSupportedStackID(Object.StackID)) in initializeFrameInfo() 685 MFI.setStackID(ObjectIdx, Object.StackID); in initializeFrameInfo() 714 if (!TFI->isSupportedStackID(Object.StackID)) in initializeFrameInfo() 723 Object.StackID); in initializeFrameInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.cpp | 2939 unsigned StackID = TargetStackID::Default; in storeRegToStackSlot() local 2943 StackID = TargetStackID::SVEVector; in storeRegToStackSlot() 2947 StackID = TargetStackID::SVEVector; in storeRegToStackSlot() 2950 MFI.setStackID(FI, StackID); in storeRegToStackSlot() 3082 unsigned StackID = TargetStackID::Default; in loadRegFromStackSlot() local 3086 StackID = TargetStackID::SVEVector; in loadRegFromStackSlot() 3090 StackID = TargetStackID::SVEVector; in loadRegFromStackSlot() 3093 MFI.setStackID(FI, StackID); in loadRegFromStackSlot()
|
D | AArch64FrameLowering.cpp | 2566 unsigned StackID = MFI.getStackID(I); in determineSVEStackObjectOffsets() local 2567 if (StackID != TargetStackID::SVEVector) in determineSVEStackObjectOffsets()
|