Tag

Compilation Process

1 views collected around this technical thread.

Tencent Cloud Developer
Tencent Cloud Developer
Sep 5, 2022 · Fundamentals

Static Function Hooking in Objective-C Using LLVM Pass

The article presents a technique for static function hooking in Objective‑C by writing a custom LLVM Pass that modifies the intermediate representation during compilation to inject stub calls at chosen points inside a function, and details the required LLVM setup, Pass implementation, Clang integration, and Xcode configuration.

Compilation ProcessFunction HookingIR Modification
0 likes · 11 min read
Static Function Hooking in Objective-C Using LLVM Pass
ByteFE
ByteFE
May 8, 2021 · Fundamentals

Webpack Core Principles: Architecture and Workflow Analysis

This article provides a comprehensive analysis of Webpack's core architecture, explaining its three-phase workflow (initialization, building, and generation), plugin system, and module handling mechanisms to help developers understand the underlying principles of this static module bundler.

Compilation ProcessJavaScriptbuild tools
0 likes · 23 min read
Webpack Core Principles: Architecture and Workflow Analysis