Home
last modified time | relevance | path

Searched refs:LoadStringLength (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/builtins/
Dbuiltins-string.cc184 Node* lhs_length = LoadStringLength(lhs); in GenerateStringEqual()
185 Node* rhs_length = LoadStringLength(rhs); in GenerateStringEqual()
322 Node* lhs_length = LoadStringLength(lhs); in GenerateStringRelationalComparison()
323 Node* rhs_length = LoadStringLength(rhs); in GenerateStringRelationalComparison()
888 Node* needle_length = SmiUntag(LoadStringLength(search_string)); in StringIndexOf()
892 Node* string_length = SmiUntag(LoadStringLength(receiver)); in StringIndexOf()
1293 Node* const subject_length = LoadStringLength(subject_string); in TF_BUILTIN()
1294 Node* const search_length = LoadStringLength(search_string); in TF_BUILTIN()
1510 GotoIfNot(SmiEqual(LoadStringLength(separator_string), smi_zero), &next); in TF_BUILTIN()
1543 Node* const string_length = LoadStringLength(string); in TF_BUILTIN()
[all …]
Dbuiltins-regexp.cc290 Node* const string_length = LoadStringLength(string); in RegExpPrototypeExecBodyWithoutResult()
1388 Node* const string_length = LoadStringLength(string); in AdvanceStringIndex()
1682 Node* const match_length = LoadStringLength(match); in RegExpPrototypeMatchBody()
1902 Node* const string_length = LoadStringLength(string); in RegExpPrototypeSplitBody()
2346 Node* const elem_length = LoadStringLength(elem); in ReplaceGlobalCallableFastPath()
2468 Node* const subject_end = LoadStringLength(string); in ReplaceSimpleStringFastPath()
2471 Node* const replace_length = LoadStringLength(replace_string); in ReplaceSimpleStringFastPath()
Dbuiltins-handler.cc28 Node* length = SmiUntag(LoadStringLength(receiver)); in TF_BUILTIN()
/external/v8/src/
Dcode-stub-assembler.cc1166 Node* CodeStubAssembler::LoadStringLength(Node* object) { in LoadStringLength() function in v8::internal::CodeStubAssembler
3316 Node* const string_length = LoadStringLength(string); in SubString()
3608 Node* left_length = LoadStringLength(left); in StringAdd()
3614 Node* right_length = LoadStringLength(right); in StringAdd()
5256 Node* length = LoadStringLength(string); in TryLookupElement()
5265 Node* length = LoadStringLength(string); in TryLookupElement()
Dcode-stub-assembler.h407 Node* LoadStringLength(Node* object);
Dcode-stubs.cc498 compiler::Node* result = assembler.LoadStringLength(string); in GenerateAssembly()