Home
last modified time | relevance | path

Searched refs:cache_length (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/runtime/
Druntime-forin.cc123 int cache_length; in RUNTIME_FUNCTION_RETURN_TRIPLE() local
128 cache_length = cache_map->EnumLength(); in RUNTIME_FUNCTION_RETURN_TRIPLE()
129 if (cache_length && descriptors->HasEnumCache()) { in RUNTIME_FUNCTION_RETURN_TRIPLE()
133 cache_length = 0; in RUNTIME_FUNCTION_RETURN_TRIPLE()
137 cache_length = cache_array->length(); in RUNTIME_FUNCTION_RETURN_TRIPLE()
140 return MakeTriple(*cache_type, *cache_array, Smi::FromInt(cache_length)); in RUNTIME_FUNCTION_RETURN_TRIPLE()
/external/v8/src/interpreter/
Dinterpreter.h160 compiler::Node* cache_length,
Dinterpreter.cc3154 Node* cache_length, in BuildForInPrepareResult() argument
3160 __ StoreRegister(cache_length, output_register); in BuildForInPrepareResult()
3179 Node* cache_length; in DoForInPrepare() local
3184 std::tie(cache_type, cache_array, cache_length) = in DoForInPrepare()
3189 cache_length, assembler); in DoForInPrepare()
3198 Node* cache_length = __ Projection(2, result_triple); in DoForInPrepare() local
3200 cache_length, assembler); in DoForInPrepare()
3265 Node* cache_length = __ LoadRegister(cache_length_reg); in DoForInContinue() local
3269 __ Branch(__ WordEqual(index, cache_length), &if_true, &if_false); in DoForInContinue()
Dbytecode-array-builder.h345 BytecodeArrayBuilder& ForInContinue(Register index, Register cache_length); in NON_EXPORTED_BASE()
Dbytecode-array-builder.cc940 Register index, Register cache_length) { in ForInContinue() argument
941 OutputForInContinue(index, cache_length); in ForInContinue()
Dbytecode-generator.cc1331 Register cache_length = triple[2]; in VisitForInStatement() local
1342 builder()->ForInContinue(index, cache_length); in VisitForInStatement()
/external/v8/src/builtins/
Dbuiltins-object.cc956 Node* cache_length; in TF_BUILTIN() local
957 std::tie(cache_type, cache_array, cache_length) = in TF_BUILTIN()
960 Return(cache_type, cache_array, cache_length); in TF_BUILTIN()
/external/v8/src/compiler/
Dtyper.cc1655 Type* const cache_length = typer_->cache_.kFixedArrayLengthType; in TypeJSForInPrepare() local
1656 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
Dbytecode-graph-builder.cc1940 Node* cache_length = in VisitForInContinue() local
1944 cache_length); in VisitForInContinue()