Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h213 std::vector<StackObject> Objects; variable
454 return Objects[ObjectIdx+NumFixedObjects].Size; in getObjectSize()
461 Objects[ObjectIdx+NumFixedObjects].Size = Size; in setObjectSize()
487 return Objects[ObjectIdx+NumFixedObjects].Alloca; in getObjectAllocation()
497 return Objects[ObjectIdx+NumFixedObjects].SPOffset; in getObjectOffset()
503 return Objects[ObjectIdx+NumFixedObjects].isZExt; in isObjectZExt()
509 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt; in setObjectZExt()
515 return Objects[ObjectIdx+NumFixedObjects].isSExt; in isObjectSExt()
698 return Objects[ObjectIdx+NumFixedObjects].StackID; in getStackID()
705 Objects[ObjectIdx+NumFixedObjects].StackID = ID; in setStackID()
[all …]
/freebsd-13.1/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()
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()
H A 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-13.1/contrib/llvm-project/clang/lib/AST/
H A 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-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A 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-13.1/sys/contrib/dev/acpica/components/events/
H A Devregion.c989 ACPI_OBJECT Objects[2]; in AcpiEvExecuteOrphanRegMethod() local
1035 Args.Pointer = Objects; in AcpiEvExecuteOrphanRegMethod()
1036 Objects[0].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
1037 Objects[0].Integer.Value = SpaceId; in AcpiEvExecuteOrphanRegMethod()
1038 Objects[1].Type = ACPI_TYPE_INTEGER; in AcpiEvExecuteOrphanRegMethod()
1039 Objects[1].Integer.Value = ACPI_REG_CONNECT; in AcpiEvExecuteOrphanRegMethod()
/freebsd-13.1/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.c1049 Info->Objects++; in AcpiDbIntegrityWalk()
1085 Info.Nodes, Info.Objects); in AcpiDbCheckIntegrity()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A 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-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DMemoryOpRemark.cpp352 SmallVector<Value *, 2> Objects; in visitPtr() local
353 getUnderlyingObjectsForCodeGen(Ptr, Objects); in visitPtr()
355 for (const Value *V : Objects) in visitPtr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A 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-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A 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-13.1/contrib/file/magic/Magdir/
H A Dxenix73 >0x1e leshort &0x120 Huge Objects Enabled
100 >0x1e leshort &0x102 Huge Objects Enabled
/freebsd-13.1/crypto/openssl/doc/man3/
H A 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-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A 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-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DComparisonCategories.h106 Objects; variable
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacdebug.h480 ACPI_OBJECT *Objects);
H A Daclocal.h1555 UINT32 Objects; member
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h409 SmallVectorImpl<const Value *> &Objects,
415 SmallVectorImpl<Value *> &Objects);
/freebsd-13.1/contrib/ntp/ntpsnmpd/
H A Dntpsnmpd-opts.def132 .%T Definitions of Managed Objects for Network Time Protocol Version 4: (NTPv4)
/freebsd-13.1/contrib/llvm-project/llvm/lib/DWP/
H A 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-13.1/contrib/libxo/doc/
H A Dformatting.rst128 string, it must be quoted, but numbers are not quoted. Objects are
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A 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()
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
6072 for (auto *Obj : Objects) { in updateImpl()
7660 SmallVector<Value *, 8> Objects; in categorizePtrValue() local
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp3554 std::vector<FrameObject> &Objects; member in __anonf00bf5cd0911::GroupBuilder
3557 GroupBuilder(std::vector<FrameObject> &Objects) : Objects(Objects) {} in GroupBuilder() argument
3566 Objects[Index].GroupIndex = NextGroupIndex; in EndCurrentGroup()
/freebsd-13.1/lib/libc/locale/
H A DDESIGN.xlocale29 Locale Objects

12