HomeSort by relevance Sort by last modified time
    Searched refs:ZoneList (Results 26 - 50 of 155) sorted by null

12 3 4 5 6 7

  /external/v8/src/ast/
modules.h 68 const ZoneList<const AstRawString*>& requested_modules() const {
114 ZoneList<const AstRawString*> requested_modules_;
scopes.h 478 ZoneList<Declaration*>* declarations() { return &decls_; }
481 ZoneList<Scope*>* inner_scopes() { return &inner_scopes_; }
505 ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals,
506 ZoneList<Variable*>* context_globals,
507 ZoneList<Variable*>* strong_mode_free_variables = nullptr);
608 ZoneList<Scope*> inner_scopes_; // the immediately enclosed inner scopes
625 ZoneList<Variable*> temps_;
627 ZoneList<Variable*> params_;
631 ZoneList<VariableProxy*> unresolved_
    [all...]
ast-expression-visitor.cc 66 void AstExpressionVisitor::VisitStatements(ZoneList<Statement*>* stmts) {
121 ZoneList<CaseClause*>* clauses = stmt->cases();
129 ZoneList<Statement*>* stmts = clause->statements();
241 ZoneList<ObjectLiteralProperty*>* props = expr->properties();
254 ZoneList<Expression*>* values = expr->values();
292 ZoneList<Expression*>* args = expr->arguments();
303 ZoneList<Expression*>* args = expr->arguments();
313 ZoneList<Expression*>* args = expr->arguments();
352 void AstExpressionVisitor::VisitDeclarations(ZoneList<Declaration*>* decls) {
366 ZoneList<ObjectLiteralProperty*>* props = expr->properties()
    [all...]
  /external/v8/src/crankshaft/
hydrogen-escape-analysis.h 53 ZoneList<HInstruction*> captured_;
64 ZoneList<HCapturedObject*> block_states_;
hydrogen-mark-deoptimize.cc 11 const ZoneList<HPhi*>* phi_list = graph()->phi_list();
45 const ZoneList<HBasicBlock*>* blocks(graph()->blocks());
lithium.h 357 ZoneList<LMoveOperands>* move_operands() { return &move_operands_; }
362 ZoneList<LMoveOperands> move_operands_;
373 const ZoneList<LOperand*>* GetNormalizedOperands() {
393 ZoneList<LOperand*> pointer_operands_;
394 ZoneList<LOperand*> untagged_operands_;
437 const ZoneList<LOperand*>* values() const { return &values_; }
534 ZoneList<LOperand*> values_;
539 ZoneList<uint32_t> object_mapping_;
645 const ZoneList<LInstruction*>* instructions() const { return &instructions_; }
651 const ZoneList<LPointerMap*>* pointer_maps() const { return &pointer_maps_;
    [all...]
hydrogen-dce.cc 11 HValue* instr, ZoneList<HValue*>* worklist) {
47 ZoneList<HValue*> worklist(10, zone());
67 ZoneList<HPhi*> worklist(graph()->blocks()->length(), zone());
hydrogen-mark-unreachable.cc 15 const ZoneList<HBasicBlock*>* blocks = graph()->blocks();
typing.h 72 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
73 void VisitStatements(ZoneList<Statement*>* statements) override;
hydrogen-representation-changes.cc 123 ZoneList<HPhi*> int_worklist(8, zone());
124 ZoneList<HPhi*> smi_worklist(8, zone());
126 const ZoneList<HPhi*>* phi_list(graph()->phi_list());
195 const ZoneList<HBasicBlock*>* blocks(graph()->blocks());
199 const ZoneList<HPhi*>* phis = block->phis();
hydrogen-uint32-analysis.cc 143 void HUint32AnalysisPhase::UnmarkPhi(HPhi* phi, ZoneList<HPhi*>* worklist) {
163 ZoneList<HPhi*> worklist(phis_.length(), zone());
216 ZoneList<HInstruction*>* uint32_instructions = graph()->uint32_instructions();
hydrogen-gvn.h 139 ZoneList<SideEffects> block_side_effects_;
142 ZoneList<SideEffects> loop_side_effects_;
hydrogen-osr.cc 47 osr_values_ = new(zone) ZoneList<HUnknownOSRValue*>(length, zone);
94 const ZoneList<HPhi*>* phis = osr_loop_entry_->phis();
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.h 88 ZoneList<LMoveOperands> moves_;
  /external/v8/src/crankshaft/ia32/
lithium-gap-resolver-ia32.h 72 ZoneList<LMoveOperands> moves_;
  /external/v8/src/crankshaft/x87/
lithium-gap-resolver-x87.h 72 ZoneList<LMoveOperands> moves_;
  /external/v8/src/
type-info.h 112 void GetRelocInfos(Handle<Code> code, ZoneList<RelocInfo>* infos);
113 void CreateDictionary(Handle<Code> code, ZoneList<RelocInfo>* infos);
114 void RelocateRelocInfos(ZoneList<RelocInfo>* infos,
117 void ProcessRelocInfos(ZoneList<RelocInfo>* infos);
zone.h 174 class ZoneList final : public List<T, ZoneAllocationPolicy> {
176 // Construct a new ZoneList with the given capacity; the length is
178 ZoneList(int capacity, Zone* zone)
183 // Construct a new ZoneList by copying the elements of the given ZoneList.
184 ZoneList(const ZoneList<T>& other, Zone* zone)
safepoint-table.cc 117 indexes_.Add(new(zone_) ZoneList<int>(8, zone_), zone_);
119 ? new(zone_) ZoneList<int>(4, zone_)
164 ZoneList<uint8_t> bits(bytes_per_entry, zone_);
166 ZoneList<int>* indexes = indexes_[i];
167 ZoneList<int>* registers = registers_[i];
compilation-dependencies.cc 46 groups_[group] = new (zone_) ZoneList<Handle<HeapObject>>(2, zone_);
77 ZoneList<Handle<HeapObject>>* group_objects = groups_[i];
96 ZoneList<Handle<HeapObject>>* group_objects = groups_[i];
compilation-dependencies.h 64 ZoneList<Handle<HeapObject> >* groups_[DependentCode::kGroupCount];
  /external/v8/src/regexp/
regexp-parser.h 19 // by) a ZoneList, that is optimized for the case of adding and removing
21 // and if no more than one element is ever added, the ZoneList isn't even
35 list_ = new (zone) ZoneList<T*>(initial_size, zone);
82 ZoneList<T*>* GetList(Zone* zone) {
84 list_ = new (zone) ZoneList<T*>(initial_size, zone);
94 ZoneList<T*>* list_;
123 ZoneList<uc16>* characters_;
258 ZoneList<RegExpCapture*>* captures_;
regexp-ast.cc 31 static Interval ListCaptureRegisters(ZoneList<RegExpTree*>* children) {
76 ZoneList<RegExpTree*>* nodes = this->nodes();
91 ZoneList<RegExpTree*>* nodes = this->nodes();
106 ZoneList<RegExpTree*>* alternatives = this->alternatives();
115 ZoneList<RegExpTree*>* alternatives = this->alternatives();
298 RegExpDisjunction::RegExpDisjunction(ZoneList<RegExpTree*>* alternatives)
321 RegExpAlternative::RegExpAlternative(ZoneList<RegExpTree*>* nodes)
  /external/v8/src/parsing/
parser.cc 199 ZoneList<Statement*>* body = NULL;
206 body = new (zone()) ZoneList<Statement*>(call_super ? 2 : 1, zone());
210 ZoneList<Expression*>* args =
211 new (zone()) ZoneList<Expression*>(2, zone());
215 ZoneList<Expression*>* tmp =
216 new (zone()) ZoneList<Expression*>(1, zone());
518 ZoneList<Expression*>* args = new (zone) ZoneList<Expression*>(2, zone);
704 ZoneList<Expression*>* args = new (zone) ZoneList<Expression*>(0, zone)
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.h 27 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
28 void VisitStatements(ZoneList<Statement*>* statments) override;
62 Register VisitArguments(ZoneList<Expression*>* arguments);

Completed in 263 milliseconds

12 3 4 5 6 7