OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 // Compile time assertion: sizeof(Dest) == sizeof(Source) | 747 // Compile time assertion: sizeof(Dest) == sizeof(Source) |
748 // A compile error here means your Dest and Source have different sizes. | 748 // A compile error here means your Dest and Source have different sizes. |
749 typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1]; | 749 typedef char VerifySizesAreEqual[sizeof(Dest) == sizeof(Source) ? 1 : -1]; |
750 | 750 |
751 Dest dest; | 751 Dest dest; |
752 memcpy(&dest, &source, sizeof(dest)); | 752 memcpy(&dest, &source, sizeof(dest)); |
753 return dest; | 753 return dest; |
754 } | 754 } |
755 | 755 |
756 template <class Dest, class Source> | 756 template <class Dest, class Source> |
757 inline Dest BitCast(Source* source) { | 757 inline Dest BitCast(Source*& source) { |
758 return BitCast<Dest>(reinterpret_cast<uintptr_t>(source)); | 758 return BitCast<Dest>(reinterpret_cast<uintptr_t>(source)); |
759 } | 759 } |
760 | 760 |
761 } } // namespace v8::internal | 761 } } // namespace v8::internal |
762 | 762 |
763 #endif // V8_UTILS_H_ | 763 #endif // V8_UTILS_H_ |
OLD | NEW |