mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Common: remove a mod from AlignUp (#5441)
In cases where the size is not a known constant when inlining, AlignUp<std::size_t> currently generates two 64-bit div instructions. This generates one div and a cmov which is significantly cheaper.
This commit is contained in:
		
							parent
							
								
									835efd321e
								
							
						
					
					
						commit
						bd7ee8c315
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		|  | @ -10,7 +10,9 @@ namespace Common { | |||
| template <typename T> | ||||
| constexpr T AlignUp(T value, std::size_t size) { | ||||
|     static_assert(std::is_unsigned_v<T>, "T must be an unsigned value."); | ||||
|     return static_cast<T>(value + (size - value % size) % size); | ||||
|     auto mod{value % size}; | ||||
|     value -= mod; | ||||
|     return static_cast<T>(mod == T{0} ? value : value + size); | ||||
| } | ||||
| 
 | ||||
| template <typename T> | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue