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

/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h122 /// Objects - The list of stack objects allocated...
124 std::vector<StackObject> Objects; member in class:llvm::MachineFrameInfo
128 /// Objects list, this is also the index to the 0th object in the list.
146 /// offsets for all of the fixed size objects, updating the Objects list
247 bool hasStackObjects() const { return !Objects.empty(); }
284 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; }
291 unsigned getNumObjects() const { return Objects.size(); }
296 Objects[ObjectIndex + NumFixedObjects].PreAllocated = true;
339 assert(unsigned(ObjectIdx+NumFixedObjects) < Objects.size() &&
341 return Objects[ObjectId
[all...]
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DLeakDetector.cpp25 static ManagedStatic<LeakDetectorImpl<void> > Objects; variable
28 Objects->clear();
34 Objects->addGarbage(Object);
44 Objects->removeGarbage(Object);
57 Objects->setName("GENERIC");
61 if (Objects->hasGarbage(Message) |
/freebsd-10.0-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c90 * Objects - Array of ACPI_OBJECTs to be deleted
102 ACPI_OBJECT *Objects)
109 switch (Objects[i].Type)
113 ACPI_FREE (Objects[i].Buffer.Pointer);
120 AcpiDbDeleteObjects (Objects[i].Package.Count,
121 Objects[i].Package.Elements);
125 ACPI_FREE (Objects[i].Package.Elements);
100 AcpiDbDeleteObjects( UINT32 Count, ACPI_OBJECT *Objects) argument
H A Ddbnames.c103 * Arguments for the Objects command
624 "Objects of type [%s] defined in the current ACPI Namespace:\n",
714 Info->Objects++;
749 AcpiOsPrintf ("Verified %u namespace nodes with %u Objects\n",
750 Info.Nodes, Info.Objects);
/freebsd-10.0-release/sys/contrib/dev/acpica/components/events/
H A Devregion.c762 ACPI_OBJECT Objects[2]; local
808 Args.Pointer = Objects;
809 Objects[0].Type = ACPI_TYPE_INTEGER;
810 Objects[0].Integer.Value = ACPI_ADR_SPACE_EC;
811 Objects[1].Type = ACPI_TYPE_INTEGER;
812 Objects[1].Integer.Value = ACPI_REG_CONNECT;
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DValueTracking.h157 SmallVectorImpl<Value *> &Objects,
/freebsd-10.0-release/contrib/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h92 SymbolMapTy Objects; member in class:llvm::symbolize::ModuleInfo
H A DLLVMSymbolize.cpp73 SymbolMapTy &M = SymbolType == SymbolRef::ST_Function ? Functions : Objects;
82 const SymbolMapTy &M = Type == SymbolRef::ST_Function ? Functions : Objects;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DMachineFunction.cpp487 Objects.push_back(StackObject(Size, Alignment, 0, false, isSS, MayNeedSP,
489 int Index = (int)Objects.size() - NumFixedObjects - 1;
504 int Index = (int)Objects.size() - NumFixedObjects - 1;
518 Objects.push_back(StackObject(0, Alignment, 0, false, false, true, 0));
520 return (int)Objects.size()-NumFixedObjects-1;
539 Objects.insert(Objects.begin(), StackObject(Size, Align, SPOffset, Immutable,
627 if (Objects.empty()) return;
632 OS << "Frame Objects:\n";
634 for (unsigned i = 0, e = Objects
[all...]
H A DScheduleDAGInstrs.cpp92 SmallVectorImpl<Value *> &Objects) {
114 Objects.push_back(const_cast<Value *>(V));
124 SmallVectorImpl<std::pair<const Value *, bool> > &Objects) {
148 Objects.clear();
154 Objects.clear();
158 Objects.push_back(std::make_pair(V, MayAlias));
91 getUnderlyingObjects(const Value *V, SmallVectorImpl<Value *> &Objects) argument
122 getUnderlyingObjectsForInstr(const MachineInstr *MI, const MachineFrameInfo *MFI, SmallVectorImpl<std::pair<const Value *, bool> > &Objects) argument
/freebsd-10.0-release/sys/contrib/dev/acpica/include/
H A Dacdebug.h341 ACPI_OBJECT *Objects);
H A Daclocal.h1284 UINT32 Objects; member in struct:acpi_integrity_info
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp167 SmallVectorImpl<const Value *> &Objects) const;
468 SmallVectorImpl<const Value *> &Objects) const {
485 Objects.push_back(*I);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjC.cpp108 llvm::Value *Objects = CreateMemTemp(ElementArrayType, "objects"); local
125 LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
147 LValue ValueLV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
165 Args.add(RValue::get(Objects), ArgQT);
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DValueTracking.cpp1884 SmallVectorImpl<Value *> &Objects,
1909 Objects.push_back(P);
1883 GetUnderlyingObjects(Value *V, SmallVectorImpl<Value *> &Objects, const DataLayout *TD, unsigned MaxLookup) argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DExprCXX.h2844 ExprWithCleanups(Expr *SubExpr, ArrayRef<CleanupObject> Objects);

Completed in 214 milliseconds