Home
last modified time | relevance | path

Searched refs:Objects (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DMachineFrameInfo.h213 std::vector<StackObject> Objects; variable
346 bool hasStackObjects() const { return !Objects.empty(); } in hasStackObjects()
391 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; } in getObjectIndexEnd()
397 unsigned getNumObjects() const { return Objects.size(); } in getNumObjects()
402 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true; in mapLocalFrameObject()
445 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in isObjectPreAllocated()
447 return Objects[ObjectIdx+NumFixedObjects].PreAllocated; in isObjectPreAllocated()
452 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in getObjectSize()
454 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize()
459 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in setObjectSize()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DMachineFrameInfo.cpp57 Objects.push_back(StackObject(Size, Alignment, 0, false, IsSpillSlot, Alloca, in CreateStackObject()
59 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateStackObject()
69 int Index = (int)Objects.size() - NumFixedObjects - 1; in CreateSpillStackObject()
78 Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca, true)); in CreateVariableSizedObject()
80 return (int)Objects.size()-NumFixedObjects-1; in CreateVariableSizedObject()
95 Objects.insert(Objects.begin(), in CreateFixedObject()
108 Objects.insert(Objects.begin(), in CreateFixedSpillStackObject()
213 if (Objects.empty()) return; in print()
220 for (unsigned i = 0, e = Objects.size(); i != e; ++i) { in print()
221 const StackObject &SO = Objects[i]; in print()
DScheduleDAGInstrs.cpp130 UnderlyingObjectsVector &Objects, in getUnderlyingObjectsForInstr() argument
154 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias)); in getUnderlyingObjectsForInstr()
162 Objects.push_back(UnderlyingObjectsVector::value_type(V, true)); in getUnderlyingObjectsForInstr()
171 Objects.clear(); in getUnderlyingObjectsForInstr()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DComparisonCategories.cpp75 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; }); in lookupValueInfo()
76 if (It != Objects.end()) in lookupValueInfo()
85 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo()
86 return &Objects.back(); in lookupValueInfo()
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
DCodeGenHwModes.cpp33 std::vector<Record*> Objects = R->getValueAsListOfDefs("Objects"); in HwModeSelect() local
34 if (Modes.size() != Objects.size()) { in HwModeSelect()
42 Items.push_back(std::make_pair(ModeId, Objects[i])); in HwModeSelect()
/freebsd-12-stable/sys/contrib/dev/acpica/components/events/
Devregion.c988 ACPI_OBJECT Objects[2]; in AcpiEvOrphanEcRegMethod() local
1034 Args.Pointer = Objects; in AcpiEvOrphanEcRegMethod()
1035 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvOrphanEcRegMethod()
1036 Objects[0].Integer.Value = ACPI_ADR_SPACE_EC; in AcpiEvOrphanEcRegMethod()
1037 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvOrphanEcRegMethod()
1038 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvOrphanEcRegMethod()
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
Ddbexec.c212 ACPI_OBJECT *Objects) in AcpiDbDeleteObjects() argument
219 switch (Objects[i].Type) in AcpiDbDeleteObjects()
223 ACPI_FREE (Objects[i].Buffer.Pointer); in AcpiDbDeleteObjects()
230 AcpiDbDeleteObjects (Objects[i].Package.Count, in AcpiDbDeleteObjects()
231 Objects[i].Package.Elements); in AcpiDbDeleteObjects()
235 ACPI_FREE (Objects[i].Package.Elements); in AcpiDbDeleteObjects()
Ddbnames.c1049 Info->Objects++; in AcpiDbIntegrityWalk()
1085 Info.Nodes, Info.Objects); in AcpiDbCheckIntegrity()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp682 std::vector<std::string> Objects; in main() local
685 llvm::append_range(Objects, Objs); in main()
690 for (auto Object : Objects) in main()
693 for (auto Object : Objects) in main()
696 for (auto Object : Objects) in main()
699 for (auto Object : Objects) in main()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DMemoryOpRemark.cpp352 SmallVector<Value *, 2> Objects; in visitPtr() local
353 getUnderlyingObjectsForCodeGen(Ptr, Objects); in visitPtr()
355 for (const Value *V : Objects) in visitPtr()
/freebsd-12-stable/contrib/binutils/libiberty/
Dobstacks.texi22 * Freeing Obstack Objects:: Freeing objects in an obstack.
25 * Growing Objects:: Making an object bigger by stages.
235 @node Freeing Obstack Objects
236 @section Freeing Objects in an Obstack
323 @node Growing Objects
324 @section Growing Objects
438 @section Extra Fast Growing Objects
704 more recently than @var{object}). @xref{Freeing Obstack Objects}.
708 @xref{Growing Objects}.
712 @xref{Growing Objects}.
[all …]
/freebsd-12-stable/contrib/gcclibs/libiberty/
Dobstacks.texi22 * Freeing Obstack Objects:: Freeing objects in an obstack.
25 * Growing Objects:: Making an object bigger by stages.
235 @node Freeing Obstack Objects
236 @section Freeing Objects in an Obstack
323 @node Growing Objects
324 @section Growing Objects
438 @section Extra Fast Growing Objects
704 more recently than @var{object}). @xref{Freeing Obstack Objects}.
708 @xref{Growing Objects}.
712 @xref{Growing Objects}.
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp578 ObjectPair Objects = ObjectsOrErr.get(); in getOrCreateModuleInfo() local
583 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) { in getOrCreateModuleInfo()
594 if (auto Err = loadDataForEXE(ReaderType, Objects.first->getFileName(), in getOrCreateModuleInfo()
609 Context = DWARFContext::create(*Objects.second, nullptr, Opts.DWPName); in getOrCreateModuleInfo()
610 return createModuleInfo(Objects.first, std::move(Context), ModuleName); in getOrCreateModuleInfo()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DGlobalsModRef.cpp919 SmallVector<const Value*, 4> Objects; in getModRefInfoForArgument() local
920 getUnderlyingObjects(A, Objects); in getModRefInfoForArgument()
923 if (!all_of(Objects, isIdentifiedObject) && in getModRefInfoForArgument()
925 !all_of(Objects, [&](const Value *V) { in getModRefInfoForArgument()
932 if (is_contained(Objects, GV)) in getModRefInfoForArgument()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dxenix73 >0x1e leshort &0x120 Huge Objects Enabled
100 >0x1e leshort &0x102 Huge Objects Enabled
/freebsd-12-stable/crypto/openssl/doc/man3/
DOBJ_nid2obj.pod101 Objects in OpenSSL can have a short name, a long name and a numerical
119 Objects which are not in the table have the NID value NID_undef.
121 Objects do not need to be in the internal tables to be processed,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsDelaySlotFiller.cpp199 SmallVectorImpl<ValueType> &Objects) const;
529 SmallVectorImpl<ValueType> &Objects) const { in getUnderlyingObjects()
538 Objects.push_back(PSV); in getUnderlyingObjects()
550 Objects.push_back(UValue); in getUnderlyingObjects()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DComparisonCategories.h106 Objects; variable
/freebsd-12-stable/sys/contrib/dev/acpica/include/
Dacdebug.h474 ACPI_OBJECT *Objects);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
DValueTracking.h409 SmallVectorImpl<const Value *> &Objects,
415 SmallVectorImpl<Value *> &Objects);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DWP/
DDWP.cpp568 SmallVector<OwningBinary<object::ObjectFile>, 128> Objects; in write() local
569 Objects.reserve(Inputs.size()); in write()
579 Objects.push_back(std::move(*ErrOrObj)); in write()
/freebsd-12-stable/contrib/ntp/ntpsnmpd/
Dntpsnmpd-opts.def132 .%T Definitions of Managed Objects for Network Time Protocol Version 4: (NTPv4)
/freebsd-12-stable/contrib/gdb/gdb/doc/
Dannotate.texinfo179 The @sc{gdb/mi} Variable Objects provide just that mechanism.
188 The @sc{gdb/mi} Variable Objects include a mechanism for efficiently
233 Variable Objects.}
509 provides Variable Objects.}
/freebsd-12-stable/contrib/libxo/doc/
Dformatting.rst128 string, it must be quoted, but numbers are not quoted. Objects are
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DAttributorAttributes.cpp394 SmallVectorImpl<Value *> &Objects, in getAssumedUnderlyingObjects() argument
400 SmallVectorImpl<Value *> &Objects, in getAssumedUnderlyingObjects()
403 Objects.push_back(&Val); in getAssumedUnderlyingObjects()
406 if (!genericValueTraversal<decltype(Objects)>( in getAssumedUnderlyingObjects()
407 A, IRPosition::value(Ptr), QueryingAA, Objects, VisitValueCB, CtxI, in getAssumedUnderlyingObjects()
5236 SmallVector<Value *, 8> Objects; in handleLoad() local
5237 if (!AA::getAssumedUnderlyingObjects(A, Ptr, Objects, AA, &L)) in handleLoad()
5240 for (Value *Obj : Objects) { in handleLoad()
6061 SmallVector<Value *, 8> Objects; in updateImpl() local
6062 if (!AA::getAssumedUnderlyingObjects(A, *DI.CB->getArgOperand(0), Objects, in updateImpl()
[all …]

123