HomeSort by relevance Sort by last modified time
    Searched defs:IsSmi (Results 1 - 11 of 11) sorted by null

  /external/v8/src/interpreter/
interpreter-intrinsics.cc 197 Node* IntrinsicsHelper::IsSmi(Node* input, Node* arg_count, Node* context) {
  /external/v8/src/
property-details.h 180 bool IsSmi() const { return kind_ == kSmi; }
181 bool IsSmiOrTagged() const { return IsSmi() || IsTagged(); }
183 bool IsSmiOrInteger32() const { return IsSmi() || IsInteger32(); }
190 IsSmi() || IsInteger32() || IsDouble();
objects.h     [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 471 bool LCodeGen::IsSmi(LConstantOperand* op) const {
472 return chunk_->LookupLiteralRepresentation(op).IsSmi();
509 if (r.IsSmi()) {
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 448 bool LCodeGen::IsSmi(LConstantOperand* op) const {
449 return chunk_->LookupLiteralRepresentation(op).IsSmi();
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 400 } else if (r.IsSmi()) {
468 bool LCodeGen::IsSmi(LConstantOperand* op) const {
469 return chunk_->LookupLiteralRepresentation(op).IsSmi();
506 if (r.IsSmi()) {
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.cc 383 } else if (r.IsSmi()) {
451 bool LCodeGen::IsSmi(LConstantOperand* op) const {
452 return chunk_->LookupLiteralRepresentation(op).IsSmi();
491 if (r.IsSmi()) {
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 417 if (IsSmi(const_op)) {
443 bool LCodeGen::IsSmi(LConstantOperand* op) const {
444 return chunk_->LookupLiteralRepresentation(op).IsSmi();
481 if (r.IsSmi()) {
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-codegen-s390.cc 398 if (IsSmi(const_op)) {
420 bool LCodeGen::IsSmi(LConstantOperand* op) const {
421 return chunk_->LookupLiteralRepresentation(op).IsSmi();
453 if (r.IsSmi()) {
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc 716 bool LCodeGen::IsSmi(LConstantOperand* op) const {
717 return chunk_->LookupLiteralRepresentation(op).IsSmi();
    [all...]

Completed in 344 milliseconds