Home
last modified time | relevance | path

Searched refs:Bailout (Results 1 – 7 of 7) sorted by relevance

/external/v8/third_party/v8/builtins/
Darray-sort.tq160 LoadDoubleWithHoleCheck(elems, index) otherwise Bailout;
163 label Bailout {
180 otherwise Bailout, Bailout;
183 label Bailout {
358 labels Bailout {
374 goto Bailout;
475 // This macro jumps to the Bailout label iff kBailoutStatus is kFailure.
476 macro EnsureSuccess(sortState: FixedArray) labels Bailout {
478 if (status == kFailure) goto Bailout;
493 elements: HeapObject, index: Smi): Object labels Bailout {
[all …]
/external/v8/src/builtins/
Darray.tq31 labels Bailout {
32 let originalLength: Smi = cast<Smi>(originalLengthNumber) otherwise Bailout;
33 let actualStart: Smi = cast<Smi>(actualStartNumber) otherwise Bailout;
35 cast<Smi>(actualDeleteCountNumber) otherwise Bailout;
39 let a: JSArray = cast<JSArray>(o) otherwise Bailout;
42 if (!IsPrototypeInitialArrayPrototype(context, map)) goto Bailout;
43 if (IsNoElementsProtectorCellInvalid()) goto Bailout;
44 if (IsArraySpeciesProtectorCellInvalid()) goto Bailout;
47 let elementsKind: ElementsKind = EnsureArrayPushable(map) otherwise Bailout;
48 if (!IsFastElementsKind(elementsKind)) goto Bailout;
[all …]
Darray-foreach.tq77 Bailout(Smi) {
99 if (IsNoElementsProtectorCellInvalid()) goto Bailout(k);
104 goto Bailout(k);
111 Bailout(Smi) {
125 otherwise Bailout;
128 otherwise Bailout;
132 goto Bailout(k);
165 otherwise Bailout;
167 label Bailout(k_value: Smi) {
Dbase.tq197 extern macro EnsureArrayPushable(Map): ElementsKind labels Bailout;
/external/v8/src/parsing/
Dpreparser.cc405 produced_preparsed_scope_data_->parent()->Bailout(); in BuildParameterInitializationBlock()
409 produced_preparsed_scope_data_->Bailout(); in BuildParameterInitializationBlock()
Dpreparsed-scope-data.h127 void Bailout() { in Bailout() function
/external/v8/
DChangeLog46439 Bailout on possible direct eval calls (Chromium issue 122681).