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

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h155 /// objects. Objects with differing stack IDs should not be merged or
212 std::vector<StackObject> Objects; member in class:llvm::MachineFrameInfo
216 /// Objects list, this is also the index to the 0th object in the list.
240 /// offsets for all of the fixed size objects, updating the Objects list
345 bool hasStackObjects() const { return !Objects.empty(); }
390 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; }
396 unsigned getNumObjects() const { return Objects.size(); }
401 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true;
444 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
446 return Objects[ObjectId
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFrameInfo.cpp56 Objects.push_back(StackObject(Size, Alignment, 0, false, IsSpillSlot, Alloca,
58 int Index = (int)Objects.size() - NumFixedObjects - 1;
68 int Index = (int)Objects.size() - NumFixedObjects - 1;
77 Objects.push_back(StackObject(0, Alignment, 0, false, false, Alloca, true));
79 return (int)Objects.size()-NumFixedObjects-1;
94 Objects.insert(Objects.begin(),
107 Objects.insert(Objects.begin(),
215 if (Objects
[all...]
H A DScheduleDAGInstrs.cpp129 UnderlyingObjectsVector &Objects,
153 Objects.push_back(UnderlyingObjectsVector::value_type(PSV, MayAlias));
161 Objects.push_back(UnderlyingObjectsVector::value_type(V, true));
170 Objects.clear();
127 getUnderlyingObjectsForInstr(const MachineInstr *MI, const MachineFrameInfo &MFI, UnderlyingObjectsVector &Objects, const DataLayout &DL) argument
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenHwModes.cpp33 std::vector<Record*> Objects = R->getValueAsListOfDefs("Objects"); local
34 if (Modes.size() != Objects.size()) {
36 " derived from HwModeSelect: the lists Modes and Objects should "
42 Items.push_back(std::make_pair(ModeId, Objects[i]));
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp74 Objects, [&](ValueInfo const &Info) { return Info.Kind == ValueKind; });
75 if (It != Objects.end())
84 Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front()));
85 return &Objects.back();
/freebsd-12-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c200 * Objects - Array of ACPI_OBJECTs to be deleted
212 ACPI_OBJECT *Objects)
219 switch (Objects[i].Type)
223 ACPI_FREE (Objects[i].Buffer.Pointer);
230 AcpiDbDeleteObjects (Objects[i].Package.Count,
231 Objects[i].Package.Elements);
235 ACPI_FREE (Objects[i].Package.Elements);
210 AcpiDbDeleteObjects( UINT32 Count, ACPI_OBJECT *Objects) argument
H A Ddbnames.c216 * Arguments for the Objects command
921 "Objects of type [%s] defined in the current ACPI Namespace:\n",
1049 Info->Objects++;
1084 AcpiOsPrintf ("Verified %u namespace nodes with %u Objects\n",
1085 Info.Nodes, Info.Objects);
/freebsd-12-stable/sys/contrib/dev/acpica/components/events/
H A Devregion.c988 ACPI_OBJECT Objects[2]; local
1034 Args.Pointer = Objects;
1035 Objects[0].Type = ACPI_TYPE_INTEGER;
1036 Objects[0].Integer.Value = ACPI_ADR_SPACE_EC;
1037 Objects[1].Type = ACPI_TYPE_INTEGER;
1038 Objects[1].Integer.Value = ACPI_REG_CONNECT;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.h87 std::vector<std::pair<SymbolDesc, StringRef>> Objects; member in class:llvm::symbolize::SymbolizableObjectFile
H A DSymbolize.cpp542 ObjectPair Objects = ObjectsOrErr.get(); local
547 if (auto CoffObject = dyn_cast<COFFObjectFile>(Objects.first)) {
556 Objects.first->getFileName(), Session)) {
571 DWARFContext::create(*Objects.second, nullptr,
573 return createModuleInfo(Objects.first, std::move(Context), ModuleName);
H A DSymbolizableObjectFile.cpp86 &Os = res->Objects;
204 auto &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
227 const auto &Symbols = Type == SymbolRef::ST_Function ? Functions : Objects;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp626 std::vector<std::string> Objects; local
629 Objects.insert(Objects.end(), Objs.begin(), Objs.end());
634 if (!all_of(Objects, [&](std::string Object) {
639 for (auto Object : Objects)
642 for (auto Object : Objects)
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DComparisonCategories.h105 Objects; member in class:clang::ComparisonCategoryType::ComparisonCategoryResult::ComparisonCategoryInfo
H A DExprCXX.h3322 ArrayRef<CleanupObject> Objects);
/freebsd-12-stable/sys/contrib/dev/acpica/include/
H A Dacdebug.h474 ACPI_OBJECT *Objects);
H A Daclocal.h1555 UINT32 Objects; member in struct:acpi_integrity_info
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DGlobalsModRef.cpp907 SmallVector<const Value*, 4> Objects; local
908 GetUnderlyingObjects(A, Objects, DL);
911 if (!all_of(Objects, isIdentifiedObject) &&
913 !all_of(Objects, [&](const Value *V) {
919 if (is_contained(Objects, GV))
H A DValueTracking.cpp3927 SmallVectorImpl<const Value *> &Objects,
3964 Objects.push_back(P);
4000 SmallVectorImpl<Value *> &Objects,
4024 Objects.clear();
4027 Objects.push_back(const_cast<Value *>(V));
3926 GetUnderlyingObjects(const Value *V, SmallVectorImpl<const Value *> &Objects, const DataLayout &DL, LoopInfo *LI, unsigned MaxLookup) argument
3999 getUnderlyingObjectsForCodeGen(const Value *V, SmallVectorImpl<Value *> &Objects, const DataLayout &DL) argument
H A DInstructionSimplify.cpp2477 auto IsNAC = [](ArrayRef<const Value *> Objects) {
2478 return all_of(Objects, isNoAliasCall);
2487 auto IsAllocDisjoint = [](ArrayRef<const Value *> Objects) {
2488 return all_of(Objects, [](const Value *V) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueTracking.h380 SmallVectorImpl<const Value *> &Objects,
387 SmallVectorImpl<Value *> &Objects,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp199 SmallVectorImpl<ValueType> &Objects) const;
530 SmallVectorImpl<ValueType> &Objects) const {
539 Objects.push_back(PSV);
551 Objects.push_back(UValue);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1032 // repeated in the Objects list.
1038 SmallVector<const Value *, 4> Objects; local
1039 GetUnderlyingObjects(V, Objects, DL, /* LI = */ nullptr);
1041 for (const Value *O : Objects)
H A DCodeExtractor.cpp1019 // Emit lifetime markers for the pointers given in \p Objects. Insert the
1021 auto insertMarkers = [&](Function *MarkerFunc, ArrayRef<Value *> Objects,
1023 for (Value *Mem : Objects) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjC.cpp151 Address Objects = CreateMemTemp(ElementArrayType, "objects"); local
168 LValue LV = MakeAddrLValue(Builder.CreateConstArrayGEP(Objects, i),
186 LValue ValueLV = MakeAddrLValue(Builder.CreateConstArrayGEP(Objects, i),
202 Args.add(RValue::get(Objects.getPointer()), ArgQT);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp844 CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) {
858 Objects.push_back(PublicSubobject);
843 getUnambiguousPublicSubobjects( CXXRecordDecl *RD, llvm::SmallVectorImpl<CXXRecordDecl *> &Objects) argument

Completed in 521 milliseconds