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

/external/v8/src/compiler/
H A Dmemory-optimizer.h64 class AllocationState final : public ZoneObject {
66 static AllocationState const* Empty(Zone* zone) {
67 return new (zone) AllocationState();
69 static AllocationState const* Closed(AllocationGroup* group, Zone* zone) {
70 return new (zone) AllocationState(group);
72 static AllocationState const* Open(AllocationGroup* group, int size,
74 return new (zone) AllocationState(group, size, top);
84 AllocationState();
85 explicit AllocationState(AllocationGroup* group);
86 AllocationState(AllocationGrou
[all...]
H A Dmemory-optimizer.cc20 empty_state_(AllocationState::Empty(zone)),
58 MemoryOptimizer::AllocationState::AllocationState() function in class:v8::internal::compiler::MemoryOptimizer::AllocationState
61 MemoryOptimizer::AllocationState::AllocationState(AllocationGroup* group) function in class:v8::internal::compiler::MemoryOptimizer::AllocationState
64 MemoryOptimizer::AllocationState::AllocationState(AllocationGroup* group, function in class:v8::internal::compiler::MemoryOptimizer::AllocationState
68 bool MemoryOptimizer::AllocationState::IsNewSpaceAllocation() const {
72 void MemoryOptimizer::VisitNode(Node* node, AllocationState const* state) {
102 void MemoryOptimizer::VisitAllocate(Node* node, AllocationState cons
[all...]
/external/google-breakpad/src/client/
H A Dminidump_file_writer.h259 enum AllocationState { enum in class:google_breakpad::TypedMDRVA
267 AllocationState allocation_state_;
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp35 /// AllocationState is a part of the checker specific state together with the
37 struct AllocationState { struct in class:__anon1678::MacOSKeychainAPIChecker
42 AllocationState(const Expr *E, unsigned int Idx, SymbolRef R) : function in struct:__anon1678::MacOSKeychainAPIChecker::AllocationState
46 bool operator==(const AllocationState &X) const {
62 typedef std::pair<SymbolRef, const AllocationState*> AllocationPair;
156 /// corresponding AllocationState.
159 MacOSKeychainAPIChecker::AllocationState)
299 if (const AllocationState *AS = State->get<AllocatedData>(V)) {
354 const AllocationState *AS = State->get<AllocatedData>(ArgSM);
488 State = State->set<AllocatedData>(V, AllocationState(ArgExp
[all...]

Completed in 140 milliseconds