Home
last modified time | relevance | path

Searched refs:Begin (Results 1 - 25 of 239) sorted by relevance

12345678910

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DGCNIterativeScheduler.cpp61 MachineBasicBlock::iterator Begin, in printRegion()
66 auto BB = Begin->getParent(); in printRegion()
69 auto I = Begin; in printRegion()
92 MachineBasicBlock::iterator Begin, in printLivenessInfo()
95 const auto BB = Begin->getParent(); in printLivenessInfo()
98 const auto LiveIns = getLiveRegsBefore(*Begin, *LIS); in printLivenessInfo()
113 printRegion(OS, R->Begin, R->End, LIS, 1); in printRegions()
114 printLivenessInfo(OS, R->Begin, R->End, LIS); in printRegions()
125 printRegion(OS, R->Begin, R->End, LIS); in printSchedResult()
151 auto BB = R.Begin in BuildDAG()
60 printRegion(raw_ostream &OS, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, const LiveIntervals *LIS, unsigned MaxInstNum = std::numeric_limits<unsigned>::max()) printRegion() argument
91 printLivenessInfo(raw_ostream &OS, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, const LiveIntervals *LIS) printLivenessInfo() argument
248 getRegionPressure(MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End) const getRegionPressure() argument
299 enterRegion(MachineBasicBlock *BB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End, unsigned NumRegionInstrs) enterRegion() argument
[all...]
H A DGCNIterativeScheduler.h44 MachineBasicBlock::iterator Begin,
61 MachineBasicBlock::iterator Begin; member
85 GCNRegPressure getRegionPressure(MachineBasicBlock::iterator Begin,
89 return getRegionPressure(R.Begin, R.End); in getRegionPressure()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringExtras.h161 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
164 if (Begin == End) in join_impl()
167 S += (*Begin); in join_impl()
168 while (++Begin != End) { in join_impl()
170 S += (*Begin); in join_impl()
176 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
179 if (Begin == End) in join_impl()
182 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
183 for (IteratorT I = Begin; I != End; ++I) in join_impl()
184 Len += (*Begin) in join_impl()
232 join(IteratorT Begin, IteratorT End, StringRef Separator) join() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DParallel.h129 void parallel_for_each(IterTy Begin, IterTy End, FuncTy Fn) { in parallel_for_each() argument
134 ptrdiff_t TaskSize = std::distance(Begin, End) / 1024; in parallel_for_each()
139 while (TaskSize < std::distance(Begin, End)) { in parallel_for_each()
140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
141 Begin += TaskSize; in parallel_for_each()
143 std::for_each(Begin, End, Fn); in parallel_for_each()
147 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) { in parallel_for_each_n() argument
148 ptrdiff_t TaskSize = (End - Begin) / 1024; in parallel_for_each_n()
153 IndexTy I = Begin; in parallel_for_each_n()
183 for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) for_each() argument
190 for_each_n(Policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) for_each_n() argument
208 for_each(parallel_execution_policy policy, IterTy Begin, IterTy End, FuncTy Fn) for_each() argument
214 for_each_n(parallel_execution_policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) for_each_n() argument
[all...]
H A DBranchProbability.h62 static void normalizeProbabilities(ProbabilityIter Begin,
205 void BranchProbability::normalizeProbabilities(ProbabilityIter Begin, in normalizeProbabilities() argument
207 if (Begin == End) in normalizeProbabilities()
211 uint64_t Sum = std::accumulate(Begin, End, uint64_t(0), in normalizeProbabilities()
228 std::replace_if(Begin, End, in normalizeProbabilities()
237 BranchProbability BP(1, std::distance(Begin, End)); in normalizeProbabilities()
238 std::fill(Begin, End, BP); in normalizeProbabilities()
242 for (auto I = Begin; I != End; ++I) in normalizeProbabilities()
H A DFormatProviders.h403 auto Begin = V.begin();
405 if (Begin != End) {
407 detail::build_format_adapter(std::forward<reference>(*Begin));
409 ++Begin;
411 while (Begin != End) {
414 detail::build_format_adapter(std::forward<reference>(*Begin));
416 ++Begin;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DSlotIndexes.cpp179 MachineBasicBlock::iterator Begin, in repairIndexesInRange()
185 while (Begin != MBB->begin() && !hasIndex(*Begin)) in repairIndexesInRange()
186 --Begin; in repairIndexesInRange()
190 bool includeStart = (Begin == MBB->begin()); in repairIndexesInRange()
195 startIdx = getInstructionIndex(*Begin); in repairIndexesInRange()
211 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) { in repairIndexesInRange()
218 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart); in repairIndexesInRange()
222 if (MBBI != Begin) in repairIndexesInRange()
227 if (MBBI != Begin) in repairIndexesInRange()
178 repairIndexesInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End) repairIndexesInRange() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp230 auto Begin = Types.begin(); in fullScanForType() local
243 Begin = Types.at(Offset); in fullScanForType()
244 ++Begin; in fullScanForType()
248 while (Begin != End) { in fullScanForType()
252 Records[Idx].Type = *Begin; in fullScanForType()
253 Records[Idx].Offset = Begin.offset(); in fullScanForType()
255 ++Begin; in fullScanForType()
264 void LazyRandomTypeCollection::visitRange(TypeIndex Begin, uint32_t BeginOffset, in visitRange() argument
270 while (Begin != End) { in visitRange()
271 LargestTypeIndex = std::max(LargestTypeIndex, Begin); in visitRange()
[all...]
H A DDebugStringTableSubsection.cpp65 uint32_t Begin = Writer.getOffset(); in commit() local
66 uint32_t End = Begin + StringSize; in commit()
74 uint32_t Offset = Begin + Pair.getValue(); in commit()
82 assert((End - Begin) == StringSize); in commit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DFaultMaps.h174 const uint8_t *Begin = P + FunctionFaultInfosOffset + in getFunctionFaultInfoAt()
176 return FunctionFaultInfoAccessor(Begin, E); in getFunctionFaultInfoAt()
183 const uint8_t *Begin = P + MySize;
184 assert(Begin < E && "out of bounds!");
185 return FunctionInfoAccessor(Begin, E);
189 explicit FaultMapParser(const uint8_t *Begin, const uint8_t *End)
190 : P(Begin), E(End) {}
203 const uint8_t *Begin = P + FunctionInfosOffset;
204 return FunctionInfoAccessor(Begin, E);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringExtras.h298 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
301 if (Begin == End) in join_impl()
304 S += (*Begin); in join_impl()
305 while (++Begin != End) { in join_impl()
307 S += (*Begin); in join_impl()
313 inline std::string join_impl(IteratorT Begin, IteratorT End, in join_impl() argument
316 if (Begin == End) in join_impl()
319 size_t Len = (std::distance(Begin, End) - 1) * Separator.size(); in join_impl()
320 for (IteratorT I = Begin; I != End; ++I) in join_impl()
321 Len += (*Begin) in join_impl()
370 join(IteratorT Begin, IteratorT End, StringRef Separator) join() argument
[all...]
H A DBitVector.h206 /// [Begin, End). Returns -1 if all bits in the range are unset.
207 int find_first_in(unsigned Begin, unsigned End) const { in find_first_in() argument
208 assert(Begin <= End && End <= Size); in find_first_in()
209 if (Begin == End) in find_first_in()
212 unsigned FirstWord = Begin / BITWORD_SIZE; in find_first_in()
220 unsigned FirstBit = Begin % BITWORD_SIZE; in find_first_in()
235 /// [Begin, End). Returns -1 if all bits in the range are unset.
236 int find_last_in(unsigned Begin, unsigned End) const { in find_last_in() argument
237 assert(Begin <= End && End <= Size); in find_last_in()
238 if (Begin in find_last_in()
267 find_first_unset_in(unsigned Begin, unsigned End) const find_first_unset_in() argument
298 find_last_unset_in(unsigned Begin, unsigned End) const find_last_unset_in() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_bufmgr.cpp217 if (!range || range->Begin >= range->End) { in d3d12_bo_map()
218 offset_range.Begin = offset; in d3d12_bo_map()
222 offset_range.Begin = range->Begin + offset; in d3d12_bo_map()
230 return (uint8_t *)ptr + (range ? range->Begin : 0); in d3d12_bo_map()
242 if (!range || range->Begin >= range->End) { in d3d12_bo_unmap()
243 offset_range.Begin = offset; in d3d12_bo_unmap()
247 offset_range.Begin = range->Begin + offset; in d3d12_bo_unmap()
333 buf->range.Begin in d3d12_bufmgr_create_buffer()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/
H A DInstruction.h291 unsigned Begin; // Inclusive. member in llvm::mca::CycleSegment
297 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in CycleSegment()
299 bool contains(unsigned Cycle) const { return Cycle >= Begin && Cycle < End; } in contains()
300 bool startsAfter(const CycleSegment &CS) const { return End <= CS.Begin; } in startsAfter()
301 bool endsBefore(const CycleSegment &CS) const { return Begin >= CS.End; } in endsBefore()
305 bool isExecuting() const { return Begin == 0 && End != 0; } in isExecuting()
308 return Begin < Other.Begin; in operator <()
311 if (Begin) in operator --()
312 Begin in operator --()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceTargetLoweringX86.h28 Begin, enumerator
30 SSE2 = Begin,
47 static_assert((InstructionSetX86::End - InstructionSetX86::Begin) == in TargetX86()
56 InstructionSetX86::Begin); in TargetX86()
60 InstructionSetX86 InstructionSet = InstructionSetX86::Begin;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h123 /// Begin and end symbols for the address range that this location is valid.
124 const MCSymbol *Begin; member in llvm::DebugLocEntry
132 /// Create a location list entry for the range [\p Begin, \p End).
135 DebugLocEntry(const MCSymbol *Begin, const MCSymbol *End, in DebugLocEntry() argument
137 : Begin(Begin), End(End) { in DebugLocEntry()
147 if ((End == Next.Begin && Values == Next.Values)) { in MergeRanges()
154 const MCSymbol *getBeginSym() const { return Begin; } in getBeginSym()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
H A DMCSection.h59 MCSymbol *Begin; member in llvm::MCSection
104 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
115 MCSymbol *getBeginSymbol() { return Begin; } in getBeginSymbol()
120 assert(!Begin); in setBeginSymbol()
121 Begin = Sym; in setBeginSymbol()
H A DMCWinEH.h32 const MCSymbol *Begin = nullptr; member
51 : Begin(BeginFuncEHLabel), Function(Function) {} in FrameInfo()
54 : Begin(BeginFuncEHLabel), Function(Function), in FrameInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp94 void registerScope(MachineInstr *Begin, MachineInstr *End);
95 void registerTryScope(MachineInstr *Begin, MachineInstr *End,
97 void unregisterScope(MachineInstr *Begin);
178 void WebAssemblyCFGStackify::registerScope(MachineInstr *Begin, in registerScope() argument
180 BeginToEnd[Begin] = End; in registerScope()
181 EndToBegin[End] = Begin; in registerScope()
184 void WebAssemblyCFGStackify::registerTryScope(MachineInstr *Begin, in registerTryScope() argument
187 registerScope(Begin, End); in registerTryScope()
188 TryToEHPad[Begin] = EHPad; in registerTryScope()
189 EHPadToTry[EHPad] = Begin; in registerTryScope()
192 unregisterScope(MachineInstr *Begin) unregisterScope() argument
328 MachineInstr *Begin = placeBlockMarker() local
408 MachineInstr *Begin = BuildMI(MBB, InsertPos, MBB.findDebugLoc(InsertPos), placeLoopMarker() local
576 MachineInstr *Begin = placeTryMarker() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp106 BasicBlock *switchConvert(CaseItr Begin, CaseItr End,
249 LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, in switchConvert() argument
255 unsigned Size = End - Begin; in switchConvert()
262 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
265 fixPhis(Begin->BB, OrigBlock, Predecessor, NumMergedCases); in switchConvert()
266 return Begin->BB; in switchConvert()
268 return newLeafBlock(*Begin, Val, LowerBound, UpperBound, OrigBlock, in switchConvert()
273 std::vector<CaseRange> LHS(Begin, Begin in switchConvert()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatProviders.h394 auto Begin = V.begin();
396 if (Begin != End) {
398 detail::build_format_adapter(std::forward<reference>(*Begin));
400 ++Begin;
402 while (Begin != End) {
405 detail::build_format_adapter(std::forward<reference>(*Begin));
407 ++Begin;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCContext.cpp305 MCSymbol *Begin = nullptr; in getMachOSection()
307 Begin = createTempSymbol(BeginSymName, false); in getMachOSection()
311 Segment, Section, TypeAndAttributes, Reserved2, Kind, Begin); in getMachOSection()
455 MCSymbol *Begin = nullptr; in getCOFFSection()
457 Begin = createTempSymbol(BeginSymName, false); in getCOFFSection()
461 CachedName, Characteristics, COMDATSymbol, Selection, Kind, Begin); in getCOFFSection()
524 MCSymbol *Begin = createSymbol(CachedName, false, false); in getWasmSection() local
525 cast<MCSymbolWasm>(Begin)->setType(wasm::WASM_SYMBOL_TYPE_SECTION); in getWasmSection()
528 MCSectionWasm(CachedName, Kind, GroupSym, UniqueID, Begin); in getWasmSection()
534 Begin in getWasmSection()
557 MCSymbol *Begin = nullptr; getXCOFFSection() local
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dpipeline-statistics.cc20 void PipelineStatistics::CommonStats::Begin( in Begin() function in v8::internal::compiler::PipelineStatistics::CommonStats
62 total_stats_.Begin(this); in PipelineStatistics()
79 phase_kind_stats_.Begin(this); in BeginPhaseKind()
97 phase_stats_.Begin(this); in BeginPhase()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/
H A DAnnotations.h51 size_t Begin = 0; member
55 return std::tie(L.Begin, L.End) == std::tie(R.Begin, R.End); in operator ==()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp212 unsigned &Begin, unsigned &Width, MachineRegisterInfo &MRI);
222 uint16_t Begin);
224 uint16_t Begin, const HexagonInstrInfo &HII);
359 auto Begin = MRI.use_begin(OldR), End = MRI.use_end();
361 for (auto I = Begin; I != End; I = NextI) {
365 return Begin != End;
374 auto Begin = MRI.use_begin(OldR), End = MRI.use_end();
376 for (auto I = Begin; I != End; I = NextI) {
381 return Begin != End;
390 auto Begin
[all...]

Completed in 16 milliseconds

12345678910