OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
400 bool IsHeapNumber() const { | 400 bool IsHeapNumber() const { |
401 ASSERT(type_ != kUninitialized); | 401 ASSERT(type_ != kUninitialized); |
402 return ((type_ & kHeapNumber) == kHeapNumber); | 402 return ((type_ & kHeapNumber) == kHeapNumber); |
403 } | 403 } |
404 | 404 |
405 bool IsString() const { | 405 bool IsString() const { |
406 ASSERT(type_ != kUninitialized); | 406 ASSERT(type_ != kUninitialized); |
407 return ((type_ & kString) == kString); | 407 return ((type_ & kString) == kString); |
408 } | 408 } |
409 | 409 |
410 bool IsNonString() const { | |
411 return (IsTaggedPrimitive() || IsSmi() || IsHeapNumber() || | |
Toon Verwaest
2013/07/22 16:46:45
Nit: remove () around the expression.
| |
412 IsBoolean() || IsJSArray()); | |
413 } | |
414 | |
410 bool IsBoolean() const { | 415 bool IsBoolean() const { |
411 ASSERT(type_ != kUninitialized); | 416 ASSERT(type_ != kUninitialized); |
412 return ((type_ & kBoolean) == kBoolean); | 417 return ((type_ & kBoolean) == kBoolean); |
413 } | 418 } |
414 | 419 |
415 bool IsNonPrimitive() const { | 420 bool IsNonPrimitive() const { |
416 ASSERT(type_ != kUninitialized); | 421 ASSERT(type_ != kUninitialized); |
417 return ((type_ & kNonPrimitive) == kNonPrimitive); | 422 return ((type_ & kNonPrimitive) == kNonPrimitive); |
418 } | 423 } |
419 | 424 |
(...skipping 2923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3343 if (HasInteger32Value()) return Representation::Integer32(); | 3348 if (HasInteger32Value()) return Representation::Integer32(); |
3344 if (HasNumberValue()) return Representation::Double(); | 3349 if (HasNumberValue()) return Representation::Double(); |
3345 return Representation::Tagged(); | 3350 return Representation::Tagged(); |
3346 } | 3351 } |
3347 | 3352 |
3348 virtual bool EmitAtUses(); | 3353 virtual bool EmitAtUses(); |
3349 virtual void PrintDataTo(StringStream* stream); | 3354 virtual void PrintDataTo(StringStream* stream); |
3350 virtual HType CalculateInferredType(); | 3355 virtual HType CalculateInferredType(); |
3351 bool IsInteger() { return handle()->IsSmi(); } | 3356 bool IsInteger() { return handle()->IsSmi(); } |
3352 HConstant* CopyToRepresentation(Representation r, Zone* zone) const; | 3357 HConstant* CopyToRepresentation(Representation r, Zone* zone) const; |
3353 HConstant* CopyToTruncatedInt32(Zone* zone) const; | 3358 Maybe<HConstant*> CopyToTruncatedInt32(Zone* zone); |
3359 Maybe<HConstant*> CopyToTruncatedNumber(Zone* zone); | |
3354 bool HasInteger32Value() const { return has_int32_value_; } | 3360 bool HasInteger32Value() const { return has_int32_value_; } |
3355 int32_t Integer32Value() const { | 3361 int32_t Integer32Value() const { |
3356 ASSERT(HasInteger32Value()); | 3362 ASSERT(HasInteger32Value()); |
3357 return int32_value_; | 3363 return int32_value_; |
3358 } | 3364 } |
3359 bool HasSmiValue() const { return has_smi_value_; } | 3365 bool HasSmiValue() const { return has_smi_value_; } |
3360 bool HasDoubleValue() const { return has_double_value_; } | 3366 bool HasDoubleValue() const { return has_double_value_; } |
3361 double DoubleValue() const { | 3367 double DoubleValue() const { |
3362 ASSERT(HasDoubleValue()); | 3368 ASSERT(HasDoubleValue()); |
3363 return double_value_; | 3369 return double_value_; |
(...skipping 3317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6681 virtual bool IsDeletable() const { return true; } | 6687 virtual bool IsDeletable() const { return true; } |
6682 }; | 6688 }; |
6683 | 6689 |
6684 | 6690 |
6685 #undef DECLARE_INSTRUCTION | 6691 #undef DECLARE_INSTRUCTION |
6686 #undef DECLARE_CONCRETE_INSTRUCTION | 6692 #undef DECLARE_CONCRETE_INSTRUCTION |
6687 | 6693 |
6688 } } // namespace v8::internal | 6694 } } // namespace v8::internal |
6689 | 6695 |
6690 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 6696 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |