Searched refs:Region (Results 26 - 50 of 80) sorted by relevance

1234

/freebsd-11-stable/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsopcode.c181 * PARAMETERS: ObjHandle - Region namespace node
572 ObjDesc->Region.Length = (UINT32) OperandDesc->Integer.Value;
581 ObjDesc->Region.Address = (ACPI_PHYSICAL_ADDRESS)
586 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
587 ObjDesc->Region.Length));
591 ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID;
630 * and OemTableId string of the Data Table Region declaration
693 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
694 ObjDesc->Region.Length = Table->Length;
697 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region
[all...]
H A Ddsargs.c513 if (ObjDesc->Region.Flags & AOPOBJ_DATA_VALID)
524 /* Get the Region node */
526 Node = ObjDesc->Region.Node;
544 Status = AcpiUtAddAddressRange (ObjDesc->Region.SpaceId,
545 ObjDesc->Region.Address, ObjDesc->Region.Length, Node);
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutdelete.c341 "***** Region %p\n", Object));
347 if (!(Object->Region.Node->Flags & ANOBJ_TEMPORARY))
349 AcpiUtRemoveAddressRange (Object->Region.SpaceId,
350 Object->Region.Node);
361 HandlerDesc = Object->Region.Handler;
374 *LastObjPtr = NextDesc->Region.Next;
380 LastObjPtr = &NextDesc->Region.Next;
381 NextDesc = NextDesc->Region.Next;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlan.cpp62 while (const VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block))
63 Block = Region->getEntry();
69 while (VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block))
70 Block = Region->getEntry();
77 while (const VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block))
78 Block = Region->getExit();
84 while (VPRegionBlock *Region = dyn_cast<VPRegionBlock>(Block))
85 Block = Region->getExit();
257 assert(!State->Instance && "Replicating a Region with non-null instance.");
560 else if (const VPRegionBlock *Region
636 dumpRegion(const VPRegionBlock *Region) argument
761 visitRegion(VPRegionBlock *Region, Old2NewTy &Old2New, InterleavedAccessInfo &IAI) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DRegionInfo.h66 class Region;
89 using RegionT = Region;
105 /// Marker class to iterate over the elements of a Region in flat mode.
116 /// Region.
133 /// The node can hold either a Region or a BasicBlock.
138 /// The parent Region of this RegionNode.
159 /// Get the parent Region of this RegionNode.
161 /// The parent Region is the Region this RegionNode belongs to. If for
164 /// pointing to the Region thi
893 class Region : public RegionBase<RegionTraits<Function>> { class in namespace:llvm
[all...]
H A DRegionIterator.h8 // This file defines the iterators to iterate over the elements of a Region.
33 /// the parent Region. Furthermore for BasicBlocks that start a subregion, a
85 assert(succ && "BB not in Region or entered subregion!");
95 // isExit - Is this the exit BB of the Region?
140 // The Region only has 1 successor.
162 /// The Flat Region iterator will iterate over all BasicBlock RegionNodes that
163 /// are contained in the Region and its subregions. This is close to a virtual
164 /// control flow graph of the Region.
313 RegionNodeGraphTraits(RegionNode, BasicBlock, Region);
314 RegionNodeGraphTraits(const RegionNode, BasicBlock, Region);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp70 assert(LocStart && "Region has no start location");
82 assert(LocEnd && "Region has no end location");
230 for (const auto &Region : SourceRegions) {
231 SourceLocation Loc = Region.getBeginLoc();
297 auto Region = CounterMappingRegion::makeSkipped( local
301 if (Region.LineStart >= FileLineRanges[*CovFileID].first &&
302 Region.LineEnd <= FileLineRanges[*CovFileID].second)
303 MappingRegions.push_back(Region);
310 for (const auto &Region : SourceRegions) {
311 assert(Region
571 SourceMappingRegion &Region = RegionStack.back(); local
775 SourceMappingRegion &Region = getRegion(); local
788 SourceMappingRegion &Region = getRegion(); local
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexcreate.c421 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "Region Type - %s (0x%X)\n",
452 ObjDesc->Region.SpaceId = SpaceId;
453 ObjDesc->Region.Address = 0;
454 ObjDesc->Region.Length = 0;
455 ObjDesc->Region.Node = Node;
456 ObjDesc->Region.Handler = NULL;
H A Dexdump.c277 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Region.SpaceId), "Space Id"},
278 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Region.Flags), "Flags"},
279 {ACPI_EXD_NODE, ACPI_EXD_OFFSET (Region.Node), "Parent Node"},
280 {ACPI_EXD_ADDRESS, ACPI_EXD_OFFSET (Region.Address), "Address"},
281 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Region.Length), "Length"},
282 {ACPI_EXD_HDLR_LIST,ACPI_EXD_OFFSET (Region.Handler), "Handler"},
283 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Region.Next), "Next"}
327 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (Field.RegionObj), "Region Object"},
336 {ACPI_EXD_POINTER, ACPI_EXD_OFFSET (BankField.RegionObj), "Region Object"},
367 {ACPI_EXD_RGN_LIST, ACPI_EXD_OFFSET (AddressSpace.RegionList), "Region Lis
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp162 // RegInfo - some properties of a Region.
165 RegInfo(Region *RegionIn) : R(RegionIn), HasBranch(false) {}
166 Region *R;
171 typedef DenseMap<Region *, DenseSet<Instruction *>> HoistStopMapTy;
183 Region *getParentRegion() {
185 Region *Parent = RegInfos[0].R->getParent();
208 Region *LastRegion = RegInfos.back().R;
245 CHRScope *split(Region *Boundary) {
259 DenseSet<Region *> TailRegionSet;
265 Region *Paren
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegion.h117 return llvm::all_of(Regions, [](const UniqueCodeRegion &Region) {
118 return Region->empty();
H A Dllvm-mca.cpp448 for (const std::unique_ptr<mca::CodeRegion> &Region : Regions) {
450 if (Region->empty())
455 if (Region->startLoc().isValid() || Region->endLoc().isValid()) {
456 TOF->os() << "\n[" << RegionIdx++ << "] Code Region";
457 StringRef Desc = Region->getDescription();
464 ArrayRef<MCInst> Insts = Region->getInstructions();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNIterativeScheduler.cpp112 OS << "Region to schedule ";
122 const Region *R,
149 BuildDAG(const Region &R, GCNIterativeScheduler &_Sch)
176 Region &Rgn;
181 OverrideLegacyStrategy(Region &R,
280 GCNIterativeScheduler::getSchedulePressure(const Region &R,
307 Region { Begin, End, NumRegionInstrs,
356 void GCNIterativeScheduler::setBestSchedule(Region &R,
363 void GCNIterativeScheduler::scheduleBest(Region &R) {
372 void GCNIterativeScheduler::scheduleRegion(Region
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DHotColdSplitting.h47 Function *extractColdRegion(const BlockSequence &Region,
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypeChecker.cpp160 const MemRegion *Region = C.getSVal(CE).getAsRegion(); local
161 if (!Region)
165 DynamicTypeInfo DynTypeInfo = getDynamicTypeInfo(State, Region);
199 reportTypeError(DynType, StaticType, Region, CE, C);
H A DMacOSKeychainAPIChecker.cpp42 SymbolRef Region; member in struct:__anon809::MacOSKeychainAPIChecker::AllocationState
46 Region(R) {}
50 Region == X.Region);
55 ID.AddPointer(Region);
125 R->markInteresting(AP.second->Region);
290 Report->markInteresting(AS->Region);
345 Report->markInteresting(AS->Region);
534 if (ReturnSymbol == I->second.Region)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp191 Region *ParentRegion;
271 bool doInitialization(Region *R, RGPassManager &RGM) override;
273 bool runOnRegion(Region *R, RGPassManager &RGM) override;
303 bool StructurizeCFG::doInitialization(Region *R, RGPassManager &RGM) {
317 Region *SubRegion = RN->getNodeAs<Region>();
327 Region *SubR = RN->getNodeAs<Region>();
336 ReversePostOrderTraversal<Region*> RPOT(ParentRegion);
389 BasicBlock *Exit = N->getNodeAs<Region>()
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsdump.c500 AcpiUtGetRegionName (ObjDesc->Region.SpaceId));
501 if (ObjDesc->Region.Flags & AOPOBJ_DATA_VALID)
504 ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
505 ObjDesc->Region.Length);
533 ObjDesc->CommonField.RegionObj->Region.Node));
540 ObjDesc->CommonField.RegionObj->Region.Node),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCTargetDesc.cpp150 uint64_t Region = Addr & ~uint64_t(0xfffffff); variable
151 Target = Region + Inst.getOperand(NumOps - 1).getImm();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp185 OutlineRegionInfo(ArrayRef<BasicBlock *> Region, argument
188 : Region(Region.begin(), Region.end()), EntryBlock(EntryBlock),
190 SmallVector<BasicBlock *, 8> Region; member in struct:__anon2600::FunctionOutliningMultiRegionInfo::OutlineRegionInfo
430 << "Region dominated by "
1005 SmallVector<BasicBlock *, 8> Region; local
1006 for (BasicBlock *BB : RegionInfo.Region) {
1007 Region.push_back(cast<BasicBlock>(VMap[BB]));
1015 Region, NewEntryBloc
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp176 json::Object Region{
181 Region["endColumn"] = adjustColumnPos(SM, R.getBegin());
183 Region["endLine"] = SM.getExpansionLineNumber(R.getEnd());
184 Region["endColumn"] = adjustColumnPos(
188 return Region;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp245 for (const auto &Region : Record.MappingRegions) {
246 Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count);
251 Function.pushRegion(Region, *ExecutionCount);
373 /// Emit a segment with the count from \p Region starting at \p StartLoc.
377 void startSegment(const CountedRegion &Region, LineColPair StartLoc,
380 (Region.Kind != CounterMappingRegion::SkippedRegion);
385 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount &&
392 Region.ExecutionCount, IsRegionEntry,
393 Region.Kind == CounterMappingRegion::GapRegion);
472 [&](const CountedRegion *Region) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionPrinter.cpp67 static std::string getGraphName(const RegionInfo *) { return "Region Graph"; }
86 Region *R = G->getRegionFor(destBB);
102 static void printRegionCluster(const Region &R, GraphWriter<RegionInfo *> &GW,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp165 const CounterMappingRegion &Region,
167 ExpansionSubViews.emplace_back(Region, std::move(View));
164 addExpansion( const CounterMappingRegion &Region, std::unique_ptr<SourceCoverageView> View) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h322 void pushRegion(CounterMappingRegion Region, uint64_t Count) { argument
325 CountedRegions.emplace_back(Region, Count);
372 const CountedRegion &Region; member in struct:llvm::coverage::ExpansionRecord
376 ExpansionRecord(const CountedRegion &Region, argument
378 : FileID(Region.ExpandedFileID), Region(Region), Function(Function) {}
688 // [Encoded Region Mapping Data]

Completed in 208 milliseconds

1234