Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DParser.cpp27 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument
35 M ? M->getContext() : Context, Slots) in parseAssemblyInto()
41 SlotMapping *Slots, in parseAssemblyInto() argument
43 return ::parseAssemblyInto(F, M, Index, Err, Slots, in parseAssemblyInto()
49 SlotMapping *Slots, in parseAssembly() argument
54 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, DataLayoutCallback)) in parseAssembly()
63 SlotMapping *Slots) { in parseAssemblyFile() argument
72 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots); in parseAssemblyFile()
77 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyWithIndex() argument
85 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex()
[all …]
H A DLLParser.cpp86 const SlotMapping *Slots) { in parseStandaloneConstantValue() argument
87 restoreParsingState(Slots); in parseStandaloneConstantValue()
99 const SlotMapping *Slots) { in parseTypeAtBeginning() argument
100 restoreParsingState(Slots); in parseTypeAtBeginning()
114 void LLParser::restoreParsingState(const SlotMapping *Slots) { in restoreParsingState() argument
115 if (!Slots) in restoreParsingState()
117 NumberedVals = Slots->GlobalValues; in restoreParsingState()
118 NumberedMetadata = Slots->MetadataNodes; in restoreParsingState()
119 for (const auto &I : Slots->NamedTypes) in restoreParsingState()
122 for (const auto &I : Slots->Types) in restoreParsingState()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
H A DParser.h47 SlotMapping *Slots = nullptr);
63 SlotMapping *Slots = nullptr);
87 SlotMapping *Slots = nullptr,
93 SlotMapping *Slots, DataLayoutCallbackTy DataLayoutCallback);
115 SlotMapping *Slots = nullptr,
129 SlotMapping *Slots = nullptr);
155 SlotMapping *Slots = nullptr,
167 const SlotMapping *Slots = nullptr);
175 const SlotMapping *Slots = nullptr);
185 const Module &M, const SlotMapping *Slots = nullptr);
H A DLLParser.h94 SlotMapping *Slots; variable
165 SlotMapping *Slots = nullptr)
167 Slots(Slots), BlockAddressPFS(nullptr) {} in Context()
172 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots);
175 const SlotMapping *Slots);
185 void restoreParsingState(const SlotMapping *Slots);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValue.h899 Use *Slots[MaxSlots]; in sortUseList() local
905 Slots[0] = UseList; in sortUseList()
918 if (!Slots[I]) in sortUseList()
925 Current = mergeUseLists(Slots[I], Current, Cmp); in sortUseList()
926 Slots[I] = nullptr; in sortUseList()
935 Slots[I] = Current; in sortUseList()
943 if (Slots[I]) in sortUseList()
946 UseList = mergeUseLists(Slots[I], UseList, Cmp); in sortUseList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h40 unsigned Slots, Weight; variable
46 Slots = s & ((1u << HEXAGON_PACKET_SIZE) - 1); in setUnits()
55 unsigned getUnits() const { return (Slots); } in getUnits()
H A DHexagonMCInstrInfo.cpp459 unsigned Slots = 0; in getOtherReservedSlots() local
470 Slots |= Units; in getOtherReservedSlots()
474 return Slots; in getOtherReservedSlots()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp481 ArrayRef<VFTableSlotKind> Slots = Record.getSlots(); in visitKnownRecord() local
482 Size = Slots.size(); in visitKnownRecord()
485 for (size_t SlotIndex = 0; SlotIndex < Slots.size(); SlotIndex += 2) { in visitKnownRecord()
486 uint8_t Byte = static_cast<uint8_t>(Slots[SlotIndex]) << 4; in visitKnownRecord()
487 if ((SlotIndex + 1) < Slots.size()) { in visitKnownRecord()
488 Byte |= static_cast<uint8_t>(Slots[SlotIndex + 1]); in visitKnownRecord()
497 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte & 0xF)); in visitKnownRecord()
499 Record.Slots.push_back(static_cast<VFTableSlotKind>(Byte >> 4)); in visitKnownRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h401 DenseMap<const VPValue *, unsigned> Slots; variable
414 auto I = Slots.find(V); in getSlot()
415 if (I == Slots.end()) in getSlot()
H A DVPlan.cpp1242 assert(Slots.find(V) == Slots.end() && "VPValue already has a slot!"); in assignSlot()
1243 Slots[V] = NextSlot++; in assignSlot()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DFixupStatepointCallerSaved.cpp205 SmallVector<int, 8> Slots; member
269 while (Line.Index < Line.Slots.size()) { in getFrameIndex()
270 int FI = Line.Slots[Line.Index++]; in getFrameIndex()
284 Line.Slots.push_back(FI); in getFrameIndex()
H A DLiveIntervals.cpp916 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 DLiveInterval.cpp814 bool LiveRange::isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const { in isLiveAtIndexes()
815 ArrayRef<SlotIndex>::iterator SlotI = Slots.begin(); in isLiveAtIndexes()
816 ArrayRef<SlotIndex>::iterator SlotE = Slots.end(); in isLiveAtIndexes()
H A DRegisterCoalescer.cpp3582 const SlotIndexes &Slots = *LIS->getSlotIndexes(); in buildVRegToDbgValueMap() local
3602 SlotIndex CurrentSlot = Slots.getMBBStartIdx(&MBB); in buildVRegToDbgValueMap()
3611 CurrentSlot = Slots.getInstructionIndex(MI); in buildVRegToDbgValueMap()
3617 CloseNewDVRange(Slots.getMBBEndIdx(&MBB)); in buildVRegToDbgValueMap()
H A DLiveDebugVariables.cpp1729 auto Slots = LIS->getSlotIndexes(); in emitDebugValues() local
1733 auto *MBB = Slots->getMBBFromIndex(Idx); in emitDebugValues()
H A DMachinePipeliner.cpp387 SlotIndexes &Slots = *getAnalysis<LiveIntervals>().getSlotIndexes(); in preprocessPhiNodes() local
408 Slots.insertMachineInstrInMaps(*Copy); in preprocessPhiNodes()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h556 explicit VFTableShapeRecord(ArrayRef<VFTableSlotKind> Slots) in VFTableShapeRecord() argument
557 : TypeRecord(TypeRecordKind::VFTableShape), SlotsRef(Slots) {} in VFTableShapeRecord()
558 explicit VFTableShapeRecord(std::vector<VFTableSlotKind> Slots) in VFTableShapeRecord() argument
559 : TypeRecord(TypeRecordKind::VFTableShape), Slots(std::move(Slots)) {} in VFTableShapeRecord()
564 return Slots; in getSlots()
570 std::vector<VFTableSlotKind> Slots; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeVTShape.cpp35 uint32_t NativeTypeVTShape::getCount() const { return Record.Slots.size(); } in getCount()
/netbsd-src/external/apache2/llvm/dist/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.
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DLiveInterval.h589 bool isLiveAtIndexes(ArrayRef<SlotIndex> Slots) const;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600ISelLowering.cpp1720 SDValue Slots[4]; in constBufferLoad() local
1729 Slots[i] = DAG.getNode(AMDGPUISD::CONST_ADDRESS, DL, MVT::i32, NewPtr); in constBufferLoad()
1737 SDValue Result = DAG.getBuildVector(NewVT, DL, makeArrayRef(Slots, NumElements)); in constBufferLoad()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp554 IO.mapRequired("Slots", Record.Slots); in map()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1988 SmallVector<VFTableSlotKind, 4> Slots(VSlotCount, VFTableSlotKind::Near); in lowerTypeVFTableShape() local
1990 VFTableShapeRecord VFTSR(Slots); in lowerTypeVFTableShape()
/netbsd-src/crypto/external/cpl/tpm-tools/dist/po/
H A Dtpm-tools.pot198 msgid "Slots present: %ld\n"
/netbsd-src/crypto/external/cpl/tpm-tools/dist/po_/
H A Dtpm-tools.pot198 msgid "Slots present: %ld\n"

12