Searched defs:IsSmi (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/v8/src/
H A Dproperty-details.h149 bool IsSmi() const { return kind_ == kSmi; } function in class:v8::internal::Representation
150 bool IsSmiOrTagged() const { return IsSmi() || IsTagged(); }
152 bool IsSmiOrInteger32() const { return IsSmi() || IsInteger32(); }
159 IsSmi() || IsInteger32() || IsDouble();
H A Dobjects-inl.h160 bool Object::IsSmi() const { function in class:v8::internal::Object
280 if (representation.IsSmi() && object->IsUninitialized()) {
620 return IsSmi() || IsHeapNumber();
1064 return IsSmi()
1082 if (object->IsSmi()) return Handle<Smi>::cast(object);
1374 CHECK(READ_FIELD(this, offset)->IsSmi());
1549 if (!candidate->IsSmi() && candidate != the_hole) return false;
1756 } else if (!current->IsSmi()) {
2117 if (IsSmi()) {
2150 if (!(IsSmi() ||
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc512 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
513 return chunk_->LookupLiteralRepresentation(op).IsSmi();
550 if (r.IsSmi()) {
1698 if (instr->hydrogen()->representation().IsSmi()) {
1707 if (instr->hydrogen()->representation().IsSmi()) {
1828 if (instr->hydrogen_value()->representation().IsSmi() &&
2217 if (r.IsInteger32() || r.IsSmi()) {
2237 } else if (type.IsSmi()) {
2421 if (instr->hydrogen_value()->representation().IsSmi()) {
2428 if (instr->hydrogen_value()->representation().IsSmi()) {
[all...]
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc1208 if (r.IsSmi()) {
1319 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
1320 return chunk_->LookupLiteralRepresentation(op).IsSmi();
1854 } else if (r.IsSmi()) {
1871 } else if (type.IsSmi()) {
2509 DCHECK(instr->hydrogen_value()->representation().IsSmi());
3433 bool key_is_smi = instr->hydrogen()->key()->representation().IsSmi();
3576 bool key_is_tagged = instr->hydrogen()->key()->representation().IsSmi();
3619 bool key_is_tagged = instr->hydrogen()->key()->representation().IsSmi();
3680 if (access.representation().IsSmi()
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc554 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
555 return chunk_->LookupLiteralRepresentation(op).IsSmi();
1529 if (instr->hydrogen()->representation().IsSmi()) {
1664 if (instr->hydrogen_value()->representation().IsSmi() &&
2088 } else if (type.IsSmi()) {
2966 if (object->IsSmi()) {
3193 if (key_representation.IsSmi() && (shift_size >= 1)) {
3800 if (exponent_type.IsSmi()) {
4022 DCHECK(!representation.IsSmi() ||
4024 IsSmi(LConstantOperan
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc439 } else if (r.IsSmi()) {
507 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
508 return chunk_->LookupLiteralRepresentation(op).IsSmi();
545 if (r.IsSmi()) {
1545 if (instr->hydrogen()->representation().IsSmi()) {
1554 if (instr->hydrogen()->representation().IsSmi()) {
1673 if (instr->hydrogen_value()->representation().IsSmi() &&
2118 if (r.IsInteger32() || r.IsSmi()) {
2135 } else if (type.IsSmi()) {
2322 if (instr->hydrogen_value()->representation().IsSmi()) {
[all...]
/external/chromium_org/v8/src/mips64/
H A Dlithium-codegen-mips64.cc384 } else if (r.IsSmi()) {
452 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
453 return chunk_->LookupLiteralRepresentation(op).IsSmi();
492 if (r.IsSmi()) {
1507 if (instr->hydrogen()->representation().IsSmi()) {
1514 if (instr->hydrogen()->representation().IsSmi()) {
1519 if (instr->hydrogen()->representation().IsSmi()) {
1639 if (instr->hydrogen_value()->representation().IsSmi()) {
1689 if (!instr->hydrogen()->representation().IsSmi()) {
1885 if (!instr->hydrogen()->representation().IsSmi()) {
[all...]
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc817 bool LCodeGen::IsSmi(LConstantOperand* op) const { function in class:v8::internal::LCodeGen
818 return chunk_->LookupLiteralRepresentation(op).IsSmi();
1821 if (instr->hydrogen()->representation().IsSmi()) {
1956 if (instr->hydrogen_value()->representation().IsSmi() &&
2379 } else if (type.IsSmi()) {
3256 if (object->IsSmi()) {
3480 if (key_representation.IsSmi() && (shift_size >= 1)) {
4120 if (exponent_type.IsSmi()) {
4441 DCHECK(!representation.IsSmi() ||
4443 IsSmi(LConstantOperan
[all...]

Completed in 657 milliseconds