HomeSort by relevance Sort by last modified time
    Searched refs:Zone (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
block-in-ctor-dtor.cpp 7 class Zone {
9 Zone();
10 ~Zone();
13 Zone::Zone() {
18 Zone::~Zone() {
23 class X : public virtual Zone {
  /external/v8/src/compiler/
value-numbering-reducer.h 19 explicit ValueNumberingReducer(Zone* temp_zone, Zone* graph_zone);
29 Zone* temp_zone() const { return temp_zone_; }
30 Zone* graph_zone() const { return graph_zone_; }
35 Zone* temp_zone_;
36 Zone* graph_zone_;
live-range-separator.h 8 #include "src/zone/zone.h"
12 class Zone;
22 LiveRangeSeparator(RegisterAllocationData* data, Zone* zone)
23 : data_(data), zone_(zone) {}
29 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
32 Zone* const zone_;
40 LiveRangeMerger(RegisterAllocationData* data, Zone* zone
47 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
    [all...]
store-store-elimination.h 10 #include "src/zone/zone-containers.h"
18 static void Run(JSGraph* js_graph, Zone* temp_zone);
machine-graph-verifier.h 12 class Zone;
25 Zone* temp_zone);
zone-stats.h 13 #include "src/zone/zone.h"
27 Zone* zone() { function in class:v8::internal::compiler::final::final
39 Zone* zone_;
54 void ZoneReturned(Zone* zone);
56 typedef std::map<Zone*, size_t> InitialValues;
74 Zone* NewEmptyZone(const char* zone_name);
75 void ReturnZone(Zone* zone)
    [all...]
all-nodes.h 9 #include "src/zone/zone-containers.h"
22 AllNodes(Zone* local_zone, Node* end, const Graph* graph,
26 AllNodes(Zone* local_zone, const Graph* graph, bool only_inputs = true);
42 void Mark(Zone* local_zone, Node* end, const Graph* graph);
loop-peeling.h 37 Zone* tmp_zone);
39 LoopTree* loop_tree, Zone* tmp_zone);
41 static void EliminateLoopExits(Graph* graph, Zone* temp_zone);
move-optimizer.h 10 #include "src/zone/zone-containers.h"
18 MoveOptimizer(Zone* local_zone, InstructionSequence* code);
26 Zone* local_zone() const { return local_zone_; }
27 Zone* code_zone() const { return code()->zone(); }
52 Zone* const local_zone_;
redundancy-elimination.h 16 RedundancyElimination(Editor* editor, Zone* zone);
30 static EffectPathChecks* Copy(Zone* zone, EffectPathChecks const* checks);
31 static EffectPathChecks const* Empty(Zone* zone);
35 EffectPathChecks const* AddCheck(Zone* zone, Node* node) const;
50 explicit PathChecksForEffectNodes(Zone* zone) : info_for_node_(zone) {
68 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
    [all...]
bytecode-liveness-map.cc 11 BytecodeLiveness::BytecodeLiveness(int register_count, Zone* zone)
12 : in(new (zone) BytecodeLivenessState(register_count, zone)),
13 out(new (zone) BytecodeLivenessState(register_count, zone)) {}
15 BytecodeLivenessMap::BytecodeLivenessMap(int bytecode_size, Zone* zone)
18 ZoneAllocationPolicy(zone)) {}
24 Zone* zone)
    [all...]
control-flow-optimizer.h 10 #include "src/zone/zone-containers.h"
25 MachineOperatorBuilder* machine, Zone* zone);
40 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
47 Zone* const zone_;
load-elimination.h 11 #include "src/zone/zone-handle-set.h"
30 LoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone)
31 : AdvancedReducer(editor), node_states_(zone), jsgraph_(jsgraph) {}
44 explicit AbstractChecks(Zone* zone) {
49 AbstractChecks(Node* node, Zone* zone) : AbstractChecks(zone) {
250 Zone* zone() const { return info_for_node_.get_allocator().zone(); } function in class:v8::internal::compiler::final::final
283 Zone* zone() const { return node_states_.zone(); } function in class:v8::internal::compiler::final
    [all...]
memory-optimizer.h 9 #include "src/zone/zone-containers.h"
34 MemoryOptimizer(JSGraph* jsgraph, Zone* zone);
44 AllocationGroup(Node* node, PretenureFlag pretenure, Zone* zone);
46 Zone* zone);
67 static AllocationState const* Empty(Zone* zone) {
134 Zone* zone() const { return zone_; } function in class:v8::internal::compiler::final
    [all...]
zone-stats.cc 5 #include "src/compiler/zone-stats.h"
16 for (Zone* zone : zone_stats_->zones_) {
17 size_t size = static_cast<size_t>(zone->allocation_size());
19 initial_values_.insert(std::make_pair(zone, size));
36 for (Zone* zone : zone_stats_->zones_) {
37 total += static_cast<size_t>(zone->allocation_size());
39 InitialValues::iterator it = initial_values_.find(zone);
52 void ZoneStats::StatsScope::ZoneReturned(Zone* zone)
88 Zone* zone = new Zone(allocator_, zone_name); local
    [all...]
  /external/v8/src/zone/
zone.h 15 #include "src/zone/accounting-allocator.h"
26 // The Zone supports very fast allocation of small chunks of
28 // the Zone supports deallocating all chunks in one fast
29 // operation. The Zone is used to hold temporary data structures like
32 // Note: There is no need to initialize the Zone; the first time an
38 class V8_EXPORT_PRIVATE Zone final {
40 Zone(AccountingAllocator* allocator, const char* name);
41 ~Zone();
43 // Allocate 'size' bytes of memory in the Zone; expands the Zone b
141 Zone* zone() const { return zone_; } function in class:v8::internal::final
    [all...]
zone-segment.h 19 class Zone;
25 Zone* zone() const { return zone_; } function in class:v8::internal::Segment
26 void set_zone(Zone* const zone) { zone_ = zone; }
51 Zone* zone_;
zone-containers.h 16 #include "src/zone/zone-allocator.h"
22 // that uses a zone allocator.
27 explicit ZoneVector(Zone* zone)
28 : std::vector<T, zone_allocator<T>>(zone_allocator<T>(zone)) {}
32 ZoneVector(size_t size, Zone* zone)
33 : std::vector<T, zone_allocator<T>>(size, T(), zone_allocator<T>(zone)) {}
37 ZoneVector(size_t size, T def, Zone* zone
    [all...]
  /external/v8/src/ast/
ast-numbering.h 16 class Zone;
29 uintptr_t stack_limit, Zone* zone, FunctionLiteral* function,
modules.h 9 #include "src/zone/zone-containers.h"
22 explicit ModuleDescriptor(Zone* zone)
23 : module_requests_(zone),
24 special_exports_(1, zone),
25 namespace_imports_(1, zone),
26 regular_exports_(zone),
27 regular_imports_(zone) {}
38 Zone* zone)
    [all...]
  /external/v8/src/crankshaft/
compilation-phase.h 11 #include "src/zone/zone.h"
27 Zone* zone() { return &zone_; } function in class:v8::internal::BASE_EMBEDDED
32 Zone zone_;
hydrogen-bce.h 18 explicit BoundsCheckTable(Zone* zone);
20 INLINE(BoundsCheckBbData** LookupOrInsert(BoundsCheckKey* key, Zone* zone));
21 INLINE(void Insert(BoundsCheckKey* key, BoundsCheckBbData* data, Zone* zone));
32 : HPhase("H_Bounds checks elimination", graph), table_(zone()) { }
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 53 Zone.Seconds seconds = new Zone.Seconds();
54 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) {
55 Zone zone = (Zone)it.next(); local
56 String id = zone.id;
58 if (zone.minRecentOffset != zone.maxRecentOffset) {
61 + ": " + Zone.formatHours(zone.minRecentOffset
122 Zone zone = (Zone)it.next(); local
246 private TimeZone zone; field in class:TimeZoneAliasTest.Zone
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 50 Zone.Seconds seconds = new Zone.Seconds();
51 for (Iterator it = Zone.getZoneSet().iterator(); it.hasNext(); ) {
52 Zone zone = (Zone)it.next(); local
53 String id = zone.id;
55 if (zone.minRecentOffset != zone.maxRecentOffset) {
58 + ": " + Zone.formatHours(zone.minRecentOffset
119 Zone zone = (Zone)it.next(); local
243 private TimeZone zone; field in class:TimeZoneAliasTest.Zone
    [all...]
  /external/swiftshader/third_party/subzero/src/
WasmTranslator.h 36 class Zone;
66 /// Zone - an arena for the V8 code to allocate from.
69 translateFunction(v8::internal::Zone *Zone,

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 91011>>