← All docs
strcmp() — internals
Compiler internals for strcmp(): lowering path, type checks, and runtime helpers.
strcmp() — internals
Where it lives
- Signature:
src/builtins/string/strcmp.rs - Lowering:
src/codegen/lower_inst/builtins/strings.rs:156 (lower_binary_string_runtime) - Function symbol:
lower_binary_string_runtime()
Lowering notes
- Lowers a two-argument string builtin that directly delegates to a runtime helper.
Runtime helpers
The following runtime helpers are referenced:
__rt_explode
Signature summary
function strcmp(string $string1, string $string2): int
What the type checker enforces
- Arity: takes exactly 2 arguments.
Eval interpreter (magician)
- Declaration:
crates/elephc-magician/src/interpreter/builtins/string/strcmp.rs(eval_builtin!) - Dispatch hooks:
direct,values