← All docs
addslashes() — internals
Compiler internals for addslashes(): lowering path, type checks, and runtime helpers.
addslashes() — internals
Where it lives
- Signature:
src/builtins/string/addslashes.rs - Lowering:
src/builtins/semantics.rs:639 (lower_registry_call) - Function symbol:
lower_registry_call()
Lowering notes
- Uses the
runtime_callstrategy from the single-source builtin descriptor. - Emits the typed EIR target
runtime.string.add_slashesthroughBuiltinLoweringContext. - The backend resolves that typed target through
src/codegen/lower_inst/runtime_calls.rs; PHP builtin names do not participate in dispatch.
Semantic descriptor
- Target strategy:
runtime_call - Validation:
signature - Result type source:
declared - Result ownership:
fresh - Effects:
static (0 declared effects) - Requirements:
static (0 requirements) - Callable policy:
dynamic - Target support:
macos-aarch64,ios-arm64,ios-sim-arm64,linux-aarch64,linux-x86_64
EIR and runtime boundary
- Typed EIR target:
runtime.string.add_slashes - Backend boundary:
src/codegen/lower_inst/runtime_calls.rsresolves the typed target without PHP-name dispatch.
Signature summary
function addslashes(string $string): string
What the type checker enforces
- Arity: takes exactly 1 argument.
Eval interpreter (magician)
- Declaration:
crates/elephc-magician/src/interpreter/builtins/string/addslashes.rs(eval_builtin!) - Execution: Magician interpreter adapter.
- Adapter reason:
interpreter-specific-value-semantics. - Dispatch hooks:
direct,values