Home
last modified time | relevance | path

Searched refs:Zone (Results 1 – 25 of 222) sorted by relevance

123456789

/external/v8/src/
Dzone.h37 class Zone {
39 explicit Zone(Isolate* isolate);
40 ~Zone();
132 INLINE(void* operator new(size_t size, Zone* zone));
143 void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } in delete()
151 explicit ZoneScope(Zone* zone) : zone_(zone) { } in ZoneScope()
154 Zone* zone() { return zone_; } in zone()
157 Zone* zone_;
165 explicit ZoneAllocationPolicy(Zone* zone) : zone_(zone) { } in ZoneAllocationPolicy()
168 Zone* zone() { return zone_; } in zone()
[all …]
Dhydrogen-removable-simulates.cc14 explicit State(Zone* zone) in State()
17 State* Process(HInstruction* instr, Zone* zone) { in Process()
83 Zone* zone) { in Merge()
89 static State* Finish(State* state, HBasicBlock* block, Zone* zone) { in Finish()
130 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) { in Copy()
143 Zone* zone) { in Merge()
156 Zone* zone_;
166 explicit Effects(Zone* zone) { } in Effects()
168 void Process(HInstruction* instr, Zone* zone) { } in Process()
170 void Union(Effects* that, Zone* zone) { } in Union()
Dzone.cc47 Zone::Zone(Isolate* isolate) in Zone() function in v8::internal::Zone
57 Zone::~Zone() { in ~Zone()
65 void* Zone::New(int size) { in New()
106 void Zone::DeleteAll() { in DeleteAll()
158 void Zone::DeleteKeptSegment() { in DeleteKeptSegment()
183 Segment* Zone::NewSegment(int size) { in NewSegment()
195 void Zone::DeleteSegment(Segment* segment, int size) { in DeleteSegment()
201 Address Zone::NewExpand(int size) { in NewExpand()
Dzone-inl.h27 bool Zone::excess_allocation() { in excess_allocation()
32 void Zone::adjust_segment_bytes_allocated(int delta) { in adjust_segment_bytes_allocated()
47 void* ZoneObject::operator new(size_t size, Zone* zone) { in new()
58 void* ZoneList<T>::operator new(size_t size, Zone* zone) { in new()
64 void* ZoneSplayTree<T>::operator new(size_t size, Zone* zone) { in new()
Deffects.h39 static Effect Unknown(Zone* zone) { in Unknown()
43 static Effect Forget(Zone* zone) { in Forget()
48 static Effect Seq(Effect e1, Effect e2, Zone* zone) { in Seq()
54 static Effect Alt(Effect e1, Effect e2, Zone* zone) { in Alt()
81 explicit EffectsMixin(Zone* zone) : Base(zone) {} in EffectsMixin()
176 explicit EffectsBase(Zone* zone) : map_(new(zone) Mapping(zone)) {} in EffectsBase()
185 Zone* zone() { return map_->allocator().zone(); } in zone()
226 explicit Effects(Zone* zone) in Effects()
235 explicit NestedEffectsBase(Zone* zone) : node_(new(zone) Node(zone)) {} in NestedEffectsBase()
255 Zone* zone() { return node_->zone; } in zone()
[all …]
Dinterface.h40 static Interface* NewUnknown(Zone* zone) { in NewUnknown()
54 static Interface* NewModule(Zone* zone) { in NewModule()
63 void Add(const AstRawString* name, Interface* interface, Zone* zone, in Add()
70 void Unify(Interface* that, Zone* zone, bool* ok);
139 Interface* Lookup(Handle<String> name, Zone* zone);
212 void DoAdd(const void* name, uint32_t hash, Interface* interface, Zone* zone,
214 void DoUnify(Interface* that, bool* ok, Zone* zone);
Dhydrogen-flow-engine.h18 explicit NoEffects(Zone* zone) { } in NoEffects()
27 inline void Process(HInstruction* value, Zone* zone) { in Process()
30 inline void Union(NoEffects* other, Zone* zone) { in Union()
39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) { in Copy()
42 inline NoState* Process(HInstruction* value, Zone* zone) { in Process()
45 inline NoState* Merge(HBasicBlock* succ, NoState* other, Zone* zone) { in Merge()
70 HFlowEngine(HGraph* graph, Zone* zone) in HFlowEngine()
208 Zone* zone_; // Temporary zone.
Dast.h209 void* operator new(size_t size, Zone* zone) { in new()
257 explicit Statement(Zone* zone, int position) : AstNode(position) {} in Statement()
267 SmallMapList(int capacity, Zone* zone) : list_(capacity, zone) {} in SmallMapList()
269 void Reserve(int capacity, Zone* zone) { list_.Reserve(capacity, zone); } in Reserve()
276 void AddMapIfMissing(Handle<Map> map, Zone* zone) { in AddMapIfMissing()
292 void Add(Handle<Map> handle, Zone* zone) { in Add()
383 Expression(Zone* zone, int pos, IdGen* id_gen) in Expression()
429 BreakableStatement(Zone* zone, ZoneList<const AstRawString*>* labels, in BreakableStatement()
453 void AddStatement(Statement* statement, Zone* zone) { in DECLARE_NODE_TYPE()
471 Block(Zone* zone, ZoneList<const AstRawString*>* labels, int capacity, in Block()
[all …]
Dscopes.h20 explicit VariableMap(Zone* zone);
32 Zone* zone() const { return zone_; } in zone()
35 Zone* zone_;
45 explicit DynamicScopePart(Zone* zone) { in DynamicScopePart()
76 AstValueFactory* value_factory, Zone* zone);
84 Zone* zone);
98 Zone* zone() const { return zone_; } in zone()
605 AstValueFactory* value_factory, Zone* zone);
610 AstValueFactory* value_factory, Zone* zone);
624 Zone* zone_;
Dzone-containers.h23 explicit ZoneVector(Zone* zone) in ZoneVector()
28 ZoneVector(int size, T def, Zone* zone) in ZoneVector()
38 explicit ZoneDeque(Zone* zone) in ZoneDeque()
48 explicit ZoneQueue(Zone* zone) in ZoneQueue()
Dlithium-allocator.h134 void SplitAt(LifetimePosition pos, Zone* zone);
194 LiveRange(int id, Zone* zone);
205 LOperand* CreateAssignedOperand(Zone* zone);
208 void set_assigned_register(int reg, Zone* zone);
209 void MakeSpilled(Zone* zone);
237 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
282 Zone* zone);
285 Zone* zone);
289 Zone* zone);
301 void ConvertOperands(Zone* zone);
[all …]
Dhydrogen-load-elimination.cc27 HFieldApproximation* Copy(Zone* zone) { in Copy()
42 HLoadEliminationTable(Zone* zone, HAliasAnalyzer* aliasing) in HLoadEliminationTable()
46 HLoadEliminationTable* Process(HInstruction* instr, Zone* zone) { in Process()
124 Zone* zone) { in Merge()
137 Zone* zone) { in Finish()
145 Zone* zone) { in Copy()
161 HBasicBlock* that_block, Zone* zone) { in Merge()
429 Zone* zone_;
438 explicit HLoadEliminationEffects(Zone* zone) in HLoadEliminationEffects()
446 void Process(HInstruction* instr, Zone* zone) { in Process()
[all …]
Ddata-flow.h65 BitVector(int length, Zone* zone) in BitVector()
73 BitVector(const BitVector& other, Zone* zone) in BitVector()
197 Iterator(const GrowableBitVector* target, Zone* zone) in Iterator()
209 GrowableBitVector(int length, Zone* zone) in GrowableBitVector()
217 void Add(int value, Zone* zone) { in Add()
222 void Union(const GrowableBitVector& other, Zone* zone) { in Union()
237 void EnsureCapacity(int value, Zone* zone) { in EnsureCapacity()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneAliasTest.java45 Zone.Seconds seconds = new Zone.Seconds(); in TestAliases()
46 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) { in TestAliases()
47 Zone zone = (Zone)it.next(); in TestAliases()
53 + ": " + Zone.formatHours(zone.minRecentOffset) in TestAliases()
54 + " != " + Zone.formatHours(zone.maxRecentOffset)); in TestAliases()
63 Zone otherZone = Zone.make(otherId); in TestAliases()
69 + id + " => " + Zone.bf.join(aliasesSet) in TestAliases()
71 + otherId + " => " + Zone.bf.join(otherAliases)); in TestAliases()
85 Zone last = null; in TestDifferences()
86 Zone.Seconds diffDate = new Zone.Seconds(); in TestDifferences()
[all …]
/external/clang/test/CodeGenCXX/
Dblock-in-ctor-dtor.cpp7 class Zone { class
9 Zone();
10 ~Zone();
13 Zone::Zone() { in Zone() function in Zone
18 Zone::~Zone() { in ~Zone()
23 class X : public virtual Zone {
/external/icu/icu4c/source/tools/tzcode/
Dicuzones14 # Zone NAME GMTOFF RULES FORMAT
15 Zone Etc/Unknown 0 - Unknown
20 # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL]
21 Zone SystemV/AST4ADT -4:00 SystemV A%sT
22 Zone SystemV/EST5EDT -5:00 SystemV E%sT
23 Zone SystemV/CST6CDT -6:00 SystemV C%sT
24 Zone SystemV/MST7MDT -7:00 SystemV M%sT
25 Zone SystemV/PST8PDT -8:00 SystemV P%sT
26 Zone SystemV/YST9YDT -9:00 SystemV Y%sT
27 Zone SystemV/AST4 -4:00 - AST
[all …]
/external/v8/src/compiler/
Dgeneric-graph.h13 class Zone; variable
19 explicit GenericGraphBase(Zone* zone) : zone_(zone), next_node_id_(0) {} in GenericGraphBase()
21 Zone* zone() const { return zone_; } in zone()
27 Zone* zone_;
34 explicit GenericGraph(Zone* zone) in GenericGraph()
Dregister-allocator.h130 void SplitAt(LifetimePosition pos, Zone* zone);
185 LiveRange(int id, Zone* zone);
196 InstructionOperand* CreateAssignedOperand(Zone* zone);
199 void set_assigned_register(int reg, Zone* zone);
200 void MakeSpilled(Zone* zone);
234 void SplitAt(LifetimePosition position, LiveRange* result, Zone* zone);
277 void EnsureInterval(LifetimePosition start, LifetimePosition end, Zone* zone);
278 void AddUseInterval(LifetimePosition start, LifetimePosition end, Zone* zone);
280 InstructionOperand* hint, Zone* zone);
292 void ConvertOperands(Zone* zone);
[all …]
Dvalue-numbering-reducer.h16 explicit ValueNumberingReducer(Zone* zone);
22 Zone* zone() const { return zone_; } in zone()
29 Zone* zone_;
Dsimplified-operator.h19 class Zone; variable
98 explicit SimplifiedOperatorBuilder(Zone* zone);
140 Zone* zone() const { return zone_; } in zone()
143 Zone* const zone_;
Dcommon-node-cache.h18 explicit CommonNodeCache(Zone* zone) : zone_(zone) {} in CommonNodeCache()
38 Zone* zone() const { return zone_; } in zone()
45 Zone* zone_;
/external/v8/src/compiler/ia32/
Dlinkage-ia32.cc33 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { in GetJSCallDescriptor()
40 Operator::Properties properties, Zone* zone) { in GetRuntimeCallDescriptor()
48 CallDescriptor::Flags flags, Zone* zone) { in GetStubCallDescriptor()
54 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, in GetSimplifiedCDescriptor()
/external/v8/src/compiler/arm64/
Dlinkage-arm64.cc38 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { in GetJSCallDescriptor()
45 Operator::Properties properties, Zone* zone) { in GetRuntimeCallDescriptor()
53 CallDescriptor::Flags flags, Zone* zone) { in GetStubCallDescriptor()
59 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, in GetSimplifiedCDescriptor()
/external/v8/src/compiler/arm/
Dlinkage-arm.cc38 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { in GetJSCallDescriptor()
45 Operator::Properties properties, Zone* zone) { in GetRuntimeCallDescriptor()
53 CallDescriptor::Flags flags, Zone* zone) { in GetStubCallDescriptor()
59 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, in GetSimplifiedCDescriptor()
/external/v8/src/compiler/x64/
Dlinkage-x64.cc52 CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) { in GetJSCallDescriptor()
59 Operator::Properties properties, Zone* zone) { in GetRuntimeCallDescriptor()
67 CallDescriptor::Flags flags, Zone* zone) { in GetStubCallDescriptor()
73 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, in GetSimplifiedCDescriptor()

123456789