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 1861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1872 }; | 1872 }; |
1873 | 1873 |
1874 | 1874 |
1875 /** | 1875 /** |
1876 * A JavaScript number value (ECMA-262, 4.3.20) | 1876 * A JavaScript number value (ECMA-262, 4.3.20) |
1877 */ | 1877 */ |
1878 class V8EXPORT Number : public Primitive { | 1878 class V8EXPORT Number : public Primitive { |
1879 public: | 1879 public: |
1880 double Value() const; | 1880 double Value() const; |
1881 static Local<Number> New(double value); | 1881 static Local<Number> New(double value); |
1882 static Local<Number> New(Isolate* isolate, double value); | |
1882 V8_INLINE(static Number* Cast(v8::Value* obj)); | 1883 V8_INLINE(static Number* Cast(v8::Value* obj)); |
1883 private: | 1884 private: |
1884 Number(); | 1885 Number(); |
1885 static void CheckCast(v8::Value* obj); | 1886 static void CheckCast(v8::Value* obj); |
1886 }; | 1887 }; |
1887 | 1888 |
1888 | 1889 |
1889 /** | 1890 /** |
1890 * A JavaScript value representing a signed integer. | 1891 * A JavaScript value representing a signed integer. |
1891 */ | 1892 */ |
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2733 }; | 2734 }; |
2734 | 2735 |
2735 | 2736 |
2736 template<typename T> | 2737 template<typename T> |
2737 class V8EXPORT ReturnValue { | 2738 class V8EXPORT ReturnValue { |
2738 public: | 2739 public: |
2739 V8_INLINE(explicit ReturnValue(internal::Object** slot)); | 2740 V8_INLINE(explicit ReturnValue(internal::Object** slot)); |
2740 // Handle setters | 2741 // Handle setters |
2741 V8_INLINE(void Set(const Persistent<T>& handle)); | 2742 V8_INLINE(void Set(const Persistent<T>& handle)); |
2742 V8_INLINE(void Set(const Handle<T> handle)); | 2743 V8_INLINE(void Set(const Handle<T> handle)); |
2743 // TODO(dcarney): implement | |
2744 // Fast primitive setters | 2744 // Fast primitive setters |
2745 // V8_INLINE(void Set(Isolate* isolate, bool)); | 2745 V8_INLINE(void Set(Isolate* isolate, bool value)); |
2746 // V8_INLINE(void Set(Isolate* isolate, float i)); | 2746 V8_INLINE(void Set(Isolate* isolate, float i)); |
2747 // V8_INLINE(void Set(Isolate* isolate, double i)); | 2747 V8_INLINE(void Set(Isolate* isolate, double i)); |
2748 // V8_INLINE(void Set(Isolate* isolate, int32_t i)); | 2748 V8_INLINE(void Set(Isolate* isolate, int32_t i)); |
2749 // V8_INLINE(void Set(Isolate* isolate, uint32_t i)); | 2749 V8_INLINE(void Set(Isolate* isolate, uint32_t i)); |
2750 // Fast JS primitive setters | 2750 // Fast JS primitive setters |
2751 // V8_INLINE(void SetNull(Isolate* isolate)); | 2751 V8_INLINE(void SetNull(Isolate* isolate)); |
2752 // V8_INLINE(void SetUndefined(Isolate* isolate)); | 2752 V8_INLINE(void SetUndefined(Isolate* isolate)); |
2753 private: | 2753 private: |
2754 internal::Object** value_; | 2754 internal::Object** value_; |
2755 }; | 2755 }; |
2756 | 2756 |
2757 | 2757 |
2758 /** | 2758 /** |
2759 * The argument information given to function call callbacks. This | 2759 * The argument information given to function call callbacks. This |
2760 * class provides access to information about the context of the call, | 2760 * class provides access to information about the context of the call, |
2761 * including the receiver, the number and values of arguments, and | 2761 * including the receiver, the number and values of arguments, and |
2762 * the holder of the function. | 2762 * the holder of the function. |
(...skipping 2371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5134 const int kHeapObjectTagSize = 2; | 5134 const int kHeapObjectTagSize = 2; |
5135 const intptr_t kHeapObjectTagMask = (1 << kHeapObjectTagSize) - 1; | 5135 const intptr_t kHeapObjectTagMask = (1 << kHeapObjectTagSize) - 1; |
5136 | 5136 |
5137 // Tag information for Smi. | 5137 // Tag information for Smi. |
5138 const int kSmiTag = 0; | 5138 const int kSmiTag = 0; |
5139 const int kSmiTagSize = 1; | 5139 const int kSmiTagSize = 1; |
5140 const intptr_t kSmiTagMask = (1 << kSmiTagSize) - 1; | 5140 const intptr_t kSmiTagMask = (1 << kSmiTagSize) - 1; |
5141 | 5141 |
5142 template <size_t ptr_size> struct SmiTagging; | 5142 template <size_t ptr_size> struct SmiTagging; |
5143 | 5143 |
5144 template<int kSmiShiftSize> | |
5145 V8_INLINE(internal::Object* IntToSmi(int value)) { | |
Sven Panne
2013/05/21 14:14:56
I think returning internal::Smi* (here and below)
dcarney
2013/05/21 15:14:44
it makes casting in v8.h much worse, since we can'
| |
5146 int smi_shift_bits = kSmiTagSize + kSmiShiftSize; | |
5147 intptr_t tagged_value = | |
5148 (static_cast<intptr_t>(value) << smi_shift_bits) | kSmiTag; | |
5149 return reinterpret_cast<internal::Object*>(tagged_value); | |
5150 } | |
5151 | |
5144 // Smi constants for 32-bit systems. | 5152 // Smi constants for 32-bit systems. |
5145 template <> struct SmiTagging<4> { | 5153 template <> struct SmiTagging<4> { |
5146 static const int kSmiShiftSize = 0; | 5154 static const int kSmiShiftSize = 0; |
5147 static const int kSmiValueSize = 31; | 5155 static const int kSmiValueSize = 31; |
5148 V8_INLINE(static int SmiToInt(internal::Object* value)) { | 5156 V8_INLINE(static int SmiToInt(internal::Object* value)) { |
5149 int shift_bits = kSmiTagSize + kSmiShiftSize; | 5157 int shift_bits = kSmiTagSize + kSmiShiftSize; |
5150 // Throw away top 32 bits and shift down (requires >> to be sign extending). | 5158 // Throw away top 32 bits and shift down (requires >> to be sign extending). |
5151 return static_cast<int>(reinterpret_cast<intptr_t>(value)) >> shift_bits; | 5159 return static_cast<int>(reinterpret_cast<intptr_t>(value)) >> shift_bits; |
5152 } | 5160 } |
5161 V8_INLINE(static internal::Object* IntToSmi(int value)) { | |
5162 return internal::IntToSmi<kSmiShiftSize>(value); | |
5163 } | |
5164 V8_INLINE(static bool IsValidSmi(intptr_t value)) { | |
5165 // To be representable as an tagged small integer, the two | |
5166 // most-significant bits of 'value' must be either 00 or 11 due to | |
5167 // sign-extension. To check this we add 01 to the two | |
5168 // most-significant bits, and check if the most-significant bit is 0 | |
5169 // | |
5170 // CAUTION: The original code below: | |
5171 // bool result = ((value + 0x40000000) & 0x80000000) == 0; | |
5172 // may lead to incorrect results according to the C language spec, and | |
5173 // in fact doesn't work correctly with gcc4.1.1 in some cases: The | |
5174 // compiler may produce undefined results in case of signed integer | |
5175 // overflow. The computation must be done w/ unsigned ints. | |
5176 return static_cast<uintptr_t>(value + 0x40000000U) < 0x80000000U; | |
5177 } | |
5153 }; | 5178 }; |
5154 | 5179 |
5155 // Smi constants for 64-bit systems. | 5180 // Smi constants for 64-bit systems. |
5156 template <> struct SmiTagging<8> { | 5181 template <> struct SmiTagging<8> { |
5157 static const int kSmiShiftSize = 31; | 5182 static const int kSmiShiftSize = 31; |
5158 static const int kSmiValueSize = 32; | 5183 static const int kSmiValueSize = 32; |
5159 V8_INLINE(static int SmiToInt(internal::Object* value)) { | 5184 V8_INLINE(static int SmiToInt(internal::Object* value)) { |
5160 int shift_bits = kSmiTagSize + kSmiShiftSize; | 5185 int shift_bits = kSmiTagSize + kSmiShiftSize; |
5161 // Shift down and throw away top 32 bits. | 5186 // Shift down and throw away top 32 bits. |
5162 return static_cast<int>(reinterpret_cast<intptr_t>(value) >> shift_bits); | 5187 return static_cast<int>(reinterpret_cast<intptr_t>(value) >> shift_bits); |
5163 } | 5188 } |
5189 V8_INLINE(static internal::Object* IntToSmi(int value)) { | |
5190 return internal::IntToSmi<kSmiShiftSize>(value); | |
5191 } | |
5192 V8_INLINE(static bool IsValidSmi(intptr_t value)) { | |
5193 // To be representable as a long smi, the value must be a 32-bit integer. | |
5194 return (value == static_cast<int32_t>(value)); | |
5195 } | |
5164 }; | 5196 }; |
5165 | 5197 |
5166 typedef SmiTagging<kApiPointerSize> PlatformSmiTagging; | 5198 typedef SmiTagging<kApiPointerSize> PlatformSmiTagging; |
5167 const int kSmiShiftSize = PlatformSmiTagging::kSmiShiftSize; | 5199 const int kSmiShiftSize = PlatformSmiTagging::kSmiShiftSize; |
5168 const int kSmiValueSize = PlatformSmiTagging::kSmiValueSize; | 5200 const int kSmiValueSize = PlatformSmiTagging::kSmiValueSize; |
5169 | 5201 |
5170 /** | 5202 /** |
5171 * This class exports constants and functionality from within v8 that | 5203 * This class exports constants and functionality from within v8 that |
5172 * is necessary to implement inline functions in the v8 api. Don't | 5204 * is necessary to implement inline functions in the v8 api. Don't |
5173 * depend on functions and constants defined here. | 5205 * depend on functions and constants defined here. |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5218 | 5250 |
5219 V8_INLINE(static bool HasHeapObjectTag(internal::Object* value)) { | 5251 V8_INLINE(static bool HasHeapObjectTag(internal::Object* value)) { |
5220 return ((reinterpret_cast<intptr_t>(value) & kHeapObjectTagMask) == | 5252 return ((reinterpret_cast<intptr_t>(value) & kHeapObjectTagMask) == |
5221 kHeapObjectTag); | 5253 kHeapObjectTag); |
5222 } | 5254 } |
5223 | 5255 |
5224 V8_INLINE(static int SmiValue(internal::Object* value)) { | 5256 V8_INLINE(static int SmiValue(internal::Object* value)) { |
5225 return PlatformSmiTagging::SmiToInt(value); | 5257 return PlatformSmiTagging::SmiToInt(value); |
5226 } | 5258 } |
5227 | 5259 |
5260 V8_INLINE(static internal::Object* IntToSmi(int value)) { | |
5261 return PlatformSmiTagging::IntToSmi(value); | |
5262 } | |
5263 | |
5264 V8_INLINE(static bool IsValidSmi(intptr_t value)) { | |
5265 return PlatformSmiTagging::IsValidSmi(value); | |
5266 } | |
5267 | |
5228 V8_INLINE(static int GetInstanceType(internal::Object* obj)) { | 5268 V8_INLINE(static int GetInstanceType(internal::Object* obj)) { |
5229 typedef internal::Object O; | 5269 typedef internal::Object O; |
5230 O* map = ReadField<O*>(obj, kHeapObjectMapOffset); | 5270 O* map = ReadField<O*>(obj, kHeapObjectMapOffset); |
5231 return ReadField<uint8_t>(map, kMapInstanceTypeOffset); | 5271 return ReadField<uint8_t>(map, kMapInstanceTypeOffset); |
5232 } | 5272 } |
5233 | 5273 |
5234 V8_INLINE(static int GetOddballKind(internal::Object* obj)) { | 5274 V8_INLINE(static int GetOddballKind(internal::Object* obj)) { |
5235 typedef internal::Object O; | 5275 typedef internal::Object O; |
5236 return SmiValue(ReadField<O*>(obj, kOddballKindOffset)); | 5276 return SmiValue(ReadField<O*>(obj, kOddballKindOffset)); |
5237 } | 5277 } |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5593 template <class T> | 5633 template <class T> |
5594 uint16_t Persistent<T>::WrapperClassId(Isolate* isolate) const { | 5634 uint16_t Persistent<T>::WrapperClassId(Isolate* isolate) const { |
5595 typedef internal::Internals I; | 5635 typedef internal::Internals I; |
5596 if (this->IsEmpty()) return 0; | 5636 if (this->IsEmpty()) return 0; |
5597 if (!I::IsInitialized(isolate)) return 0; | 5637 if (!I::IsInitialized(isolate)) return 0; |
5598 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_); | 5638 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_); |
5599 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + I::kNodeClassIdOffset; | 5639 uint8_t* addr = reinterpret_cast<uint8_t*>(obj) + I::kNodeClassIdOffset; |
5600 return *reinterpret_cast<uint16_t*>(addr); | 5640 return *reinterpret_cast<uint16_t*>(addr); |
5601 } | 5641 } |
5602 | 5642 |
5643 | |
5603 template<typename T> | 5644 template<typename T> |
5604 ReturnValue<T>::ReturnValue(internal::Object** slot) : value_(slot) {} | 5645 ReturnValue<T>::ReturnValue(internal::Object** slot) : value_(slot) {} |
5605 | 5646 |
5606 template<typename T> | 5647 template<typename T> |
5607 void ReturnValue<T>::Set(const Persistent<T>& handle) { | 5648 void ReturnValue<T>::Set(const Persistent<T>& handle) { |
5608 *value_ = *reinterpret_cast<internal::Object**>(*handle); | 5649 *value_ = *reinterpret_cast<internal::Object**>(*handle); |
5609 } | 5650 } |
5610 | 5651 |
5611 template<typename T> | 5652 template<typename T> |
5612 void ReturnValue<T>::Set(const Handle<T> handle) { | 5653 void ReturnValue<T>::Set(const Handle<T> handle) { |
5613 *value_ = *reinterpret_cast<internal::Object**>(*handle); | 5654 *value_ = *reinterpret_cast<internal::Object**>(*handle); |
5614 } | 5655 } |
5615 | 5656 |
5616 template<typename T> | 5657 template<typename T> |
5658 void ReturnValue<T>::Set(Isolate* isolate, float i) { | |
Sven Panne
2013/05/21 14:14:56
Why do we need this function if we convert to doub
dcarney
2013/05/21 15:14:44
removed
| |
5659 Set(isolate, static_cast<double>(i)); | |
5660 } | |
5661 | |
5662 template<typename T> | |
5663 void ReturnValue<T>::Set(Isolate* isolate, double i) { | |
5664 Set(Number::New(isolate, i)); | |
5665 } | |
5666 | |
5667 template<typename T> | |
5668 void ReturnValue<T>::Set(Isolate* isolate, int32_t i) { | |
5669 typedef internal::Internals I; | |
5670 if (V8_LIKELY(I::IsValidSmi(i))) { | |
5671 *value_ = I::IntToSmi(i); | |
5672 return; | |
5673 } | |
5674 Set(Integer::New(i, isolate)); | |
5675 } | |
5676 | |
5677 template<typename T> | |
5678 void ReturnValue<T>::Set(Isolate* isolate, uint32_t i) { | |
5679 typedef internal::Internals I; | |
5680 if (V8_LIKELY(I::IsValidSmi(i))) { | |
5681 *value_ = I::IntToSmi(i); | |
5682 return; | |
5683 } | |
5684 Set(Integer::NewFromUnsigned(i, isolate)); | |
5685 } | |
5686 | |
5687 template<typename T> | |
5688 void ReturnValue<T>::Set(Isolate* isolate, bool value) { | |
5689 typedef internal::Internals I; | |
5690 *value_ = *I::GetRoot( | |
5691 isolate, value ? I::kTrueValueRootIndex : I::kFalseValueRootIndex); | |
5692 } | |
5693 | |
5694 template<typename T> | |
5695 void ReturnValue<T>::SetNull(Isolate* isolate) { | |
5696 typedef internal::Internals I; | |
5697 *value_ = *I::GetRoot(isolate, I::kNullValueRootIndex); | |
5698 } | |
5699 | |
5700 template<typename T> | |
5701 void ReturnValue<T>::SetUndefined(Isolate* isolate) { | |
5702 typedef internal::Internals I; | |
5703 *value_ = *I::GetRoot(isolate, I::kUndefinedValueRootIndex); | |
5704 } | |
5705 | |
5706 | |
5707 template<typename T> | |
5617 FunctionCallbackInfo<T>::FunctionCallbackInfo(internal::Object** implicit_args, | 5708 FunctionCallbackInfo<T>::FunctionCallbackInfo(internal::Object** implicit_args, |
5618 internal::Object** values, | 5709 internal::Object** values, |
5619 int length, | 5710 int length, |
5620 bool is_construct_call) | 5711 bool is_construct_call) |
5621 : implicit_args_(implicit_args), | 5712 : implicit_args_(implicit_args), |
5622 values_(values), | 5713 values_(values), |
5623 length_(length), | 5714 length_(length), |
5624 is_construct_call_(is_construct_call) { } | 5715 is_construct_call_(is_construct_call) { } |
5625 | 5716 |
5626 | 5717 |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6185 | 6276 |
6186 | 6277 |
6187 } // namespace v8 | 6278 } // namespace v8 |
6188 | 6279 |
6189 | 6280 |
6190 #undef V8EXPORT | 6281 #undef V8EXPORT |
6191 #undef TYPE_CHECK | 6282 #undef TYPE_CHECK |
6192 | 6283 |
6193 | 6284 |
6194 #endif // V8_H_ | 6285 #endif // V8_H_ |
OLD | NEW |