Home
last modified time | relevance | path

Searched refs:Slots (Results 1 – 25 of 37) sorted by relevance

12

/openbsd-src/gnu/llvm/llvm/lib/AsmParser/
H A DParser.cpp25 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument
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
52 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, DataLayoutCallback)) in parseAssembly()
61 SlotMapping *Slots) { in parseAssemblyFile() argument
70 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots); in parseAssemblyFile()
75 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyWithIndex() argument
83 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex()
[all …]
H A DLLParser.cpp85 const SlotMapping *Slots) { in parseStandaloneConstantValue() argument
86 restoreParsingState(Slots); in parseStandaloneConstantValue()
98 const SlotMapping *Slots) { in parseTypeAtBeginning() argument
99 restoreParsingState(Slots); in parseTypeAtBeginning()
113 void LLParser::restoreParsingState(const SlotMapping *Slots) { in restoreParsingState() argument
114 if (!Slots) in restoreParsingState()
116 NumberedVals = Slots->GlobalValues; in restoreParsingState()
117 NumberedMetadata = Slots->MetadataNodes; in restoreParsingState()
118 for (const auto &I : Slots->NamedTypes) in restoreParsingState()
121 for (const auto &I : Slots->Types) in restoreParsingState()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/AsmParser/
H A DParser.h48 SlotMapping *Slots = nullptr);
64 SlotMapping *Slots = nullptr);
88 SlotMapping *Slots = nullptr,
96 SlotMapping *Slots, DataLayoutCallbackTy DataLayoutCallback);
129 SlotMapping *Slots = nullptr,
145 SlotMapping *Slots = nullptr);
171 SlotMapping *Slots = nullptr,
185 const SlotMapping *Slots = nullptr);
193 const SlotMapping *Slots = nullptr);
203 const Module &M, const SlotMapping *Slots = nullptr);
H A DLLParser.h107 SlotMapping *Slots; variable
177 SlotMapping *Slots = nullptr)
179 Lex(F, SM, Err, Context), M(M), Index(Index), Slots(Slots), in Context()
187 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots);
190 const SlotMapping *Slots);
200 void restoreParsingState(const SlotMapping *Slots);
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DValue.h892 Use *Slots[MaxSlots]; in sortUseList() local
898 Slots[0] = UseList; in sortUseList()
911 if (!Slots[I]) in sortUseList()
918 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList()
919 Slots[I] = nullptr; in sortUseList()
928 Slots[I] = Current; in sortUseList()
936 if (Slots[I]) in sortUseList()
939 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h41 unsigned Slots, Weight; variable
47 Slots = s & ((1u << HEXAGON_PACKET_SIZE) - 1); in setUnits()
56 unsigned getUnits() const { return (Slots); } in getUnits()
H A DHexagonShuffler.cpp444 SmallVector<std::string, HEXAGON_PRESHUFFLE_PACKET_SIZE> Slots; in SlotMaskToText() local
447 Slots.push_back(utostr(SlotNum)); in SlotMaskToText()
449 return llvm::join(Slots, StringRef(", ")); in SlotMaskToText()
H A DHexagonMCInstrInfo.cpp466 unsigned Slots = 0; in getOtherReservedSlots() local
477 Slots |= Units; in getOtherReservedSlots()
481 return Slots; in getOtherReservedSlots()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp500 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() local
501 Size = Slots.size(); in visitKnownRecord()
504 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in visitKnownRecord()
505 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in visitKnownRecord()
506 if ((SlotIndex + 1) < Slots.size()) { in visitKnownRecord()
507 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in visitKnownRecord()
516 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord()
518 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h432 DenseMap<const VPValue *, unsigned> Slots; variable
445 auto I = Slots.find(V); in getSlot()
446 if (I == Slots.end()) in getSlot()
H A DVPlan.cpp1089 assert(Slots.find(V) == Slots.end() && "VPValue already has a slot!"); in assignSlot()
1090 Slots[V] = NextSlot++; in assignSlot()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeVTShape.cpp38 uint32_t NativeTypeVTShape::getCount() const { return Record.Slots.size(); } in getCount()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DFixupStatepointCallerSaved.cpp206 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 DLiveDebugVariables.cpp1276 SlotIndexes *Slots = LIS->getSlotIndexes(); in runOnMachineFunction() local
1282 SlotIndex SI = Slots->getMBBStartIdx(MBB); in runOnMachineFunction()
1831 auto Slots = LIS->getSlotIndexes(); in emitDebugValues() local
1840 MachineBasicBlock *OrigMBB = Slots->getMBBFromIndex(Slot); in emitDebugValues()
1922 if (Idx == Slots->getMBBStartIdx(MBB)) { in emitDebugValues()
1929 if (MachineInstr *Pos = Slots->getInstructionFromIndex(Idx)) { in emitDebugValues()
1937 SlotIndex End = Slots->getMBBEndIdx(MBB); in emitDebugValues()
1938 for (; Idx < End; Idx = Slots->getNextNonNullIndex(Idx)) { in emitDebugValues()
1939 Pos = Slots->getInstructionFromIndex(Idx); in emitDebugValues()
H A DLiveIntervals.cpp910 ArrayRef<SlotIndex> Slots; in checkRegMaskInterference() local
913 Slots = getRegMaskSlotsInBlock(MBB->getNumber()); in checkRegMaskInterference()
916 Slots = getRegMaskSlots(); in checkRegMaskInterference()
922 ArrayRef<SlotIndex>::iterator SlotI = llvm::lower_bound(Slots, LiveI->start); in checkRegMaskInterference()
923 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in checkRegMaskInterference()
946 unionBitMask(SlotI - Slots.begin()); in checkRegMaskInterference()
954 unionBitMask(SlotI++ - Slots.begin()); in checkRegMaskInterference()
H A DLiveInterval.cpp800 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 DRegisterCoalescer.cpp3706 const SlotIndexes &Slots = *LIS->getSlotIndexes(); in buildVRegToDbgValueMap() local
3726 SlotIndex CurrentSlot = Slots.getMBBStartIdx(&MBB); in buildVRegToDbgValueMap()
3735 CurrentSlot = Slots.getInstructionIndex(MI); in buildVRegToDbgValueMap()
3741 CloseNewDVRange(Slots.getMBBEndIdx(&MBB)); in buildVRegToDbgValueMap()
4134 SlotIndexes *Slots = LIS->getSlotIndexes(); in runOnMachineFunction() local
4139 SlotIndex SI = Slots->getMBBStartIdx(MBB); in runOnMachineFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h557 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
/openbsd-src/gnu/llvm/llvm/lib/Target/Sparc/
H A DSparcRegisterInfo.td43 // 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.
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveInterval.h597 bool isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const;
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp1691 SDValue Slots[4]; in constBufferLoad() local
1700 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr); in constBufferLoad()
1708 SDValue Result = DAG.getBuildVector(NewVT, DL, ArrayRef(Slots, NumElements)); in constBufferLoad()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.h1280 void findStackIndexInterference(SmallVectorImpl<unsigned> &Slots);
H A DInstrRefBasedImpl.cpp2465 SmallVectorImpl<unsigned> &Slots) { in findStackIndexInterference() argument
2479 Slots.push_back(It->second); in findStackIndexInterference()
2486 Slots.push_back(Pair.second); in findStackIndexInterference()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp557 IO.mapRequired("Slots", Record.Slots); in map()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2114 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near); in lowerTypeVFTableShape() local
2116 VFTableShapeRecord VFTSR(Slots); in lowerTypeVFTableShape()

12