DEV Community

Cover image for Loops in Yul
Shlok Kumar
Shlok Kumar

Posted on

Loops in Yul

Loops in Yul are a feature that allows you to execute a block of code multiple times until a certain condition is met.

Loops are an essential part of programming languages, and Yul is no exception. Yul is a low-level language that is used to write smart contracts on the Ethereum blockchain. It is similar to assembly language and is designed to be efficient and easy to optimize. A loop is a programming construct that allows you to repeat a block of code multiple times.

There are two types of loops in Yul: for loops and while loops. A for loop is used when you know the number of times you want to repeat a block of code.

Currently, there is only one specified dialect of Yul. This dialect uses the EVM opcodes as built-in functions and defines only the type u256, which is the native 256-bit type of the EVM. Because of that, we will not provide types in the examples below.

The syntax for a for loop in Yul is as follows:

for { let i := 0 } lt(i, 10) { i := add(i, 1) } {
  // code to be repeated
}
Enter fullscreen mode Exit fullscreen mode

In this example, we are initializing a variable i to 0, and we want to repeat the block of code until i is less than 10. After each iteration, we increment i by 1. A while loop is used when you don't know the number of times you want to repeat a block of code. The syntax for a while loop in Yul is as follows:

let i := 0
while lt(i, 10) {
  // code to be repeated
  i := add(i, 1)
}
Enter fullscreen mode Exit fullscreen mode

In this example, we are initializing a variable i to 0, and we want to repeat the block of code until i is less than 10. After each iteration, we increment i by 1. Loops are a powerful tool in programming, and Yul provides us with the ability to use them efficiently. By using loops, we can write more concise and efficient code, which is essential when writing smart contracts on the Ethereum blockchain.

For example, the following code calculates the factorial of a number using a for-loop:

function factorial(n) -> result {
    result := 1
    for { let i := 1 } lt(i, n) { i := add(i, 1) } {
        result := mul(result, i)
    }
}
Enter fullscreen mode Exit fullscreen mode

The code above declares a variable i in the initializing part of the loop and assigns it to 1. Then it checks if i is less than n using the lt built-in function. If the condition is true, it executes the body of the loop which multiplies the result by i. Then it increments i by 1 using the add built-in function in the post-iteration part of the loop. This process repeats until i is no longer less than n.

Another way to write loops in Yul is by using recursion. Recursion is a technique where a function calls itself until a base case is reached. For example, the following code calculates the factorial of a number using recursion:

function factorial(n) -> result {
    if eq(n, 0) {
        result := 1
    } else {
        result := mul(n, factorial(sub(n, 1)))
    }
}
Enter fullscreen mode Exit fullscreen mode

The code above checks if n is equal to 0 using the eq built-in function. If it is, it returns 1 as the base case. Otherwise, it returns n multiplied by factorial (n - 1) using the mul and sub built-in functions. This way, the function calls itself with smaller and smaller values of n until it reaches 0.

Both ways of writing loops in Yul have their advantages and disadvantages. For-loops are more readable and straightforward, but they may consume more gas than recursion due to variable declarations and assignments. Recursion is more elegant and concise, but it may cause stack overflow errors if the number of recursive calls is too large.

In conclusion, loops are an essential tool for writing complex logic in Yul. You can use either for loops or recursion depending on your preference and performance requirements.

For more content, follow me at - https://linktr.ee/shlokkumar2303

Top comments (0)