Analysis of Latest Arbitrum Stylus SDK Improvements
Arbitrum Stylus is a programming environment for Arbitrum that enables developers to write smart contracts in various programming languages (Rust, C++, C#, etc.) while maintaining full EVM compatibility. This document provides a detailed comparison between v0.6.0 and v0.8.3 versions, analyzing key differences and performance improvements.
Source Code
This analysis is based on the benchmark implementation from dsrvlabs/arbitrum-stylus-advance-feature, which provides:
- Interest calculation smart contract implementations for both v0.6.0 and v0.8.3
- Performance comparison test cases
- Detailed benchmark results
The repository contains two main implementations:
counter_v0_6_0/
: Basic interest calculation functionalitycounter_v0_8_3/
: Improved version with cache optimization
Key Version Differences
1. Storage Access Method Improvements
v0.6.0 Implementation
// Storage access method in v0.6.0
unsafe fn get_word(key: U256) -> B256 {
let mut data = B256::ZERO;
unsafe { hostio::storage_load_bytes32(B256::from(key).as_ptr(), data.as_mut_ptr()) };
data
}
v0.8.3 Implementation
// New storage access method in v0.8.3
fn get_word(vm: VM, key: U256) -> B256 {
cfg_if! {
if #[cfg(not(feature = "stylus-test"))] {
vm.storage_load_bytes32(key)
} else {
vm.host.storage_load_bytes32(key)
}
}
}
Benefits:
- Improved code stability through VM-based host environment access
- Consistent storage access method between test and production environments
- Enhanced type safety and error handling
Implementation Details:
Access Method Differences
- v0.6.0: Direct access through global module
- Creates new module instance for each access
- Higher memory allocation/deallocation overhead
- v0.8.3: Access through VM instance
- Reuses existing VM instance
- Reduced memory allocation/deallocation overhead
- v0.6.0: Direct access through global module
Compilation Optimization
- v0.6.0: Global module access
- Additional module loading overhead
- Less efficient compiler optimization
- v0.8.3: Direct VM instance access
- Better inline optimization
- More efficient code generation
- v0.6.0: Global module access
Execution Context
- v0.6.0: Global context execution
- Potential context switching overhead
- Less efficient execution environment
- v0.8.3: VM context execution
- Direct access without context switching
- More efficient execution environment
- v0.6.0: Global context execution
Gas Cost Impact
- v0.6.0: Higher gas costs
- Additional gas for global module access
- Increased gas from memory operations
- v0.8.3: Optimized gas costs
- Gas savings through VM instance reuse
- Reduced gas from efficient memory usage
- v0.6.0: Higher gas costs
2. Caching Mechanism Introduction (v0.8.3)
New Caching Structure
// Storage access with safety guarantees
pub struct StorageCache;
impl GlobalStorage for StorageCache {
fn get_word(vm: VM, key: U256) -> B256 {
cfg_if! {
if #[cfg(not(feature = "stylus-test"))] {
vm.storage_load_bytes32(key)
} else {
vm.host.storage_load_bytes32(key)
}
}
}
}
// Safe storage access with borrow checker
fn safe_storage_access(vec: &mut StorageVec<StorageU64>) -> U64 {
let value = vec.setter(0); // Returns StorageGuardMut
value.set(32.into());
value.get()
}
Benefits:
- Reduced gas costs through efficient storage access
- Improved performance for repeated storage operations
- Better memory management through VM-based caching
- Type-safe storage access with Rust borrow checker
- Prevention of storage aliasing errors
Implementation Details:
Storage Guards
StorageGuard
andStorageGuardMut
for safe access- Leverages Rust borrow checker for storage safety
- Prevents concurrent mutable access to same storage location
Cache Management
- Automatic cache invalidation on contract calls
- Efficient reuse of cached values
- Zero-cost abstractions for repeated access
Safety Features
- Compile-time checks for storage access patterns
- Prevention of storage aliasing without unsafe code
- Automatic cache flushing on cross-contract calls
Performance Comparison Analysis
Test Case 1
v0.6.0 (0xc8ea305a0b398581c86b86b6dae34a1174231e41)
Test Number | Gas Usage (gwei) | Execution Time (ms) | Cumulative Interest (ETH) |
---|---|---|---|
1 | 0.000085056 | 3237 | 0.055 |
2 | 0.000085056 | 2996 | 0.055 |
3 | 0.000085056 | 3434 | 0.055 |
4 | 0.000085056 | 3344 | 0.055 |
5 | 0.000085056 | 3041 | 0.055 |
Average | 0.000085056 | 3210.40 | 0.055 |
v0.8.3 (0xa6e239120385089595a99dfcbb4a674cfd42ccc3)
Test Number | Gas Usage (gwei) | Execution Time (ms) | Cumulative Interest (ETH) |
---|---|---|---|
1 | 0.000085056 | 3297 | 0.055 |
2 | 0.000085056 | 3448 | 0.055 |
3 | 0.000085056 | 3101 | 0.055 |
4 | 0.000085056 | 2807 | 0.055 |
5 | 0.000085056 | 3379 | 0.055 |
Average | 0.000085056 | 3206.40 | 0.055 |
Test Case 2
v0.6.0 (0x09c280d33ec019e2b13e29af5a477c69d38ebb53)
Execution Round | Gas Usage | Execution Time (ms) | Calculated Interest (ETH) |
---|---|---|---|
1 | 95,127 | 3,458 | 13.5 |
2 | 78,025 | 3,639 | 13.77003645 |
3 | 78,025 | 3,068 | 13.770037179098415 |
4 | 78,024 | 3,540 | 13.770037179100383565 |
5 | 78,024 | 3,524 | 13.770037179100383571 |
Average | 81,445 | 3,445.80 | 13.72 |
v0.8.3 (0x71f1e0c42428e04786f7a1009367904862a62666)
Execution Round | Gas Usage | Execution Time (ms) | Calculated Interest (ETH) |
---|---|---|---|
1 | 60,860 | 3,057 | 708.6 |
2 | 60,860 | 3,600 | 922.1 |
3 | 60,860 | 3,067 | 1,135.6 |
4 | 60,860 | 3,215 | 1,349.1 |
5 | 60,860 | 3,307 | 1,562.6 |
Average | 60,860 | 3,249.20 | 1,135.60 |
Performance Improvement Analysis
Gas Usage
- 22-25% reduction in v0.8.3
- Enhanced efficiency through caching mechanism
Execution Time
- 0.12% improvement in v0.8.3
- Enhanced operation speed through binary exponentiation
Interest Calculation
- Higher interest calculation in v0.8.3
- Utilization of accumulated calculation results through caching system
Stability
- More consistent gas usage in v0.8.3
- Improved stability through enhanced state management
Conclusion
Arbitrum Stylus v0.8.3 shows significant improvements over v0.6.0:
- 22-25% improvement in gas efficiency
- Slight improvement in execution time
- More accurate interest calculation
- Enhanced stability
These improvements are particularly pronounced in scenarios involving complex logic and large state changes, where the new caching mechanism and optimized storage access methods can provide even greater efficiency gains. The VM-based approach and improved memory management make it especially effective for handling large-scale operations and complex contract interactions.
These improvements are primarily attributed to the introduction of caching mechanisms and algorithm optimizations, providing developers with a more efficient and stable development environment.