From 373dc625f82b47096893add42c4472e4a57ab7eb Mon Sep 17 00:00:00 2001 From: Aki Date: Wed, 9 Feb 2022 22:23:03 +0100 Subject: Moved third-party libraries to a separate subdirectory --- Opcode/Ice/IceUtils.cpp | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 Opcode/Ice/IceUtils.cpp (limited to 'Opcode/Ice/IceUtils.cpp') diff --git a/Opcode/Ice/IceUtils.cpp b/Opcode/Ice/IceUtils.cpp deleted file mode 100644 index 890209c..0000000 --- a/Opcode/Ice/IceUtils.cpp +++ /dev/null @@ -1,39 +0,0 @@ -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -/** - * Contains misc. useful macros & defines. - * \file IceUtils.cpp - * \author Pierre Terdiman (collected from various sources) - * \date April, 4, 2000 - */ -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -// Precompiled Header -#include "StdAfx.h" - -using namespace IceCore; - -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -/** - * Returns the alignment of the input address. - * \fn Alignment() - * \param address [in] address to check - * \return the best alignment (e.g. 1 for odd addresses, etc) - */ -/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -udword IceCore::Alignment(udword address) -{ - // Returns 0 for null addresses - if(!address) return 0; - - // Test all bits - udword Align = 1; - for(udword i=1;i<32;i++) - { - // Returns as soon as the alignment is broken - if(address&Align) return Align; - Align<<=1; - } - // Here all bits are null, except the highest one (else the address would be null) - return Align; -} -- cgit v1.1