HomeSort by relevance Sort by last modified time
    Searched refs:Smi (Results 51 - 75 of 263) sorted by null

1 23 4 5 6 7 8 91011

  /external/v8/src/arm/
full-codegen-arm.cc 70 // the inlined smi code.
83 // the inlined smi code.
141 Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget)));
241 __ mov(r1, Operand(Smi::FromInt(num_parameters)));
319 __ mov(r0, Operand(Smi::FromInt(0)));
326 __ sub(r3, r3, Operand(Smi::FromInt(delta)), SetCC);
335 reset_value = Smi::kMaxValue;
342 __ mov(r3, Operand(Smi::FromInt(reset_value)));
558 if (Smi::cast(*lit)->value() == 0)
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 137 Smi::FromInt(Compiler::kCallsUntilPrimitiveOpt));
143 Smi::FromInt(-1));
250 __ Push(Smi::FromInt(num_parameters));
487 if (Smi::cast(*lit)->value() == 0) {
750 // We know that we have written a function, which is not a smi.
779 __ Push(Smi::FromInt(attr));
789 __ Push(Smi::FromInt(0)); // Indicates no initial value.
802 __ Push(Smi::FromInt(DeclareGlobalsFlags()));
    [all...]
  /external/v8/src/
runtime.cc 88 // Cast the given argument to a Smi and store its value in an int variable
89 // with the given name. If the argument is not a Smi call IllegalOperation
111 // variable with the given name. If the argument is not a Smi call
115 PropertyDetails name = PropertyDetails(Smi::cast(args[index]));
469 static_cast<ElementsKind>(Smi::cast(elements->get(0))->value());
523 object->set_length(Smi::FromInt(copied_elements_values->length()));
813 weakmap->set_next(Smi::FromInt(0));
    [all...]
liveobjectlist.cc 56 v(Smi, "unexpected: Smi") \
600 Smi::FromInt(obj_id),
612 Smi::FromInt(size),
742 Smi::kMaxValue,
904 Smi::kMaxValue,
1019 // "Nullifies" (convert the HeapObject* into an SMI) so that it will get cleaned
1043 // SMI), it would/should show up before the equivalent dups that have not
    [all...]
bootstrapper.h 77 Script::cast(shared->script())->set_type(Smi::FromInt(type_));
frames-inl.h 187 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR);
194 return marker == Smi::FromInt(StackFrame::CONSTRUCT);
handles.cc 472 array->set(i, Smi::FromInt(line_ends[i]));
487 if ((Smi::cast(line_ends_array->get(0)))->value() >= code_pos) {
494 if ((Smi::cast(line_ends_array->get(left + half)))->value() > code_pos) {
513 Smi::cast(line_ends_array->get(line_number - 1))->value();
735 sort_array->set(index, Smi::FromInt(details.index()));
745 indices->set(index, Smi::FromInt(field_index));
746 sort_array2->set(index, Smi::FromInt(details.index()));
763 indices.is_null() ? Object::cast(Smi::FromInt(0))
    [all...]
objects-printer.cc 47 Smi::cast(this_as_object)->SmiPrint(out);
681 weekdays[weekday()->IsSmi() ? Smi::cast(weekday())->value() + 1 : 0],
682 year()->IsSmi() ? Smi::cast(year())->value() : -1,
683 month()->IsSmi() ? Smi::cast(month())->value() : -1,
684 day()->IsSmi() ? Smi::cast(day())->value() : -1,
685 hour()->IsSmi() ? Smi::cast(hour())->value() : -1,
686 min()->IsSmi() ? Smi::cast(min())->value() : -1,
687 sec()->IsSmi() ? Smi::cast(sec())->value() : -1);
objects.cc 116 return Isolate::Current()->heap()->ToBoolean(Smi::cast(this)->value() != 0);
740 return Smi::FromInt(hash & Smi::kMaxValue);
744 return Smi::FromInt(hash);
748 return Smi::FromInt(hash);
755 return Smi::FromInt(0);
788 Smi::cast(this)->SmiPrint(accumulator);
797 void Smi::SmiPrint(FILE* out) {
802 void Smi::SmiPrint(StringStream* accumulator) {
    [all...]
deoptimizer.h 430 Smi* GetState() const { return state_; }
431 void SetState(Smi* state) { state_ = state; }
493 Smi* state_;
654 if (Smi::IsValid(value)) {
655 return Handle<Object>(Smi::FromInt(value));
  /external/v8/src/mips/
full-codegen-mips.cc 80 // the inlined smi code.
91 // the inlined smi code.
149 Handle<Smi>(Smi::FromInt(FLAG_interrupt_budget)));
248 __ li(a1, Operand(Smi::FromInt(num_parameters)));
321 ASSERT(Smi::FromInt(0) == 0);
329 __ Subu(a3, a3, Operand(Smi::FromInt(delta)));
338 reset_value = Smi::kMaxValue;
345 __ li(a3, Operand(Smi::FromInt(reset_value)));
566 if (Smi::cast(*lit)->value() == 0)
    [all...]
  /external/chromium_org/v8/src/
types.h 52 // Smi <= Signed32
103 V(Smi, 1 << 3) \
235 int as_bitset() { return Smi::cast(this)->value(); }
250 return static_cast<Type*>(Object::cast(Smi::FromInt(bitset)));