Skip to content

Commit 9b939d1

Browse files
committed
Create pages.yml
1 parent 89d5c7b commit 9b939d1

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.github/workflows/pages.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy Sphinx documentation to Pages
2+
3+
on:
4+
push:
5+
branches: [main] # branch to trigger deployment
6+
7+
jobs:
8+
pages:
9+
runs-on: ubuntu-20.04
10+
environment:
11+
name: github-pages
12+
url: ${{ steps.deployment.outputs.page_url }}
13+
permissions:
14+
pages: write
15+
id-token: write
16+
steps:
17+
- id: deployment
18+
uses: sphinx-notes/pages@v3

source/llvm/vtable.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#! https://zhuanlan.zhihu.com/p/687308019
12
# c++ vtable in llvm ir
23

34

@@ -85,7 +86,7 @@ llvm ir在这里可以看到: https://godbolt.org/z/3jz34Y8a6
8586
8687
单继承的例子这里不再介绍了。通过`多重继承`都可以了解。
8788
88-
##多重继承的vtable in llvm ir格式
89+
## 多重继承的vtable in llvm ir格式
8990
9091
```c++
9192
@vtable for Mother = linkonce_odr dso_local unnamed_addr constant { [4 x ptr] } { [4 x ptr] [
@@ -140,7 +141,7 @@ llvm ir在这里可以看到: https://godbolt.org/z/3jz34Y8a6
140141
- vtable是一个指针类型的数组,当有多重继承,子类是多维数组,比如`Child``[5 x ptr], [3 x ptr]`。里面的内容编译器已经帮我们填好了。
141142
- 第一个成员是`offset_to_top`
142143
- 第二个成员是`typeinfo`
143-
- 后面依次是函数地址,相同虚函数的偏移是固定的。这样当**通过基类指针或引用调用虚函数时**不管哪个实际类型,编译无脑加偏移就好了
144+
- 后面依次是函数地址,相同虚函数的偏移是固定的。这样当**通过基类指针或引用调用虚函数时**不管哪个实际类型,编译器无脑加偏移就好了
144145

145146
我们着重看下新出现的两个成员:
146147

@@ -349,6 +350,7 @@ Child::FatherFoo() 里的代码指令是写死的,即对于成员变量的偏
349350
而 Mother 和 Child 合用一个虚指针,所以就不会有这种问题。
350351

351352
[thunk在c++还有其他含义](https://stackoverflow.com/questions/2641489/what-is-a-thunk)
353+
352354
[ virtual thunk and a non virtual thunk. ](https://reverseengineering.stackexchange.com/questions/4543/what-is-a-non-virtual-thunk)
353355

354356
### 子类指针调用子类虚方法

0 commit comments

Comments
 (0)