HomeSort by relevance Sort by last modified time
    Searched refs:TaggedIsSmi (Results 1 - 25 of 25) sorted by null

  /external/v8/src/builtins/
builtins-async.cc 58 GotoIf(TaggedIsSmi(value), &common);
builtins-number.cc 63 GotoIf(TaggedIsSmi(number), &return_true);
87 GotoIf(TaggedIsSmi(number), &return_true);
116 GotoIf(TaggedIsSmi(number), &return_false);
139 GotoIf(TaggedIsSmi(number), &return_true);
183 Branch(TaggedIsSmi(input), &if_inputissmi, &if_inputisnotsmi);
280 GotoIf(TaggedIsSmi(input), &if_inputissmi);
588 Branch(TaggedIsSmi(lhs), &if_lhsissmi, &if_lhsisnotsmi);
594 Branch(TaggedIsSmi(rhs), &if_rhsissmi, &if_rhsisnotsmi);
703 Branch(TaggedIsSmi(rhs), &if_rhsissmi, &if_rhsisnotsmi);
    [all...]
builtins-conversion.cc 67 assembler->GotoIf(assembler->TaggedIsSmi(result), &if_resultisprimitive);
178 assembler.GotoIf(assembler.TaggedIsSmi(input), &is_number);
262 assembler->GotoIf(assembler->TaggedIsSmi(method), &if_methodisnotcallable);
276 assembler->GotoIf(assembler->TaggedIsSmi(result), &return_result);
356 assembler.GotoIf(assembler.TaggedIsSmi(len), &return_zero);
433 assembler.Branch(assembler.TaggedIsSmi(object), &if_number, &if_notsmi);
builtins-async-iterator.cc 67 GotoIf(TaggedIsSmi(object), &if_receiverisincompatible);
161 GotoIf(TaggedIsSmi(iter_result), &if_notanobject);
213 GotoIf(TaggedIsSmi(var_done.value()), &to_boolean);
builtins-generator.cc 36 GotoIf(TaggedIsSmi(receiver), &if_receiverisincompatible);
builtins-global.cc 128 assembler.GotoIf(assembler.TaggedIsSmi(num), &return_true);
182 assembler.GotoIf(assembler.TaggedIsSmi(num), &return_false);
builtins-typedarray.cc 43 GotoIf(TaggedIsSmi(receiver), &receiver_is_incompatible);
98 GotoIf(TaggedIsSmi(receiver), &throw_bad_receiver);
builtins-promise.cc 57 CSA_ASSERT(this, TaggedIsSmi(status));
161 GotoIf(TaggedIsSmi(resolve), &if_notcallable);
166 GotoIf(TaggedIsSmi(reject), &if_notcallable);
236 GotoIf(TaggedIsSmi(value), &throw_exception);
431 GotoIf(TaggedIsSmi(on_resolve), &if_onresolvenotcallable);
449 GotoIf(TaggedIsSmi(on_reject), &if_onrejectnotcallable);
691 GotoIf(TaggedIsSmi(result), &fulfill);
769 GotoIf(TaggedIsSmi(then), &fulfill);
792 GotoIf(TaggedIsSmi(result), &enqueue);
    [all...]
builtins-math.cc 44 Branch(TaggedIsSmi(x), &if_xissmi, &if_xisnotsmi);
122 Branch(TaggedIsSmi(x), &if_xissmi, &if_xisnotsmi);
238 Branch(TaggedIsSmi(x), &if_xissmi, &if_xisnotsmi);
builtins-array.cc 271 assembler.GotoIf(assembler.TaggedIsSmi(arg), &default_label);
581 GotoIf(TaggedIsSmi(callbackfn), &type_exception);
    [all...]
builtins-string.cc 713 GotoIfNot(TaggedIsSmi(position), &return_emptystring);
752 GotoIfNot(TaggedIsSmi(position), &return_nan);
876 CSA_ASSERT(this, TaggedIsSmi(position));
    [all...]
builtins-function.cc 292 assembler.GotoIf(assembler.TaggedIsSmi(receiver), &slow);
330 assembler.GotoIf(assembler.TaggedIsSmi(maybe_length_accessor), &slow);
344 assembler.GotoIf(assembler.TaggedIsSmi(maybe_name_accessor), &slow);
builtins-regexp.cc 289 GotoIfNot(TaggedIsSmi(lastindex), &if_isoob);
389 GotoIf(TaggedIsSmi(maybe_receiver), &throw_exception);
649 GotoIf(TaggedIsSmi(maybe_receiver), &out);
764 GotoIf(TaggedIsSmi(pattern), &next);
873 GotoIf(TaggedIsSmi(maybe_pattern), &next);
912 GotoIf(TaggedIsSmi(receiver), &if_isnotjsregexp);
    [all...]
builtins-sharedarraybuffer.cc 40 a->Branch(a->TaggedIsSmi(tagged), &is_smi, &not_smi);
107 a->Branch(a->TaggedIsSmi(number_index), &if_numberissmi, &if_numberisnotsmi);
builtins-object.cc 52 Branch(TaggedIsSmi(object), &return_false, &if_objectisnotsmi);
128 Branch(TaggedIsSmi(object), if_notstring, &if_notsmi);
274 GotoIf(TaggedIsSmi(value), &return_number);
330 GotoIf(TaggedIsSmi(properties), &call_runtime);
    [all...]
builtins-date.cc     [all...]
builtins-constructor.cc 230 GotoIf(TaggedIsSmi(initial_map), call_runtime);
  /external/v8/src/
code-stubs.cc 543 assembler->Branch(assembler->TaggedIsSmi(lhs), &if_lhsissmi, &if_lhsisnotsmi);
549 assembler->Branch(assembler->TaggedIsSmi(rhs), &if_rhsissmi,
607 assembler->Branch(assembler->TaggedIsSmi(rhs), &if_rhsissmi,
654 assembler->GotoIf(assembler->TaggedIsSmi(rhs),
672 assembler->GotoIf(assembler->TaggedIsSmi(rhs), &call_with_any_feedback);
749 assembler->Branch(assembler->TaggedIsSmi(lhs), &if_lhsissmi, &if_lhsisnotsmi);
755 assembler->Branch(assembler->TaggedIsSmi(rhs), &if_rhsissmi,
815 assembler->Branch(assembler->TaggedIsSmi(rhs), &if_rhsissmi,
863 assembler->Branch(assembler->TaggedIsSmi(rhs), &if_rhsissmi,
943 assembler->Branch(assembler->TaggedIsSmi(lhs), &lhs_is_smi, &lhs_is_not_smi)
    [all...]
code-stub-assembler.cc 591 Node* CodeStubAssembler::TaggedIsSmi(Node* a) {
643 GotoIf(TaggedIsSmi(object), if_false);
652 GotoIf(TaggedIsSmi(object), if_false);
663 GotoIf(TaggedIsSmi(object), if_false);
851 Branch(TaggedIsSmi(value), &if_valueissmi, &if_valueisnotsmi);
    [all...]
code-stub-assembler.h 281 Node* TaggedIsSmi(Node* a);
    [all...]
  /external/v8/src/interpreter/
interpreter-intrinsics.cc 126 __ GotoIf(__ TaggedIsSmi(arg), &return_false);
157 __ GotoIf(__ TaggedIsSmi(arg), &return_false);
202 __ Branch(__ TaggedIsSmi(arg), &if_smi, &if_not_smi);
313 __ GotoIf(__ TaggedIsSmi(sync_iterator), &not_receiver);
interpreter.cc     [all...]
interpreter-assembler.cc 589 Node* is_smi = TaggedIsSmi(function);
653 Node* is_smi = TaggedIsSmi(function);
767 Node* is_smi = TaggedIsSmi(constructor);
816 Node* is_smi = TaggedIsSmi(feedback_value);
    [all...]
  /external/v8/src/ic/
accessor-assembler.cc 157 Branch(TaggedIsSmi(handler), &if_smi_handler, &try_proto_handler);
333 CSA_ASSERT(this, TaggedIsSmi(smi_handler));
352 Branch(TaggedIsSmi(maybe_holder_cell), &array_handler, &tuple_handler);
473 Branch(TaggedIsSmi(handler), &if_smi_handler, &if_nonsmi_handler);
555 CSA_ASSERT(this, TaggedIsSmi(smi_handler));
560 Branch(TaggedIsSmi(maybe_transition_cell), &array_handler, &tuple_handler);
754 GotoIf(TaggedIsSmi(value), bailout);
771 GotoIf(TaggedIsSmi(maybe_field_type), &done);
780 GotoIfNot(TaggedIsSmi(value), bailout);
    [all...]
keyed-store-generic.cc 277 GotoIfNot(TaggedIsSmi(value), &non_smi_value);
633 { Branch(TaggedIsSmi(value), &all_fine, bailout); }
637 GotoIf(TaggedIsSmi(value), &all_fine);
649 GotoIf(TaggedIsSmi(value), bailout);
    [all...]

Completed in 267 milliseconds