Home
last modified time | relevance | path

Searched refs:monomorphic (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/mjsunit/
Delements-kind.js141 function monomorphic(array) { function
154 for (var i = 0; i < 3; i++) monomorphic(smi_only);
155 %OptimizeFunctionOnNextCall(monomorphic);
156 monomorphic(smi_only);
/external/v8/src/crankshaft/
Dtyping.cc558 bool monomorphic = in VisitCallNew() local
560 expr->set_is_monomorphic(monomorphic); in VisitCallNew()
561 if (monomorphic) { in VisitCallNew()
Dhydrogen.cc6754 bool monomorphic = expr->IsMonomorphic(); in ComputeReceiverTypes() local
6758 monomorphic = maps->length() == 1; in ComputeReceiverTypes()
6760 return monomorphic && CanInlinePropertyAccess(maps->first()); in ComputeReceiverTypes()
7667 bool monomorphic = ComputeReceiverTypes(expr, obj, &maps, zone()); in HandleKeyedElementAccess() local
7675 monomorphic = false; in HandleKeyedElementAccess()
7677 (monomorphic || (maps != NULL && !maps->is_empty()))) { in HandleKeyedElementAccess()
7686 monomorphic = false; in HandleKeyedElementAccess()
7690 } else if (access_type == LOAD && !monomorphic && in HandleKeyedElementAccess()
7705 if (monomorphic) { in HandleKeyedElementAccess()
/external/v8/src/ast/
Dast.h2066 void set_is_monomorphic(bool monomorphic) { is_monomorphic_ = monomorphic; } in set_is_monomorphic() argument
/external/v8/
DChangeLog6208 Do not clear weak monomorphic IC after context disposal (Chromium issue
7234 Make maps in monomorphic IC stubs weak (issue 2073).
10368 Simplify invocation sequence at monomorphic function invocation sites.