0Pricing
Reverse Engineering & Binary Analysis Basics · 강의

인라이닝과 루프 변환 알아보기

컴파일러가 함수를 인라이닝하고 루프를 변환하는 방식(언롤링, 벡터화)을 파악해 최적화된 어셈블리를 소스 코드의 의도와 다시 연결합니다.

인라이닝과 루프 변환 알아보기은(는) CoddyKit의 무료 Reverse Engineering & Binary Analysis Basics 강의입니다. 이것은 4개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Reverse Engineering & Binary Analysis Basics 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Reverse Engineering & Binary Analysis Basics 강의에는 총 4개의 강의가 포함되어 있습니다.

이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.

Optimizations Reshape Structure

You know common optimizations, can read optimized assembly, and reconstruct logic. Two transformations cause the most confusion: function inlining and loop reshaping.

Recognizing them keeps your reconstruction accurate.

What Is Inlining?

Inlining replaces a function call with the callee's body, eliminating call overhead.

In the binary the original function may vanish entirely; its code appears merged into every caller.

// source
static int sq(int x){ return x*x; }
int f(int a){ return sq(a) + 1; }
// after inlining f becomes: return a*a + 1;

Spotting Inlined Code

Signs of inlining:

  • A helper you expect to see as a separate function never appears
  • The same instruction pattern repeats in many callers
  • No matching call where the source had one

Loop Unrolling

Loop unrolling executes several iterations per loop pass to cut branch overhead.

A loop that should run 4 times may show 4 copies of the body and no inner branch.

; sum 4 elements, unrolled
mov eax, [rdi]
add eax, [rdi+4]
add eax, [rdi+8]
add eax, [rdi+12]

Partial Unrolling

For unknown trip counts the compiler unrolls in chunks (say 4 at a time) plus a remainder loop for leftovers.

Seeing a big block followed by a small single-step loop is the classic partial-unroll fingerprint.

Vectorization (SIMD)

Vectorization processes multiple data elements at once using SIMD registers like XMM/YMM.

Instructions such as movdqu, paddd, or addps signal that a scalar loop was turned into vector operations.

movdqu xmm0, [rsi]
paddd  xmm0, xmm1   ; add 4 ints in parallel
movdqu [rdi], xmm0

Reconstructing the Original Loop

When you see SIMD or unrolled bodies, mentally collapse them back to a single scalar loop. Four parallel adds equal a loop summing four elements.

Document the simple intent, not the optimized shape.

Loop-Invariant Code Motion

Compilers hoist computations that do not change across iterations out of the loop. A multiplication you expect inside the loop may appear before it.

Knowing this prevents you from misreading where work happens.

Strength Reduction

Multiplications inside loops are often replaced by cheaper additions (strength reduction). An index times stride becomes a pointer that increments by stride each pass.

Recognize add ptr, 8 as 'next element' rather than literal pointer math.

Tools Can Help

Decompilers (Ghidra, Hex-Rays) often re-roll loops and de-inline automatically, presenting cleaner pseudocode. Use them, but verify against the assembly when behavior matters.

Tail-Call Optimization

When a function's last action is a call, the compiler may turn it into a jump instead of call-then-return, reusing the current frame.

Seeing a jmp to another function at the end of a routine, rather than a call followed by ret, is the signature of a tail call.

; tail call instead of call + ret
mov edi, eax
jmp helper

Quick Check

You expected to see a small helper function but it never appears as its own routine; instead its code is duplicated inside every caller. What optimization is this?

Recap

You can now see through aggressive optimizations:

  • Inlining merges callees into callers
  • Unrolling and vectorization fan loop bodies into parallel work
  • Invariant motion and strength reduction relocate or cheapen operations

Collapse these back to simple source intent in your reconstruction.

자주 묻는 질문

“인라이닝과 루프 변환 알아보기” 강의는 무료인가요?

네 — “인라이닝과 루프 변환 알아보기” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Reverse Engineering & Binary Analysis Basics 강의 전체를 잠금 해제할 수 있습니다. Reverse Engineering & Binary Analysis Basics 강의에는 총 4개의 강의가 포함되어 있습니다.

“인라이닝과 루프 변환 알아보기”에서 뭘 배우나요?

컴파일러가 함수를 인라이닝하고 루프를 변환하는 방식(언롤링, 벡터화)을 파악해 최적화된 어셈블리를 소스 코드의 의도와 다시 연결합니다. 브라우저에서 직접 실행하는 실습 코드로 Reverse Engineering & Binary Analysis Basics을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.

Reverse Engineering & Binary Analysis Basics을(를) 시작하는 데 경험이 필요한가요?

사전 경험은 필요하지 않습니다. CoddyKit의 Reverse Engineering & Binary Analysis Basics은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 4번째 강의입니다.

“인라이닝과 루프 변환 알아보기” 강의는 얼마나 걸리나요?

대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.

이 Reverse Engineering & Binary Analysis Basics 강의에서 코드를 작성하고 실행할 수 있나요?

네. 모든 Reverse Engineering & Binary Analysis Basics 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.

이 강의의 모든 강의

  1. 일반적인 컴파일러 최적화
  2. 최적화된 어셈블리 분석
  3. 원래 소스 논리 재구성
  4. 인라이닝과 루프 변환 알아보기
← Reverse Engineering & Binary Analysis Basics(으)로 돌아가기