| /llvm-project-15.0.7/llvm/lib/AsmParser/ |
| H A D | Parser.cpp | 33 M ? M->getContext() : Context, Slots) in parseAssemblyInto() 39 SlotMapping *Slots, in parseAssemblyInto() argument 41 return ::parseAssemblyInto(F, M, Index, Err, Slots, in parseAssemblyInto() 47 SlotMapping *Slots, in parseAssembly() argument 94 return ::parseAssemblyWithIndex(F, Err, Context, Slots, in parseAssemblyWithIndex() 139 return parseAssembly(F, Err, Context, Slots); in parseAssemblyString() 187 .parseStandaloneConstantValue(C, Slots)) in parseConstantValue() 193 const SlotMapping *Slots) { in parseType() argument 195 Type *Ty = parseTypeAtBeginning(Asm, Read, Err, M, Slots); in parseType() 210 const SlotMapping *Slots) { in parseTypeAtBeginning() argument [all …]
|
| H A D | LLParser.cpp | 109 restoreParsingState(Slots); in parseStandaloneConstantValue() 122 restoreParsingState(Slots); in parseTypeAtBeginning() 136 void LLParser::restoreParsingState(const SlotMapping *Slots) { in restoreParsingState() argument 137 if (!Slots) in restoreParsingState() 139 NumberedVals = Slots->GlobalValues; in restoreParsingState() 140 NumberedMetadata = Slots->MetadataNodes; in restoreParsingState() 141 for (const auto &I : Slots->NamedTypes) in restoreParsingState() 144 for (const auto &I : Slots->Types) in restoreParsingState() 284 if (!Slots) in validateEndOfModule() 289 Slots->GlobalValues = std::move(NumberedVals); in validateEndOfModule() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/AsmParser/ |
| H A D | Parser.h | 49 SlotMapping *Slots = nullptr); 65 SlotMapping *Slots = nullptr); 89 SlotMapping *Slots = nullptr, 95 SlotMapping *Slots, DataLayoutCallbackTy DataLayoutCallback); 117 SlotMapping *Slots = nullptr, 131 SlotMapping *Slots = nullptr); 157 SlotMapping *Slots = nullptr, 169 const SlotMapping *Slots = nullptr); 177 const SlotMapping *Slots = nullptr); 187 const Module &M, const SlotMapping *Slots = nullptr);
|
| H A D | LLParser.h | 105 SlotMapping *Slots; variable 161 SlotMapping *Slots = nullptr) 163 Lex(F, SM, Err, Context), M(M), Index(Index), Slots(Slots), in Context() 169 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots); 172 const SlotMapping *Slots); 182 void restoreParsingState(const SlotMapping *Slots);
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | Value.h | 895 Use *Slots[MaxSlots]; in sortUseList() local 901 Slots[0] = UseList; in sortUseList() 914 if (!Slots[I]) in sortUseList() 921 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList() 922 Slots[I] = nullptr; in sortUseList() 931 Slots[I] = Current; in sortUseList() 939 if (Slots[I]) in sortUseList() 942 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.h | 40 unsigned Slots, Weight; variable 46 Slots = s & ((1u << HEXAGON_PACKET_SIZE) - 1); in setUnits() 55 unsigned getUnits() const { return (Slots); } in getUnits()
|
| H A D | HexagonShuffler.cpp | 443 SmallVector<std::string, HEXAGON_PRESHUFFLE_PACKET_SIZE> Slots; in SlotMaskToText() local 446 Slots.push_back(utostr(SlotNum)); in SlotMaskToText() 448 return llvm::join(Slots, StringRef(", ")); in SlotMaskToText()
|
| H A D | HexagonMCInstrInfo.cpp | 466 unsigned Slots = 0; in getOtherReservedSlots() local 477 Slots |= Units; in getOtherReservedSlots() 481 return Slots; in getOtherReservedSlots()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeRecordMapping.cpp | 501 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() local 502 Size = Slots.size(); in visitKnownRecord() 505 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in visitKnownRecord() 506 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in visitKnownRecord() 507 if ((SlotIndex + 1) < Slots.size()) { in visitKnownRecord() 508 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in visitKnownRecord() 517 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord() 519 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/ |
| H A D | VPlanValue.h | 439 DenseMap<const VPValue *, unsigned> Slots; variable 452 auto I = Slots.find(V); in getSlot() 453 if (I == Slots.end()) in getSlot()
|
| H A D | VPlan.cpp | 1069 assert(Slots.find(V) == Slots.end() && "VPValue already has a slot!"); in assignSlot() 1070 Slots[V] = NextSlot++; in assignSlot()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeVTShape.cpp | 38 uint32_t NativeTypeVTShape::getCount() const { return Record.Slots.size(); } in getCount()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | FixupStatepointCallerSaved.cpp | 206 SmallVector<int, 8> Slots; member 270 while (Line.Index < Line.Slots.size()) { in getFrameIndex() 271 int FI = Line.Slots[Line.Index++]; in getFrameIndex() 285 Line.Slots.push_back(FI); in getFrameIndex()
|
| H A D | LiveDebugVariables.cpp | 1272 SlotIndexes *Slots = LIS->getSlotIndexes(); in runOnMachineFunction() local 1278 SlotIndex SI = Slots->getMBBStartIdx(MBB); in runOnMachineFunction() 1828 auto Slots = LIS->getSlotIndexes(); in emitDebugValues() local 1837 MachineBasicBlock *OrigMBB = Slots->getMBBFromIndex(Slot); in emitDebugValues() 1919 if (Idx == Slots->getMBBStartIdx(MBB)) { in emitDebugValues() 1926 if (MachineInstr *Pos = Slots->getInstructionFromIndex(Idx)) { in emitDebugValues() 1934 SlotIndex End = Slots->getMBBEndIdx(MBB); in emitDebugValues() 1935 for (; Idx < End; Idx = Slots->getNextNonNullIndex(Idx)) { in emitDebugValues() 1936 Pos = Slots->getInstructionFromIndex(Idx); in emitDebugValues()
|
| H A D | LiveIntervals.cpp | 916 ArrayRef<SlotIndex> Slots; in checkRegMaskInterference() local 919 Slots = getRegMaskSlotsInBlock(MBB->getNumber()); in checkRegMaskInterference() 922 Slots = getRegMaskSlots(); in checkRegMaskInterference() 928 ArrayRef<SlotIndex>::iterator SlotI = llvm::lower_bound(Slots, LiveI->start); in checkRegMaskInterference() 929 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in checkRegMaskInterference() 952 unionBitMask(SlotI - Slots.begin()); in checkRegMaskInterference() 960 unionBitMask(SlotI++ - Slots.begin()); in checkRegMaskInterference()
|
| H A D | LiveInterval.cpp | 800 bool LiveRange::isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const { in isLiveAtIndexes() 801 ArrayRef<SlotIndex>::iterator SlotI = Slots.begin(); in isLiveAtIndexes() 802 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in isLiveAtIndexes()
|
| H A D | RegisterCoalescer.cpp | 3699 const SlotIndexes &Slots = *LIS->getSlotIndexes(); in buildVRegToDbgValueMap() local 3719 SlotIndex CurrentSlot = Slots.getMBBStartIdx(&MBB); in buildVRegToDbgValueMap() 3728 CurrentSlot = Slots.getInstructionIndex(MI); in buildVRegToDbgValueMap() 3734 CloseNewDVRange(Slots.getMBBEndIdx(&MBB)); in buildVRegToDbgValueMap() 4129 SlotIndexes *Slots = LIS->getSlotIndexes(); in runOnMachineFunction() local 4134 SlotIndex SI = Slots->getMBBStartIdx(MBB); in runOnMachineFunction()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 557 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 558 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {} in VFTableShapeRecord() 559 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() argument 560 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {} in VFTableShapeRecord() 565 return Slots; in getSlots() 571 std::vector<VFTableSlotKind> Slots; variable
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | pdb-thunk.yaml | 384 Slots: 524 Slots: 561 Slots: 698 Slots: 873 Slots:
|
| /llvm-project-15.0.7/llvm/lib/Target/Sparc/ |
| H A D | SparcRegisterInfo.td | 43 // Rd - Slots in the FP register file for 64-bit floating-point values. 50 // Rq - Slots in the FP register file for 128-bit floating-point values.
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | LiveInterval.h | 597 bool isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const;
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | R600ISelLowering.cpp | 1667 SDValue Slots[4]; in constBufferLoad() local 1676 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr); in constBufferLoad() 1684 SDValue Result = DAG.getBuildVector(NewVT, DL, makeArrayRef(Slots, NumElements)); in constBufferLoad()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.h | 1007 void findStackIndexInterference(SmallVectorImpl<unsigned> &Slots);
|
| H A D | InstrRefBasedImpl.cpp | 2060 SmallVectorImpl<unsigned> &Slots) { in findStackIndexInterference() argument 2074 Slots.push_back(It->second); in findStackIndexInterference() 2081 Slots.push_back(Pair.second); in findStackIndexInterference()
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 557 IO.mapRequired("Slots", Record.Slots); in map()
|