- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
what header files are used for __int64 data types? where can i get the intrinsic instructions for __int64?
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you're discussing Microsoft usage, no header is required by ICL (under Windows). For non-Microsoft-compatible compilers, you should change to data types defined in .
If you're trying to sort out which intrinsics from immintrin.h involve 64-bit integers, that's a sore point, it's not organized to make it easy. The organization is somewhat different between open and closed source versions. I don't know that you can do better than the like of grep __m64 *intrin.h in the include directory tied to your compiler. immintrin.h includes all its predecessors.
Other proprietary compilers, such as CL, have their own intrinsics.
If you're trying to sort out which intrinsics from immintrin.h involve 64-bit integers, that's a sore point, it's not organized to make it easy. The organization is somewhat different between open and closed source versions. I don't know that you can do better than the like of grep __m64 *intrin.h in the include directory tied to your compiler. immintrin.h includes all its predecessors.
Other proprietary compilers, such as CL, have their own intrinsics.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page