Searched refs:cache_length (Results 1 – 10 of 10) sorted by relevance
/third_party/node/deps/v8/src/builtins/ |
D | builtins-internal-gen.cc | 977 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/ |
D | interpreter-generator.cc | 2869 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()
|
D | bytecode-array-builder.h | 471 BytecodeArrayBuilder& ForInContinue(Register index, Register cache_length);
|
D | bytecode-array-builder.cc | 1357 Register index, Register cache_length) { in ForInContinue() argument 1358 OutputForInContinue(index, cache_length); in ForInContinue()
|
D | bytecode-generator.cc | 2335 Register cache_length = triple[2]; in VisitForInStatement() local 2349 builder()->ForInContinue(index, cache_length); in VisitForInStatement()
|
/third_party/node/deps/v8/src/compiler/ |
D | js-generic-lowering.cc | 1086 Node* cache_length; in LowerJSForInPrepare() local 1093 cache_length = effect = graph()->NewNode( in LowerJSForInPrepare() 1116 Replace(user, cache_length); in LowerJSForInPrepare()
|
D | js-typed-lowering.cc | 1960 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()
|
D | typer.cc | 1870 Type const cache_length = typer_->cache_->kFixedArrayLengthType; in TypeJSForInPrepare() local 1871 return Type::Tuple(cache_type, cache_array, cache_length, zone()); in TypeJSForInPrepare()
|
D | bytecode-graph-builder.cc | 3589 Node* cache_length = in VisitForInContinue() local 3593 index, cache_length); in VisitForInContinue()
|
/third_party/node/deps/v8/src/codegen/ |
D | code-stub-assembler.cc | 13531 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()
|