Searched refs:cache_length (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/runtime/ |
D | runtime-forin.cc | 127 int cache_length; in RUNTIME_FUNCTION_RETURN_TRIPLE() local 132 cache_length = cache_map->EnumLength(); in RUNTIME_FUNCTION_RETURN_TRIPLE() 133 if (cache_length && descriptors->HasEnumCache()) { in RUNTIME_FUNCTION_RETURN_TRIPLE() 137 cache_length = 0; in RUNTIME_FUNCTION_RETURN_TRIPLE() 141 cache_length = cache_array->length(); in RUNTIME_FUNCTION_RETURN_TRIPLE() 144 return MakeTriple(*cache_type, *cache_array, Smi::FromInt(cache_length)); in RUNTIME_FUNCTION_RETURN_TRIPLE()
|
/external/v8/src/interpreter/ |
D | bytecode-array-builder.h | 238 BytecodeArrayBuilder& ForInDone(Register index, Register cache_length);
|
D | bytecode-array-builder.cc | 492 Register cache_length) { in ForInDone() argument 494 RegisterOperand(cache_length)); in ForInDone()
|
D | interpreter.cc | 1728 Node* cache_length = __ LoadRegister(cache_length_reg); in DoForInDone() local 1732 __ BranchIfWordEqual(index, cache_length, &if_true, &if_false); in DoForInDone()
|
D | bytecode-generator.cc | 1150 Register cache_length = register_allocator()->NextConsecutiveRegister(); in VisitForInStatement() local 1163 builder()->ForInDone(index, cache_length); in VisitForInStatement()
|
/external/v8/src/compiler/ |
D | bytecode-graph-builder.cc | 1383 Node* cache_length = in VisitForInDone() local 1385 Node* exit_cond = NewNode(javascript()->ForInDone(), index, cache_length); in VisitForInDone()
|
D | ast-graph-builder.cc | 1404 Node* cache_length = NewNode(common()->Projection(2), prepare); in VisitForInStatement() local 1409 environment()->Push(cache_length); in VisitForInStatement() 1419 Node* cache_length = environment()->Peek(1); in VisitForInStatement() local 1425 Node* exit_cond = NewNode(javascript()->ForInDone(), index, cache_length); in VisitForInStatement()
|
D | typer.cc | 1493 Type* const cache_length = typer_->cache_.kFixedArrayLengthType; in TypeJSForInPrepare() local 1494 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
|