Home
last modified time | relevance | path

Searched defs:It (Results 1 – 25 of 348) sorted by relevance

12345678910>>...14

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DRecord.cpp31 auto It = FieldMap.find(FD); in getField() local
37 auto It = BaseMap.find(FD); in getBase() local
43 auto It = VirtualBaseMap.find(FD); in getVirtualBase() local
H A DFunction.cpp29 auto It = Params.find(Offset); in getParamDescriptor() local
37 auto It = std::lower_bound(SrcMap.begin(), SrcMap.end(), Elem{Offset, {}}, in getSource() local
H A DProgram.cpp88 auto It = GlobalIndices.find(VD); in getGlobal() local
95 auto It = GlobalIndices.find(P); in getGlobal() local
130 auto It = DummyParams.find(PD); in getOrCreateDummy() local
190 auto It = Funcs.find(F); in getFunction() local
214 auto It = Records.find(RD); in getOrCreateRecord() local
H A DEvalEmitter.cpp200 auto It = Locals.find(I); in emitGetPtrLocal() local
213 auto It = Locals.find(I); in emitGetLocal() local
227 auto It = Locals.find(I); in emitSetLocal() local
239 auto It = Locals.find(Local.Offset); in emitDestroy() local
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mca/
H A DCodeRegion.cpp43 auto It = ActiveRegions.find(Description); in beginRegion() local
75 auto It = ActiveRegions.begin(); in endRegion() local
89 auto It = ActiveRegions.find(Description); in endRegion() local
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DCoalescingBitVector.h86 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; ++It) in count() local
107 for (auto It = Other.Intervals.begin(), End = Other.Intervals.end(); in set() local
120 const auto It = Intervals.find(Index); in test() local
135 auto It = Intervals.find(Index); in reset() local
164 for (auto It = RHS.Intervals.begin(), End = RHS.Intervals.end(); variable
200 auto It = Intervals.find(OlapStart); in intersectWithComplement() local
357 auto It = const_iterator(UnderlyingIt); in find() local
377 for (auto It = Intervals.begin(), End = Intervals.end(); It != End; in print() local
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A DGraph.h213 auto It = NL.find(A); in begin() local
220 auto It = NL.find(A); in cbegin() local
229 auto It = NL.find(A); in end() local
235 auto It = NL.find(A); in cend() local
399 auto It = Vertices.find(I); in at() local
408 auto It = Vertices.find(I); in at() local
418 auto It = Edges.find(I); in at() local
427 auto It = Edges.find(I); in at() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600OptimizeVectorRegisters.cpp153 for (DenseMap<Register, unsigned>::iterator It = ToMerge->RegToChan.begin(), in tryMergeVector() local
193 for (DenseMap<Register, unsigned>::iterator It = RSI->RegToChan.begin(), in RebuildVector() local
220 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in RebuildVector() local
237 for (InstructionSetMap::iterator It = PreviousRegSeqByReg.begin(), in RemoveMI() local
242 for (InstructionSetMap::iterator It = PreviousRegSeqByUndefCount.begin(), in RemoveMI() local
268 for (MachineRegisterInfo::use_instr_iterator It = MRI->use_instr_begin(Reg), in areAllUsesSwizzeable() local
311 It = RSI.RegToChan.begin(), E = RSI.RegToChan.end(); It != E; ++It) { in trackRSI() local
340 It = MRI->def_instr_begin(Reg), E = MRI->def_instr_end(); in runOnMachineFunction() local
H A DAMDILCFGStructurizer.cpp321 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in getSCCNum() local
329 LoopLandInfoMap::const_iterator It = LLInfoMap.find(LoopRep); in getLoopLandInfo() local
344 MBBInfoMap::const_iterator It = BlockInfoMap.find(MBB); in isRetiredBlock() local
381 int AMDGPUCFGStructurizer::countActiveBlock(MBBVector::const_iterator It, in countActiveBlock()
543 MachineBasicBlock::succ_iterator It = MBB->succ_begin(); in getFalseBranch() local
574 for (MachineBasicBlock::iterator It = MBB->begin(); It != MBB->end(); in getLastDebugLocInBB() local
585 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getNormalBlockBranchInstr() local
594 for (MachineBasicBlock::reverse_iterator It = MBB->rbegin(), E = MBB->rend(); in getLoopendBlockBranchInstr() local
609 MachineBasicBlock::reverse_iterator It = MBB->rbegin(); in getReturnInstr() local
631 for (MachineBasicBlock::succ_iterator It = SrcMBB->succ_begin(), in cloneSuccessorList() local
[all …]
H A DR600MachineScheduler.cpp156 for (MachineInstr::mop_iterator It = SU->getInstr()->operands_begin(), in schedNode() local
315 for (std::vector<SUnit *>::reverse_iterator It = Q.rbegin(), E = Q.rend(); in PopInst() local
358 for (MachineInstr::mop_iterator It = MI->operands_begin(), in AssignSlot() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleContextTracker.cpp36 auto It = AllChildContext.find(Hash); in getChildContext() local
49 for (auto &It : AllChildContext) { in getHottestChildContext() local
95 for (auto &It : Node->getAllChildContext()) { in moveToChildContext() local
145 for (auto &It : AllChildContext) { in dump() local
164 auto It = AllChildContext.find(Hash); in getOrCreateChildContext() local
227 for (auto &It : CallerNode->getAllChildContext()) { in getIndirectCalleeContextSamplesFor() local
349 for (auto &It : CallerNode->getAllChildContext()) { in promoteMergeContextSamplesTree() local
398 for (auto &It : Node->getAllChildContext()) { in dump() local
555 for (auto &It : FromNode.getAllChildContext()) { in promoteMergeContextSamplesTree() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64CallingConvention.cpp68 auto &It = PendingMembers[0]; in finishStackBlock() local
91 for (auto &It : PendingMembers) { in finishStackBlock() local
166 for (auto &It : PendingMembers) { in CC_AArch64_Custom_Block() local
177 for (auto &It : PendingMembers) { in CC_AArch64_Custom_Block() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DRange.cpp24 auto It = llvm::upper_bound(Ranges, Range); in insert() local
39 auto It = std::partition_point( in contains() local
48 auto It = std::partition_point( in contains() local
58 auto It = std::partition_point( in getRangeThatContains() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DBlotMapVector.h80 typename MapTy::iterator It = Map.find(Key); in find() local
87 typename MapTy::const_iterator It = Map.find(Key); in find() local
97 typename MapTy::iterator It = Map.find(Key); in blot() local
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DMacroExpansionContext.cpp60 MacroExpansionContext::ExpansionRangeMap::iterator It; in MacroExpands() local
109 const auto It = ExpandedTokens.find_as(MacroExpansionLoc); in getExpandedText() local
122 const auto It = ExpansionRanges.find_as(MacroExpansionLoc); in getOriginalText() local
224 ExpansionMap::iterator It; in onTokenLexed() local
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A DSectionSizes.cpp21 for (const auto &It : Sizes.DebugSectionSizes) in getNameColumnWidth() local
30 for (const auto &It : Sizes.DebugSectionSizes) { in getSizeColumnWidth() local
60 for (const auto &It : Sizes.DebugSectionSizes) { in prettyPrintSectionSizes() local
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dfunc-id-helper.cpp26 auto It = FunctionAddresses.find(FuncId); in SymbolOrNumber() local
54 auto It = FunctionAddresses.find(FuncId); in FileLineAndColumn() local
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclLookups.h29 StoredDeclsMap::iterator It, End; variable
39 all_lookups_iterator(StoredDeclsMap::iterator It, in all_lookups_iterator()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp87 auto It = TargetCounts.find(CalleeSamples->getName()); in getInlineCandidates() local
190 for (auto &It : Profiles) { in run() local
215 for (auto &It : ProfileMap) { in run() local
H A DPseudoProbe.cpp26 auto It = GUID2FuncMAP.find(GUID); in getProbeFNameForGUID() local
289 auto It = Address2ProbesMap.find(Address); in printProbeForAddress() local
300 auto It = Address2ProbesMap.find(Address); in getCallProbeForAddr() local
319 auto It = GUID2FuncDescMap.find(GUID); in getFuncDescForGUID() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwiftErrorValueTracking.cpp29 auto It = VRegDefMap.find(Key); in getOrCreateVReg() local
53 auto It = VRegDefUses.find(Key); in getOrCreateVRegDefAt() local
68 auto It = VRegDefUses.find(Key); in getOrCreateVRegUseAt() local
266 for (auto It = Begin; It != End; ++It) { in preassignVRegs() local
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DPhiValues.cpp99 auto It = ReachableMap.find(OpDepthNumber); in processPhi() local
152 auto It = TrackedValues.find_as(V); in invalidateValue() local
172 auto It = NonPhiReachableMap.find(N); in print() local
H A DInstructionPrecedenceTracking.cpp79 auto It = FirstSpecialInsts.find(BB); in validate() local
98 for (auto &It : FirstSpecialInsts) in validateAll() local
H A DStackLifetime.cpp57 auto It = std::upper_bound(Instructions.begin() + ItBB->getSecond().first + 1, in isAliveAfter() local
109 auto It = AllocaNumbering.find(AI); in collectMarkers() local
169 auto It = BlockMarkerSet.find(II); in collectMarkers() local
254 for (auto &It : BBMarkers[BB]) { in calculateLiveIntervals() local
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DFileIndexRecord.cpp35 auto It = llvm::upper_bound(Decls, Info); in addOccurrence() local
54 auto It = in removeHeaderGuardMacros() local

12345678910>>...14