mszmurlo
Hi.
I was wondering if the compiler makes any optimization for constructs like below.
# Let’s define `my_func`
def my_func(:ok, param) do some_thing_with(param) end
def my_func(:error, _param) do some_thing_else() end
# and then call my_func
my_func(:error, some_var)
Does the compiler copy the value of some_var but then simply doesn’t use it or does it not even bother to copy it ?
Same question if I write _ = some_var. Does the compiler simply discard the line as it does nothing or does it do something that uses CPU ?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello,
I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 7 of 7 Posts
benwilson512
Hey @mszmurlo values passed to functions are not copied. Values in Elixir are immutable, so no copying needs to occur when a value is passed to a function.
When you say
_ = some_vardo you mean a variable of_ = some_function_call(x)? In the case of_ = some_varor evenx = some_varno work happens at all and I believe the whole thing is optimized out. Again values are immutable so the runtime doesn’t have two things to deal with when you dox = some_varit just has one thing.garrison
Not your exact question but the binary efficiency guide has a section which mentions that unused variables in binary matches are optimized out regardless of whether they start with an underscore. I’d imagine this is true in general (that the underscore doesn’t matter), though in practice of course the Elixir compiler will complain either way.
mszmurlo
Yes, this sounds very reasonable! Thanks for your enlightenment.
No, I really meant
_ = some_var. To give the context of my question, I was building a template compiler based on EEX. I’m creating dynamically functions with the following signatureMyApp.Module.SubModule.template_name(assigns)out of template filesmodule/sub_module/template_name.eex. When the template doesn’t use theassignsbindings I got a warning saying thatassignsis not used. I spent hours trying different things, playing with the@compiledirective but the only way I found to get rid of the warning was to actually useassignsby adding at the end of the template<% _ = assigns %>. I was wondering if it generated any kind of overhead, but obviously, it doesn’tAsd
This introduces no overhead in runtime in practice. Erlang compiler use SSA graph intermediate code representation form where removing such line becomes trivial.
Even if you do
It will be compiled to exactly the same byte and native code as
f(x)It is a great question.
First of all, structures in Elixir are immutable, but not in a sense of immutability like in Rust or
constin C. They are never copied on passing as an argument, but they may be copied (or partially copied) on mutation. So no, it won’t be copied.Second, is that there are some other optimizations which might happen. Consider this code
If
my_funcis defined in the same module andinlineis enabled, it may get compiled to something likeYou can see that operation of constructing the tuple is removed and
my_funcwas inlined.But if
my_funcwas defined in some other module, it won’t be inlined and code would be compiled without any optimizations.Schultzer
I wonder if there are situations where it can’t remove the tuple.
Asd
There are and in most cases it won’t be removed. Erlang compiler can’t rely on information about functions from other modules (otherwise it would introduce dependency, and current hot module reloading implementation does not support it). Plus, inlining must be explicitly specified with
@compile :inline. And there are also limits to compile-time analysisSchultzer
I’ll just continue to write code in a performant way, tend to be more readable to in Erlang/Elixir if you reduce allocation and lean into recursive functions anyways.