《程序静态分析》 - 南京大学 李樾、谭添

课程笔记

<aside> 💡 从个人角度来说我不太想花太多精力在程序分析上面,所以记得笔记大多是为了以后能快速有个参考,写的和流水账一样。但经常参考别人的笔记的时候就会发现,有的人能够以更易于回忆理解的角度重构 PPT 里的内容,并能重点突出地提炼出其中的精华。 这里给出一个不错的博客地址,有很多地方可以向 Fernweh 哥继续学习。

</aside>

Pointer Analysis Introduction

<aside> 💡 “Pointer analysis is one of the most fundamental static program analyses, on which virtually all others are built.”

</aside>

Introduction

Pointer analysis is a fundamental static analysis for object-oriented programs and is regarded as a may-analysis.

Two closely related but different concepts:

Key Factors in Pointer Analysis

Untitled

Concerned Statements

Pointers in JAVA

We only focus on pointer-affecting statements

Rules

Domain and Notations

Variables: x, y ∈ V
Fields: f, g ∈ F
Objects: oi, oj ∈ O
Instance fields: oi.f, oj.g ∈ O × F
Pointers: Pointer = V ⋃ (O × F)

Points-to relation: pt : Pointer → 𝒫(O)

𝒫(O) denotes the powerset of O, pt(p) denotes the points-to set of p

Rules

Untitled

For example: for x = y, it means for every Oi belongs to pt(y), add it to pt(x) also.

Untitled