Home
last modified time | relevance | path

Searched full:indexes (Results 1 – 25 of 600) sorted by relevance

12345678910>>...24

/freebsd-src/sys/contrib/device-tree/include/dt-bindings/power/
H A Dqcom-rpmpd.h7 /* SA8775P Power Domain Indexes */
26 /* SDM670 Power Domain Indexes */
36 /* SDM845 Power Domain Indexes */
47 /* SDX55 Power Domain Indexes */
52 /* SDX65 Power Domain Indexes */
60 /* SM6350 Power Domain Indexes */
68 /* SM6350 Power Domain Indexes */
80 /* SM8150 Power Domain Indexes */
102 /* SM8250 Power Domain Indexes */
114 /* SM8350 Power Domain Indexes */
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp171 void Symtab::Dump(Stream *s, Target *target, std::vector<uint32_t> &indexes, in Dump()
178 s->Printf("Symtab %" PRIu64 " symbol indexes (%" PRIu64 " symbols total):\n", in Dump()
179 (uint64_t)indexes.size(), (uint64_t)m_symbols.size()); in Dump()
182 if (!indexes.empty()) { in Dump()
184 std::vector<uint32_t>::const_iterator end = indexes.end();
186 for (pos = indexes.begin(); pos != end; ++pos) { in DumpSymbolHeader()
471 void Symtab::AppendSymbolNamesToMap(const IndexCollection &indexes, in AppendSymbolNamesToMap()
479 const size_t num_indexes = indexes.size(); in AppendSymbolNamesToMap()
481 uint32_t value = indexes[i]; in AppendSymbolNamesToMap()
500 std::vector<uint32_t> &indexes, in AppendSymbolIndexesWithType()
159 Dump(Stream * s,Target * target,std::vector<uint32_t> & indexes,Mangled::NamePreference name_preference) const Dump() argument
459 AppendSymbolNamesToMap(const IndexCollection & indexes,bool add_demangled,bool add_mangled,NameToIndexMap & name_to_index_map) const AppendSymbolNamesToMap() argument
488 AppendSymbolIndexesWithType(SymbolType symbol_type,std::vector<uint32_t> & indexes,uint32_t start_idx,uint32_t end_index) const AppendSymbolIndexesWithType() argument
507 AppendSymbolIndexesWithTypeAndFlagsValue(SymbolType symbol_type,uint32_t flags_value,std::vector<uint32_t> & indexes,uint32_t start_idx,uint32_t end_index) const AppendSymbolIndexesWithTypeAndFlagsValue() argument
528 AppendSymbolIndexesWithType(SymbolType symbol_type,Debug symbol_debug_type,Visibility symbol_visibility,std::vector<uint32_t> & indexes,uint32_t start_idx,uint32_t end_index) const AppendSymbolIndexesWithType() argument
613 SortSymbolIndexesByValue(std::vector<uint32_t> & indexes,bool remove_duplicates) const SortSymbolIndexesByValue() argument
639 GetNameIndexes(ConstString symbol_name,std::vector<uint32_t> & indexes) GetNameIndexes() argument
669 AppendSymbolIndexesWithName(ConstString symbol_name,std::vector<uint32_t> & indexes) AppendSymbolIndexesWithName() argument
684 AppendSymbolIndexesWithName(ConstString symbol_name,Debug symbol_debug_type,Visibility symbol_visibility,std::vector<uint32_t> & indexes) AppendSymbolIndexesWithName() argument
709 AppendSymbolIndexesWithNameAndType(ConstString symbol_name,SymbolType symbol_type,std::vector<uint32_t> & indexes) AppendSymbolIndexesWithNameAndType() argument
728 AppendSymbolIndexesWithNameAndType(ConstString symbol_name,SymbolType symbol_type,Debug symbol_debug_type,Visibility symbol_visibility,std::vector<uint32_t> & indexes) AppendSymbolIndexesWithNameAndType() argument
747 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression & regexp,SymbolType symbol_type,std::vector<uint32_t> & indexes,Mangled::NamePreference name_preference) AppendSymbolIndexesMatchingRegExAndType() argument
770 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression & regexp,SymbolType symbol_type,Debug symbol_debug_type,Visibility symbol_visibility,std::vector<uint32_t> & indexes,Mangled::NamePreference name_preference) AppendSymbolIndexesMatchingRegExAndType() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveIntervalCalc.cpp32 static void createDeadDef(SlotIndexes &Indexes, VNInfo::Allocator &Alloc, in createDeadDef() argument
36 Indexes.getInstructionIndex(MI).getRegSlot(MO.isEarlyClobber()); in createDeadDef()
44 SlotIndexes *Indexes = getIndexes(); in calculate() local
47 assert(MRI && Indexes && "call reset() first"); in calculate()
71 [&MO, Indexes, Alloc](LiveInterval::SubRange &SR) { in calculate()
73 createDeadDef(*Indexes, *Alloc, SR, MO); in calculate()
75 *Indexes, TRI); in calculate()
81 createDeadDef(*Indexes, *Alloc, LI, MO); in calculate()
95 SubLIC.reset(MF, Indexes, DomTree, Alloc); in calculate()
125 SlotIndexes *Indexes = getIndexes(); in createDeadDefs() local
[all …]
H A DLiveRangeCalc.cpp55 Indexes = SI; in reset()
70 std::tie(Start, End) = Indexes->getMBBRange(MBB); in updateFromLiveIns()
90 assert(Indexes && "Missing SlotIndexes"); in extend()
93 MachineBasicBlock *UseMBB = Indexes->getMBBFromIndex(Use.getPrevSlot()); in extend()
97 auto EP = LR.extendInBlock(Undefs, Indexes->getMBBStartIdx(UseMBB), Use); in extend()
116 assert(Indexes && "Missing SlotIndexes"); in calculateValues()
154 std::tie(Begin, End) = Indexes->getMBBRange(&B); in isDefOnEntry()
214 const MachineInstr *MI = Indexes->getInstructionFromIndex(Use); in findReachingDefs()
248 std::tie(Start, End) = Indexes->getMBBRange(Pred); in findReachingDefs()
289 std::tie(Start, End) = Indexes->getMBBRange(BN); in findReachingDefs()
[all …]
H A DSlotIndexes.cpp1 //===-- SlotIndexes.cpp - Slot Indexes Pass ------------------------------===//
32 OS << "Slot indexes in machine function: " << MF.getName() << '\n';
70 // iterator in lock-step (though skipping it over indexes which have in runOnMachineFunction()
137 assert(MIEntry.getInstr() == &MI && "Instruction indexes broken."); in removeSingleMachineInstrFromMaps()
139 // FIXME: Eventually we want to actually delete these indexes. in removeSingleMachineInstrFromMaps()
150 assert(MIEntry.getInstr() == &MI && "Instruction indexes broken."); in removeSingleMachineInstrFromMaps()
165 // FIXME: Eventually we want to actually delete these indexes. in renumberIndexes()
170 // Renumber indexes locally after curItr was inserted, but failed to get a new in renumberIndexes()
173 // Number indexes with half the default spacing so we can catch up quickly. in renumberIndexes()
190 // Repair indexes afte in repairIndexesInRange()
[all...]
H A DRegAllocPriorityAdvisor.h35 SlotIndexes *const Indexes);
44 SlotIndexes *const Indexes; variable
52 SlotIndexes *const Indexes) in DefaultPriorityAdvisor() argument
53 : RegAllocPriorityAdvisor(MF, RA, Indexes) {} in DefaultPriorityAdvisor()
H A DInterferenceCache.h59 /// Indexes - Mapping block numbers to SlotIndex ranges.
60 SlotIndexes *Indexes = nullptr; variable
103 void clear(MachineFunction *mf, SlotIndexes *indexes, LiveIntervals *lis) { in clear() argument
107 Indexes = indexes; in clear()
169 SlotIndexes *indexes, LiveIntervals *lis,
H A DLiveIntervals.cpp87 LIS.Indexes = &getAnalysis<SlotIndexesWrapperPass>().getSI(); in getAnalysisUsage()
194 MF->print(OS, Indexes); in computeVirtRegInterval()
245 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB)); in computeRegMasks()
254 RegMaskSlots.push_back(Indexes->getMBBStartIdx(&MBB)); in computeRegMasks()
262 RegMaskSlots.push_back(Indexes->getInstructionIndex(MI).getRegSlot());
273 Indexes->getInstructionIndex(MBB.back()).getRegSlot()); in computeRegUnitRange()
354 SlotIndex Begin = Indexes->getMBBStartIdx(&MBB); in createSegmentsForValues()
417 const MachineBasicBlock *MBB = Indexes->getMBBFromIndex(Idx.getPrevSlot()); in extendSegmentsToUses()
418 SlotIndex BlockStart = Indexes->getMBBStartIdx(MBB); in extendSegmentsToUses()
432 SlotIndex Stop = Indexes in extendSegmentsToUses()
1466 SlotIndexes *Indexes = LIS.getSlotIndexes(); findLastUseBefore() local
[all...]
H A DVirtRegMap.cpp188 SlotIndexes *Indexes = nullptr; member in __anonfc12b2e70111::VirtRegRewriter
261 Indexes = &getAnalysis<SlotIndexesWrapperPass>().getSI(); in runOnMachineFunction()
315 for (SlotIndexes::MBBIndexIterator MBBI = Indexes->getMBBLowerBound(First); in addLiveInsForSubRanges()
316 MBBI != Indexes->MBBIndexEnd() && MBBI->first <= Last; ++MBBI) { in addLiveInsForSubRanges()
363 // sorted by slot indexes. in addMBBLiveIns()
364 SlotIndexes::MBBIndexIterator I = Indexes->MBBIndexBegin(); in addMBBLiveIns()
366 I = Indexes->getMBBLowerBound(I, Seg.start); in addMBBLiveIns()
367 for (; I != Indexes->MBBIndexEnd() && I->first < Seg.end; ++I) { in addMBBLiveIns()
434 if (Indexes) in handleIdentityCopy()
435 Indexes in handleIdentityCopy()
[all...]
H A DMachineBasicBlock.cpp343 void MachineBasicBlock::print(raw_ostream &OS, const SlotIndexes *Indexes, in print()
355 print(OS, MST, Indexes, IsStandalone); in print()
359 const SlotIndexes *Indexes, in print()
368 if (Indexes && PrintSlotIndexes) in print()
369 OS << Indexes->getMBBStartIdx(this) << '\t'; in print()
381 if (Indexes) OS << '\t'; in print()
392 if (Indexes) OS << '\t'; in print()
423 if (Indexes) OS << '\t'; in print()
440 if (Indexes && PrintSlotIndexes) { in print()
441 if (Indexes in print()
337 print(raw_ostream & OS,const SlotIndexes * Indexes,bool IsStandalone) const print() argument
353 print(raw_ostream & OS,ModuleSlotTracker & MST,const SlotIndexes * Indexes,bool IsStandalone) const print() argument
1105 SlotIndexes *Indexes; global() member in SlotIndexUpdateDelegate
1109 SlotIndexUpdateDelegate(MachineFunction & MF,SlotIndexes * Indexes) SlotIndexUpdateDelegate() argument
1160 SlotIndexes *Indexes = P.getAnalysisIfAvailable<SlotIndexes>(); SplitCriticalEdge() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVSupport.cpp75 LexicalIndexes Indexes; in getAllLexicalIndexes() local
79 LexicalEntry Entry = Indexes.back(); in getAllLexicalIndexes()
105 Indexes.push_back(LexicalEntry(Current, Index - 2)); in getAllLexicalIndexes()
115 Indexes.push_back(LexicalEntry(Current, Length - 1)); in getAllLexicalIndexes()
117 return Indexes; in getAllLexicalIndexes()
124 LexicalIndexes Indexes = getAllLexicalIndexes(Name); in getInnerComponent() local
125 if (Indexes.size() == 1) in getInnerComponent()
128 LexicalEntry BeginEntry = Indexes.front(); in getInnerComponent()
129 LexicalEntry EndEntry = Indexes[Indexes.size() - 2]; in getInnerComponent()
133 LexicalEntry LastEntry = Indexes.back(); in getInnerComponent()
[all …]
/freebsd-src/contrib/llvm-project/clang/include/clang/Index/
H A DIndexingAction.h35 /// Creates an ASTConsumer that indexes all symbols (macros and AST decls).
48 /// Creates a frontend action that indexes all symbols (macros and AST decls).
53 /// Recursively indexes all decls in the AST.
57 /// Recursively indexes \p Decls.
62 /// Creates a PPCallbacks that indexes macros and feeds macros to \p Consumer.
67 /// Recursively indexes all top-level decls in the module.
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h47 void Dump(Stream *s, Target *target, std::vector<uint32_t> &indexes,
65 std::vector<uint32_t> &indexes,
70 std::vector<uint32_t> &indexes, uint32_t start_idx = 0,
94 std::vector<uint32_t> &indexes,
99 std::vector<uint32_t> &indexes,
126 void SortSymbolIndexesByValue(std::vector<uint32_t> &indexes,
133 void AppendSymbolNamesToMap(const IndexCollection &indexes,
328 /// names lazily, rather than adding them to the normal symbol indexes. This
329 /// function does the job of first consulting the name indexes, and if that
335 /// @param[out] indexes The vector if symbol indexes to update with results.
[all …]
/freebsd-src/crypto/openssl/crypto/bn/
H A Dbn_ctx.c48 /* Array of indexes into the bignum stack */
49 unsigned int *indexes; member
100 while (bnidx++ < stack->indexes[fpidx]) in ctxdbg()
252 st->indexes = NULL; in BN_STACK_init()
258 OPENSSL_free(st->indexes); in BN_STACK_finish()
259 st->indexes = NULL; in BN_STACK_finish()
276 memcpy(newitems, st->indexes, sizeof(*newitems) * st->depth); in BN_STACK_push()
277 OPENSSL_free(st->indexes); in BN_STACK_push()
278 st->indexes = newitems; in BN_STACK_push()
281 st->indexes[(st->depth)++] = idx; in BN_STACK_push()
[all …]
/freebsd-src/contrib/llvm-project/lldb/bindings/interface/
H A DSBValueDocstrings.i57 Classes reserve the first indexes for base classes that have
66 negative indexes. If the pointer points to an aggregate type
68 transparently skipped and any children are going to be the indexes
81 index and will returns invalid child values for indexes that are
83 case the array can create 'synthetic' child values for indexes
85 indexes.
97 for pointers and arrays for indexes that normally wouldn't
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveIntervals.h62 SlotIndexes *Indexes = nullptr;
79 /// MI = Indexes->getInstructionFromIndex(RegMaskSlot[N]);
103 : Indexes(&SI), DomTree(&DT) {
228 SlotIndexes *getSlotIndexes() const { return Indexes; } in getInstructionIndex()
233 return !Indexes->hasIndex(Instr); in getInstructionFromIndex()
238 return Indexes->getInstructionIndex(Instr); in getMBBStartIdx()
243 return Indexes->getInstructionFromIndex(index); in getMBBEndIdx()
248 return Indexes->getMBBStartIdx(mbb); in isLiveInToMBB()
253 return Indexes->getMBBEndIdx(mbb); in isLiveOutOfMBB()
265 return Indexes in insertMBBInMaps()
58 SlotIndexes *Indexes = nullptr; global() variable
[all...]
/freebsd-src/sys/contrib/zstd/lib/dictBuilder/
H A Ddivsufsort.h54 * @param num_indexes The length of secondary indexes array. (can be NULL)
55 * @param indexes The secondary indexes array. (can be NULL)
60 … char *T, unsigned char *U, int *A, int n, unsigned char * num_indexes, int * indexes, int openMP);
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSILowerSGPRSpills.cpp40 SlotIndexes *Indexes = nullptr; member in __anondd69e87d0111::SILowerSGPRSpills
87 ArrayRef<CalleeSavedInfo> CSI, SlotIndexes *Indexes, in insertCSRSaves() argument
116 if (Indexes) { in insertCSRSaves()
119 Indexes->insertMachineInstrInMaps(Inst); in insertCSRSaves()
131 SlotIndexes *Indexes, LiveIntervals *LIS) { in insertCSRRestores() argument
156 if (Indexes) { in insertCSRRestores()
158 Indexes->insertMachineInstrInMaps(Inst); in insertCSRRestores()
247 insertCSRSaves(*SaveBlock, CSI, Indexes, LIS); in spillCalleeSavedRegs()
254 insertCSRRestores(*RestoreBlock, CSI, Indexes, LIS); in spillCalleeSavedRegs()
317 Indexes in runOnMachineFunction()
[all...]
H A DSILowerWWMCopies.cpp55 SlotIndexes *Indexes; member in __anonb835ee080111::SILowerWWMCopies
108 Indexes = SIWrapper ? &SIWrapper->getSI() : nullptr; in runOnMachineFunction()
131 isSCCLiveAtMI(MI), Indexes); in runOnMachineFunction()
132 TII->restoreExec(MF, MBB, ++InsertPt, DL, RegForExecCopy, Indexes); in runOnMachineFunction()
H A DGCNRegPressure.h281 std::vector<SlotIndex> Indexes; in getLiveRegMap()
282 Indexes.reserve(std::distance(R.begin(), R.end())); in getLiveRegMap()
286 Indexes.push_back(After ? SI.getDeadSlot() : SI.getBaseIndex()); in getLiveRegMap()
288 llvm::sort(Indexes); in getLiveRegMap()
299 if (!LI.findIndexesLiveAt(Indexes, std::back_inserter(LiveIdxs))) in getLiveRegMap()
307 // constrain search for subranges by indexes live at main range in getLiveRegsAfter()
269 std::vector<SlotIndex> Indexes; getLiveRegMap() local
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp147 // Erasing a list of indexes from the vector should be done with decreasing in constrain()
148 // indexes. As IndexesToRemove is constructed with increasing values, we just in constrain()
480 // Contains all indexes in HashGroup that were already added to a in splitCloneGroups()
482 std::vector<char> Indexes; in splitCloneGroups() local
483 Indexes.resize(HashGroup.size()); in splitCloneGroups()
486 // Skip indexes that are already part of a CloneGroup. in splitCloneGroups()
487 if (Indexes[i]) in splitCloneGroups()
493 // We don't add i to Indexes because we never iterate back. in splitCloneGroups()
496 ++Indexes[i]; in splitCloneGroups()
500 // Skip indexes that are already part of a CloneGroup. in splitCloneGroups()
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFProperties.td4 def IgnoreIndexes: Property<"ignore-file-indexes", "Boolean">,
7 Desc<"Ignore indexes present in the object files and always index DWARF manually.">;
/freebsd-src/contrib/llvm-project/clang/lib/Headers/
H A Davx2intrin.h1970 /// forth. Indexes are offset by 4 (so 0 means index 4, and so forth).
3281 /// 256-bit vector of [8 x i32] in \a __a as specified by indexes in the
3299 /// A 256-bit vector of [8 x i32] containing indexes of values to use from
3339 /// the 256-bit vector of [8 x float] in \a __a as specified by indexes in
3357 /// A 256-bit vector of [8 x i32] containing indexes of values to use from
3958 /// indexes from the 128-bit vector of [4 x i32] in \a i. The 128-bit vector
3988 /// A 128-bit vector of [4 x i32] containing signed indexes into \a m. Only
3996 /// A literal constant scale factor for the indexes in \a i. Must be
4007 /// indexes from the 128-bit vector of [4 x i32] in \a i. The 256-bit vector
4037 /// A 128-bit vector of [4 x i32] containing signed indexes into \a m.
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h143 /// Used to convert any file indexes in the FunctionInfo data back into
163 /// This function will convert any string table indexes and file indexes
173 /// This function will convert any string table indexes and file indexes
184 /// This function will convert any string table indexes and file indexes
197 /// This function will convert any string table indexes into human readable
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegalizerInfo.h271 /// True iff the given types for the given pair of type indexes is one of the
276 /// True iff the given types for the given pair of type indexes is one of the
499 /// Use the given action when type indexes 0 and 1 is any type pair in the
507 /// Use the given action when type indexes 0 and 1 is any type pair in the
534 /// Use the given action when type indexes 0 and 1 are both in the given list.
543 /// Use the given action when type indexes 0 and 1 are both in their
555 /// Use the given action when type indexes 0, 1, and 2 are all in their
602 /// The instruction is legal when type indexes 0 and 1 is any type pair in the
620 /// The instruction is legal when type indexes 0 and 1 along with the memory
629 /// The instruction is legal when type indexes in legalForTypesWithMemDesc()
[all...]

12345678910>>...24