Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/builtins/
Dbuiltins-internal-gen.cc977 TNode<Smi> cache_length; in TF_BUILTIN() local
979 &cache_length, UpdateFeedbackMode::kGuaranteedFeedback); in TF_BUILTIN()
980 Return(cache_array, cache_length); in TF_BUILTIN()
/third_party/node/deps/v8/src/interpreter/
Dinterpreter-generator.cc2869 TNode<Smi> cache_length; in IGNITION_HANDLER() local
2871 &cache_length, UpdateFeedbackMode::kOptionalFeedback); in IGNITION_HANDLER()
2878 StoreRegisterTripleAtOperandIndex(cache_type, cache_array, cache_length, 0); in IGNITION_HANDLER()
2922 TNode<Object> cache_length = LoadRegisterAtOperandIndex(1); in IGNITION_HANDLER() local
2926 Branch(TaggedEqual(index, cache_length), &if_true, &if_false); in IGNITION_HANDLER()
Dbytecode-array-builder.h471 BytecodeArrayBuilder& ForInContinue(Register index, Register cache_length);
Dbytecode-array-builder.cc1357 Register index, Register cache_length) { in ForInContinue() argument
1358 OutputForInContinue(index, cache_length); in ForInContinue()
Dbytecode-generator.cc2335 Register cache_length = triple[2]; in VisitForInStatement() local
2349 builder()->ForInContinue(index, cache_length); in VisitForInStatement()
/third_party/node/deps/v8/src/compiler/
Djs-generic-lowering.cc1086 Node* cache_length; in LowerJSForInPrepare() local
1093 cache_length = effect = graph()->NewNode( in LowerJSForInPrepare()
1116 Replace(user, cache_length); in LowerJSForInPrepare()
Djs-typed-lowering.cc1960 Node* cache_length = nullptr; in ReduceJSForInPrepare() local
1987 cache_length = graph()->NewNode( in ReduceJSForInPrepare()
2045 cache_length = in ReduceJSForInPrepare()
2071 Replace(user, cache_length); in ReduceJSForInPrepare()
Dtyper.cc1870 Type const cache_length = typer_->cache_->kFixedArrayLengthType; in TypeJSForInPrepare() local
1871 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
Dbytecode-graph-builder.cc3589 Node* cache_length = in VisitForInContinue() local
3593 index, cache_length); in VisitForInContinue()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc13531 TVARIABLE(Smi, cache_length); in ForInPrepare()
13560 cache_length = SmiTag(Signed(enum_length)); in ForInPrepare()
13574 cache_length = LoadFixedArrayBaseLength(array_enumerator); in ForInPrepare()
13580 *cache_length_out = cache_length.value(); in ForInPrepare()