Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h212 std::vector<StackObject> Objects; variable
352 bool hasStackObjects() const { return !Objects.empty(); } in hasStackObjects()
412 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; } in getObjectIndexEnd()
418 unsigned getNumObjects() const { return Objects.size(); } in getNumObjects()
423 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true; in mapLocalFrameObject()
466 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in isObjectPreAllocated()
468 return Objects[ObjectIdx+NumFixedObjects].PreAllocated; in isObjectPreAllocated()
473 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in getObjectSize()
475 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize()
480 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() && in setObjectSize()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A 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()
210 if (Objects.empty()) return; in print()
217 for (unsigned i = 0, e = Objects.size(); i != e; ++i) { in print()
218 const StackObject &SO = Objects[i]; in print()
H A DScheduleDAGInstrs.cpp132 UnderlyingObjectsVector &Objects, in getUnderlyingObjectsForInstr() argument
156 Objects.emplace_back(PSV, MayAlias); in getUnderlyingObjectsForInstr()
164 Objects.emplace_back(V, true); in getUnderlyingObjectsForInstr()
173 Objects.clear(); in getUnderlyingObjectsForInstr()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/
H A DLVReaderHandler.h42 ArgVector &Objects; variable
69 LVReaderHandler(ArgVector &Objects, ScopedPrinter &W, in LVReaderHandler() argument
71 : Objects(Objects), W(W), OS(W.getOStream()) { in LVReaderHandler()
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/
H A Dllvm-debuginfo-analyzer.cpp117 std::vector<std::string> Objects; in main() local
120 Objects.insert(Objects.end(), Objs.begin(), Objs.end()); in main()
125 LVReaderHandler ReaderHandler(Objects, W, ReaderOptions); in main()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp76 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; }); in lookupValueInfo()
77 if (It != Objects.end()) in lookupValueInfo()
86 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front())); in lookupValueInfo()
87 return &Objects.back(); in lookupValueInfo()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenHwModes.cpp44 std::vector<Record *> Objects = R->getValueAsListOfDefs("Objects"); in HwModeSelect() local
45 if (Modes.size() != Objects.size()) { in HwModeSelect()
55 Items.push_back(std::pair(ModeId, Objects[i])); in HwModeSelect()
/freebsd/sys/contrib/dev/acpica/components/events/
H A Devregion.c1025 ACPI_OBJECT Objects[2]; in AcpiEvExecuteOrphanRegMethod() local
1071 Args.Pointer = Objects; in AcpiEvExecuteOrphanRegMethod()
1072 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
1073 Objects[0].Integer.Value = SpaceId; in AcpiEvExecuteOrphanRegMethod()
1074 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
1075 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvExecuteOrphanRegMethod()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A 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()
H A Ddbnames.c1057 Info->Objects++; in AcpiDbIntegrityWalk()
1093 Info.Nodes, Info.Objects); in AcpiDbCheckIntegrity()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp892 std::vector<std::string> Objects; in main() local
896 Objects.push_back(F); in main()
898 llvm::append_range(Objects, *DsymObjectsOrErr); in main()
906 for (StringRef Object : Objects) in main()
909 for (StringRef Object : Objects) in main()
912 for (StringRef Object : Objects) in main()
915 for (StringRef Object : Objects) in main()
918 for (StringRef Object : Objects) in main()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp628 ObjectPair Objects = ObjectsOrErr.get(); in getOrCreateModuleInfo() local
633 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) { in getOrCreateModuleInfo()
639 llvm::any_of(Objects.first->sections(), [](SectionRef Section) -> bool { in getOrCreateModuleInfo()
651 if (auto Err = loadDataForEXE(ReaderType, Objects.first->getFileName(), in getOrCreateModuleInfo()
667 *Objects.second, DWARFContext::ProcessDebugRelocations::Process, in getOrCreateModuleInfo()
670 createModuleInfo(Objects.first, std::move(Context), ModuleName); in getOrCreateModuleInfo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMemoryOpRemark.cpp357 SmallVector<Value *, 2> Objects; in visitPtr() local
358 getUnderlyingObjectsForCodeGen(Ptr, Objects); in visitPtr()
360 for (const Value *V : Objects) in visitPtr()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp914 SmallVector<const Value*, 4> Objects; in getModRefInfoForArgument() local
915 getUnderlyingObjects(A, Objects); in getModRefInfoForArgument()
918 if (!all_of(Objects, isIdentifiedObject) && in getModRefInfoForArgument()
920 !all_of(Objects, [&](const Value *V) { in getModRefInfoForArgument()
927 if (is_contained(Objects, GV)) in getModRefInfoForArgument()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp199 SmallVectorImpl<ValueType> &Objects) const;
527 SmallVectorImpl<ValueType> &Objects) const { in getUnderlyingObjects()
536 Objects.push_back(PSV); in getUnderlyingObjects()
548 Objects.push_back(UValue); in getUnderlyingObjects()
/freebsd/crypto/openssl/doc/man3/
H A DOBJ_nid2obj.pod111 Objects in OpenSSL can have a short name, a long name and a numerical
129 Objects which are not in the table have the NID value NID_undef.
131 Objects do not need to be in the internal tables to be processed,
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DComparisonCategories.h107 Objects; variable
/freebsd/sys/contrib/dev/acpica/include/
H A Dacdebug.h480 ACPI_OBJECT *Objects);
/freebsd/crypto/openssl/doc/man7/
H A Dprovider-object.pod53 Objects I<by value> can be used by anything that handles DER encoded
56 Objects I<by reference> need a higher level of cooperation from the
H A Dopenssl-threads.pod50 Objects are thread-safe
/freebsd/contrib/ntp/ntpsnmpd/
H A Dntpsnmpd-opts.def132 .%T Definitions of Managed Objects for Network Time Protocol Version 4: (NTPv4)
/freebsd/contrib/llvm-project/llvm/lib/DWP/
H A DDWP.cpp660 SmallVector<OwningBinary<object::ObjectFile>, 128> Objects; in write() local
661 Objects.reserve(Inputs.size()); in write()
675 Objects.push_back(std::move(*ErrOrObj)); in write()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h772 SmallVectorImpl<const Value *> &Objects,
778 SmallVectorImpl<Value *> &Objects);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/
H A DLVReaderHandler.cpp279 for (std::string &Object : Objects) { in createReaders()
/freebsd/contrib/libxo/doc/
H A Dformatting.rst128 string, it must be quoted, but numbers are not quoted. Objects are

12