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

1 2 3 4 5 6 7

  /external/v8/src/crankshaft/
hydrogen-environment-liveness.h 45 ZoneList<BitVector*> live_at_block_start_;
46 ZoneList<HSimulate*> first_simulate_;
47 ZoneList<BitVector*> first_simulate_invalid_for_index_;
52 ZoneList<HEnvironmentMarker*> markers_;
hydrogen-uint32-analysis.h 27 INLINE(void UnmarkPhi(HPhi* phi, ZoneList<HPhi*>* worklist));
30 ZoneList<HPhi*> phis_;
hydrogen-dce.h 25 void MarkLive(HValue* instr, ZoneList<HValue*>* worklist);
hydrogen-infer-representation.h 25 ZoneList<HValue*> worklist_;
hydrogen-redundant-phi.h 25 void ProcessPhis(const ZoneList<HPhi*>* phis);
hydrogen-store-elimination.h 23 ZoneList<HStoreNamedField*> unobserved_;
hydrogen-range-analysis.h 39 ZoneList<HValue*> changed_ranges_;
42 ZoneList<HValue*> worklist_;
hydrogen-infer-types.h 27 ZoneList<HValue*> worklist_;
hydrogen-mark-deoptimize.h 31 // to allocate a new ZoneList for every ProcessPhi() invocation.
32 ZoneList<HPhi*> worklist_;
hydrogen-osr.h 49 ZoneList<HUnknownOSRValue*>* osr_values_;
hydrogen-redundant-phi.cc 12 const ZoneList<HBasicBlock*>* blocks(graph()->blocks());
13 ZoneList<HPhi*> all_phis(blocks->length(), zone());
40 void HRedundantPhiEliminationPhase::ProcessPhis(const ZoneList<HPhi*>* phis) {
lithium-codegen.h 79 const ZoneList<LInstruction*>* instructions_;
80 ZoneList<LEnvironment*> deoptimizations_;
81 ZoneList<Handle<Object> > deoptimization_literals_;
  /external/v8/src/ast/
prettyprinter.h 47 void FindStatements(ZoneList<Statement*>* statements);
48 void FindArguments(ZoneList<Expression*>* arguments);
84 virtual void PrintStatements(ZoneList<Statement*>* statements);
85 void PrintLabels(ZoneList<const AstRawString*>* labels);
86 virtual void PrintArguments(ZoneList<Expression*>* arguments);
90 void PrintDeclarations(ZoneList<Declaration*>* declarations);
117 void PrintStatements(ZoneList<Statement*>* statements);
118 void PrintDeclarations(ZoneList<Declaration*>* declarations);
120 void PrintArguments(ZoneList<Expression*>* arguments);
126 void PrintLabelsIndented(ZoneList<const AstRawString*>* labels)
    [all...]
ast-expression-rewriter.h 32 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
33 void VisitStatements(ZoneList<Statement*>* statements) override;
34 void VisitExpressions(ZoneList<Expression*>* expressions) override;
ast-literal-reindexer.h 26 void VisitStatements(ZoneList<Statement*>* statements) override;
27 void VisitDeclarations(ZoneList<Declaration*>* declarations) override;
28 void VisitArguments(ZoneList<Expression*>* arguments);
ast-expression-visitor.h 33 void VisitDeclarations(ZoneList<Declaration*>* d) override;
34 void VisitStatements(ZoneList<Statement*>* s) override;
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.h 44 ZoneList<LMoveOperands> moves_;
  /external/v8/src/
safepoint-table.h 169 Safepoint(ZoneList<int>* indexes, ZoneList<int>* registers)
171 ZoneList<int>* indexes_;
172 ZoneList<int>* registers_;
219 ZoneList<DeoptimizationInfo> deoptimization_info_;
220 ZoneList<unsigned> deopt_index_list_;
221 ZoneList<ZoneList<int>*> indexes_;
222 ZoneList<ZoneList<int>*> registers_
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.h 49 ZoneList<LMoveOperands> moves_;
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.h 49 ZoneList<LMoveOperands> moves_;
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.h 49 ZoneList<LMoveOperands> moves_;
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.h 49 ZoneList<LMoveOperands> moves_;
  /external/v8/src/parsing/
parser.h 320 ZoneList<Parameter> params;
346 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
347 typedef ZoneList<ObjectLiteral::Property*>* PropertyList;
350 typedef ZoneList<v8::internal::Statement*>* StatementList;
492 static ZoneList<Expression*>* NullExpressionList() {
527 ZoneList<v8::internal::Expression*>* NewExpressionList(int size, Zone* zone) {
528 return new(zone) ZoneList<v8::internal::Expression*>(size, zone);
530 ZoneList<ObjectLiteral::Property*>* NewPropertyList(int size, Zone* zone) {
531 return new(zone) ZoneList<ObjectLiteral::Property*>(size, zone);
533 ZoneList<v8::internal::Statement*>* NewStatementList(int size, Zone* zone)
    [all...]
func-name-inferrer.h 115 ZoneList<int> entries_stack_;
116 ZoneList<Name> names_stack_;
117 ZoneList<FunctionLiteral*> funcs_to_infer_;
  /external/v8/src/regexp/
regexp-ast.h 81 static void AddClassEscape(uc16 type, ZoneList<CharacterRange>* ranges,
103 ZoneList<CharacterRange>* ranges, bool is_one_byte);
104 static void Split(ZoneList<CharacterRange>* base, Vector<const int> overlay,
105 ZoneList<CharacterRange>** included,
106 ZoneList<CharacterRange>** excluded, Zone* zone);
109 static bool IsCanonical(ZoneList<CharacterRange>* ranges);
114 static void Canonicalize(ZoneList<CharacterRange>* ranges);
116 static void Negate(ZoneList<CharacterRange>* src,
117 ZoneList<CharacterRange>* dst, Zone* zone);
131 explicit CharacterSet(ZoneList<CharacterRange>* ranges
    [all...]

Completed in 310 milliseconds

1 2 3 4 5 6 7