HomeSort by relevance Sort by last modified time
    Searched refs:Slots (Results 1 - 10 of 10) sorted by null

  /external/llvm/include/llvm/AsmParser/
Parser.h 36 /// \param Slots The optional slot mapping that will be initialized during
41 SlotMapping *Slots = nullptr);
52 /// \param Slots The optional slot mapping that will be initialized during
57 SlotMapping *Slots = nullptr);
63 /// \param Slots The optional slot mapping that will be initialized during
67 SlotMapping *Slots = nullptr);
77 /// \param Slots The optional slot mapping that will be initialized during
81 SlotMapping *Slots = nullptr);
88 /// \param Slots The optional slot mapping that will restore the parsing state
92 const SlotMapping *Slots = nullptr)
    [all...]
  /external/llvm/lib/AsmParser/
Parser.cpp 26 SlotMapping *Slots) {
31 return LLParser(F.getBuffer(), SM, Err, &M, Slots).Run();
37 SlotMapping *Slots) {
41 if (parseAssemblyInto(F, *M, Err, Slots))
50 SlotMapping *Slots) {
59 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots);
65 SlotMapping *Slots) {
67 return parseAssembly(F, Err, Context, Slots);
71 const Module &M, const SlotMapping *Slots) {
77 .parseStandaloneConstantValue(C, Slots))
    [all...]
LLParser.h 94 SlotMapping *Slots;
144 SlotMapping *Slots = nullptr)
146 Slots(Slots), BlockAddressPFS(nullptr) {}
149 bool parseStandaloneConstantValue(Constant *&C, const SlotMapping *Slots);
164 void restoreParsingState(const SlotMapping *Slots);
LLParser.cpp 53 const SlotMapping *Slots) {
54 restoreParsingState(Slots);
65 void LLParser::restoreParsingState(const SlotMapping *Slots) {
66 if (!Slots)
68 NumberedVals = Slots->GlobalValues;
69 NumberedMetadata = Slots->MetadataNodes;
70 for (const auto &I : Slots->NamedTypes)
73 for (const auto &I : Slots->Types)
192 if (!Slots)
197 Slots->GlobalValues = std::move(NumberedVals)
    [all...]
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonShuffler.h 29 // Mask of the slots or units that may execute the insn and
31 unsigned Slots, Weight;
37 Slots = s & ~(~0U << HEXAGON_PACKET_SIZE);
41 unsigned getUnits() const { return (Slots); };
59 // Available HVX slots.
72 // Count of adjacent slots that the insn requires to be executed.
118 // Check if the handles are in ascending order by core slots.
122 // Check if the handles are in ascending order by HVX slots.
150 SHUFFLE_ERROR_STORES, ///< No free slots for store insns.
151 SHUFFLE_ERROR_LOADS, ///< No free slots for load insns
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 610 Use *Slots[MaxSlots];
616 Slots[0] = UseList;
629 if (!Slots[I])
634 // Since the uses in Slots[I] originally preceded those in Current, send
635 // Slots[I] in as the left parameter to maintain a stable sort.
636 Current = mergeUseLists(Slots[I], Current, Cmp);
637 Slots[I] = nullptr;
646 Slots[I] = Current;
654 if (Slots[I])
655 // Since the uses in Slots[I] originally preceded those in UseList, sen
    [all...]
  /external/llvm/lib/CodeGen/
LiveIntervalAnalysis.cpp 875 ArrayRef<SlotIndex> Slots;
878 Slots = getRegMaskSlotsInBlock(MBB->getNumber());
881 Slots = getRegMaskSlots();
885 // We are going to enumerate all the register mask slots contained in LI.
888 std::lower_bound(Slots.begin(), Slots.end(), LiveI->start);
889 ArrayRef<SlotIndex>::iterator SlotE = Slots.end();
891 // No slots in range, LI begins after the last call.
898 // Loop over all slots overlapping this segment.
908 UsableRegs.clearBitsNotInMask(Bits[SlotI-Slots.begin()])
    [all...]
  /external/llvm/lib/Target/AMDGPU/
R600ISelLowering.cpp     [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]

Completed in 633 milliseconds