mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:22:43 +00:00 
			
		
		
		
	 feef542c73
			
		
	
	
		feef542c73
		
	
	
	
	
		
			
			The strings will get deduplicated when actually turned into PrimitiveString objects at runtime anyway, and keeping the string tables deduplicated was actually wasting a lot of time. 4.4% speed-up on Kraken/stanford-crypto-ccm.js :^)
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			644 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			644 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibJS/Bytecode/IdentifierTable.h>
 | |
| 
 | |
| namespace JS::Bytecode {
 | |
| 
 | |
| IdentifierTableIndex IdentifierTable::insert(DeprecatedFlyString string)
 | |
| {
 | |
|     m_identifiers.append(move(string));
 | |
|     return m_identifiers.size() - 1;
 | |
| }
 | |
| 
 | |
| DeprecatedFlyString const& IdentifierTable::get(IdentifierTableIndex index) const
 | |
| {
 | |
|     return m_identifiers[index.value()];
 | |
| }
 | |
| 
 | |
| void IdentifierTable::dump() const
 | |
| {
 | |
|     outln("Identifier Table:");
 | |
|     for (size_t i = 0; i < m_identifiers.size(); i++)
 | |
|         outln("{}: {}", i, m_identifiers[i]);
 | |
| }
 | |
| 
 | |
| }
 |