Searched refs:cache_length (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/runtime/ |
D | runtime-forin.cc | 123 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/ |
D | interpreter.h | 160 compiler::Node* cache_length,
|
D | interpreter.cc | 3154 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()
|
D | bytecode-array-builder.h | 345 BytecodeArrayBuilder& ForInContinue(Register index, Register cache_length); in NON_EXPORTED_BASE()
|
D | bytecode-array-builder.cc | 940 Register index, Register cache_length) { in ForInContinue() argument 941 OutputForInContinue(index, cache_length); in ForInContinue()
|
D | bytecode-generator.cc | 1331 Register cache_length = triple[2]; in VisitForInStatement() local 1342 builder()->ForInContinue(index, cache_length); in VisitForInStatement()
|
/external/v8/src/builtins/ |
D | builtins-object.cc | 956 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/ |
D | typer.cc | 1655 Type* const cache_length = typer_->cache_.kFixedArrayLengthType; in TypeJSForInPrepare() local 1656 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
|
D | bytecode-graph-builder.cc | 1940 Node* cache_length = in VisitForInContinue() local 1944 cache_length); in VisitForInContinue()
|