Home
last modified time | relevance | path

Searched refs:AllocationState (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/
Dmemory-optimizer.h69 class AllocationState final : public ZoneObject {
71 static AllocationState const* Empty(Zone* zone) { in Empty()
72 return new (zone) AllocationState(); in Empty()
74 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) { in Closed()
75 return new (zone) AllocationState(group); in Closed()
77 static AllocationState const* Open(AllocationGroup* group, int size, in Open()
79 return new (zone) AllocationState(group, size, top); in Open()
89 AllocationState();
90 explicit AllocationState(AllocationGroup* group);
91 AllocationState(AllocationGroup* group, int size, Node* top);
[all …]
Dmemory-optimizer.cc22 empty_state_(AllocationState::Empty(zone)), in MemoryOptimizer()
63 MemoryOptimizer::AllocationState::AllocationState() in AllocationState() function in v8::internal::compiler::MemoryOptimizer::AllocationState
66 MemoryOptimizer::AllocationState::AllocationState(AllocationGroup* group) in AllocationState() function in v8::internal::compiler::MemoryOptimizer::AllocationState
69 MemoryOptimizer::AllocationState::AllocationState(AllocationGroup* group, in AllocationState() function in v8::internal::compiler::MemoryOptimizer::AllocationState
73 bool MemoryOptimizer::AllocationState::IsNewSpaceAllocation() const { in IsNewSpaceAllocation()
77 void MemoryOptimizer::VisitNode(Node* node, AllocationState const* state) { in VisitNode()
124 AllocationState const* state) { in VisitAllocateRaw()
209 state = AllocationState::Open(group, state_size, top, zone()); in VisitAllocateRaw()
266 state = AllocationState::Open(group, object_size, top, zone()); in VisitAllocateRaw()
310 state = AllocationState::Closed(group, zone()); in VisitAllocateRaw()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DMacOSKeychainAPIChecker.cpp37 struct AllocationState { struct in __anonbf99e1870111::MacOSKeychainAPIChecker
42 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) : in AllocationState() function
46 bool operator==(const AllocationState &X) const { in operator ==() argument
62 typedef std::pair<SymbolRef, const AllocationState*> AllocationPair;
159 MacOSKeychainAPIChecker::AllocationState) in REGISTER_MAP_WITH_PROGRAMSTATE() argument
291 if (const AllocationState *AS = State->get<AllocatedData>(V)) { in checkPreStmt()
346 const AllocationState *AS = State->get<AllocatedData>(ArgSM); in checkPreStmt()
480 State = State->set<AllocatedData>(V, AllocationState(ArgExpr, idx, in checkPostStmt()
597 const AllocationState *AS = N->getState()->get<AllocatedData>(Sym); in VisitNode()
600 const AllocationState *ASPrev = PrevN->getState()->get<AllocatedData>(Sym); in VisitNode()
/external/google-breakpad/src/client/
Dminidump_file_writer.h259 enum AllocationState { enum
267 AllocationState allocation_state_;