Emojicode Documentation 1.0 beta 2

Memory Management

Here’s the good news about memory management in Emojicode: Emojicode does the hard work. This chapter describes the mechanisms employed.

Lifetime of Temporary Values

Emojicode manages memory with reference counting. This means that Emojicode maintains a count of how many references exist to every object. An object is destroyed immediately once there are no more references to it.

Consider the following example:

🆕🐟  🔤Shawn🔤❗️

The above code sample creates an instance of the class 🐟. Since this object is not assigned to any variable or returned, we call it a temporary value. Temporary values are destroyed at the end of the statement in the order they were created.

Let’s have a look at this more complicated example:

🐇 🦍 🍇
  🆕 pet 🐟 🍇🍉
🍉

🐇 🐟 🍇
  🖍🆕 name 🔡

  🆕 🍼 name 🔡 🍇🍉
🍉

🏁 🍇
  🆕🦍 🆕🐟 🔤Shawn🔤❗️❗
🍉

Here we create an instance of 🦍, which we pass an instance of 🐟 to. 🦍 does not anything with the fish instance (like assigning it to an instance variable). So both the fish instance and the gorilla instance will be destroyed at the end of the statement. Because the fish instance was created first, it will be destroyed first.

Borrowing and Escaping Use

Emojicode supports the notion of borrowing and escaping use of a value.

This concept only applies to the use of method or initializer parameters and the use of the context, i.e. the value returned by 👇, in the method or initializer.

A value is considered escaping, if it (or a copy of it) can outlive the call of the method or initializer. Consider, for instance, this class:

🐇 🥧 🍇
  💭 ...

  ❗️ 😀 🍇
    💭 ...
  🍉
🍉

🐇 🦡 🍇
  🖍🆕 pie 🥧

  🆕 🍼 pie 🥧 🍇🍉
🍉

It is obvious that the pie reference passed to the 🆕 initializer of 🦡 will outlive the call as it is assigned to an instance variable. This parameter is considered escaping, therefore. On the other hand, the below class method does not use its parameter in an escaping way:

🐇 🐟 🍇
  🐇❗️ 💚 pie 🥧 🍇
    😀 pie❗️
  🍉
🍉

No copy of pie is made here that will outlive the call of 💚.

As mentioned before, a method itself can be escaping, if it makes the this context outlive the call. The following is an example of such a method:

🐇 🥧 🍇
  ❗️ 🖲 ➡️ 🦡 🍇
    ↩️ 🆕🦡 👇❗️
  🍉
🍉

👇 is passed to an escaping parameter in this example, which obviously causes the value to escape.

Simply put, there are four ways in which a value can escape:

When compiling, the Emojicode compiler analyses all methods to determine whether they just borrow a value or let it escape. If you generate an interface file for a package, you can see all escaping parameters and methods annotated with 🎍🥡. As an example, take a look at 🍨’s 🐻:

🌍 🕊 🍨🐚Element ⚪️ 🍆🍇
  📗 Appends `item` to the end of the list in `O(1)`. 📗
  🖍 ❗️ 🐻 🎍🥡 item Element
🍉

Obviously, appending a value to a list causes the value to escape, which the compiler correctly determined and annotated the parameter with 🎍🥡.

In principle, you can manually annotate parameters and methods with 🎍🥡, but unless you build a package with methods implemented in another language, there is no reason to do so.

Deinitializers

Emojicode allows you to define a deinitializer for your classes. A deinitializer is a function that is executed right before a class instance is destroyed. Its syntax is this:

deinitializer ⟶ ♻️ block

We can define a deinitializer for the 🦍 and 🐟 class, to prove the behavior we have talked about before:

🐇 🦍 🍇
  🆕 pet 🐟 🍇🍉

  ♻️ 🍇
    😀 🔤Gorilla says Bye-Bye🔤❗️
  🍉
🍉

🐇 🐟 🍇
  🖍🆕 name 🔡

  🆕 🍼 name 🔡 🍇🍉

  ♻️ 🍇
    😀 🔤Fish deinit!🔤❗️
  🍉
🍉

🏁 🍇
  🆕🦍 🆕🐟 🔤Shawn🔤❗️❗
🍉

As expected, running the above code results in:

Fish deinit!
Gorilla says Bye-Bye

You can only specify a deinitalizers for classes.

Caution

The deinitializer of a class is not called when initialization is aborted by raising an error.

Lifetime in General

We will now adjust our program and make the gorilla actually store its pet:

🐇 🦍 🍇
  🖍🆕 pet 🐟

  🆕 🍼 pet 🐟 🍇🍉

  ♻️ 🍇
    😀 🔤Gorilla says Bye-Bye🔤❗️
  🍉
🍉

If we kept the rest of the program the same, the output will still change:

Gorilla says Bye-Bye
Fish deinit!

That is because the gorilla now maintains a reference to the fish. Thus, the compiler cannot write code to immediately destroy the fish at the end of the statement. But the gorilla can be destroyed as before. But once the gorilla is gone, also our reference to the fish is gone, so the fish is destroyed then.

The same is true when working with value types, like in the following example.

🕊 💳 🍇
  🖍🆕 fish 🐟

  🆕 🍼 fish 🐟 🍇🍉
🍉

🐇 🐟 🍇
  🖍🆕 name 🔡

  🆕 🍼 name 🔡 🍇🍉

  ♻️ 🍇
    😀 🔤Fish deinit!🔤❗️
  🍉
🍉

🏁 🍇
  🆕💳 🆕🐟 🔤Shawn🔤❗️❗
🍉

We can, however, update our program slightly to see a change:

🏁 🍇
  🆕💳 🆕🐟 🔤Shawn🔤❗️❗ ➡️ card
  😀 🔤💛🔤❗️
🍉

Running this produces:

💛
Fish deinit!

You can see that the 💳 is not immediately destroyed because we copied it into a variable. The variable is destroyed at the end of the scope, so is the 💳 in it. Hence we first see 💛 and then Fish deinit!.

Weak References

In the case of a circular reference, automatic reference counting cannot detect objects that should be deleted. A circular reference occurs if objects point at each other in a circle.

Circular references can be worked around by so called weak references. Weak references are not taken into account when counting the references left to an object and thus allow breaking up circular references.

Consider this program as an example:

🐇 🌍 🍇
  🖍🆕 moon 🌕

  🆕 🍼 moon 🌕 🍇
    👇 ➡️ 🌍moon❗️
  🍉

  ♻️ 🍇
    😀 🔤Earth deinit🔤❗️
  🍉
🍉

🐇 🌕 🍇
  🖍🆕 earth 🍬🌍

  🆕 🍇🍉

  ➡️🌍 new_earth 🌍 🍇
    new_earth ➡️ 🖍earth
  🍉

  ♻️ 🍇
    😀 🔤Moon deinit🔤❗️
  🍉
🍉

🏁🍇
  🆕🌍 🆕🌕❗️❗️
🍉

When run, the program will exit without ever printing “Earth deinit” or “Moon deinit” as the 🌍 and 🌕 instance a pointer at each other. Neither of them can be deleted as both have a reference count of one.

The solution is using a weak reference in one of the classes:

🐇 🌕 🍇
  🖍🆕 earth 🍬📶🐚🌍🍆

  🆕 🍇🍉

  ➡️🌍 new_earth 🌍 🍇
    🆕📶new_earth❗️ ➡️ 🖍earth
  🍉

  ♻️ 🍇
    😀 🔤Moon deinit🔤❗️
  🍉
🍉

In the above program the reference from the moon back to the earth does not count when determining whether the earth instance can be deleted.

The program prints:

Earth deinit
Moon deinit

Weak references are part of the s package. See the package documentation to learn more about their usage.

Detecting Shared Values

In some cases, you might want to know whether your reference to a value is unique. This can be done by using the 🏮 operator on the variable holding the reference.

unique ⟶ 🏮 variable
← Previous Next Up: “References” →
Something not quite right? Improve this page