File tree 2 files changed +22
-2
lines changed
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ #! https://zhuanlan.zhihu.com/p/687308019
1
2
# c++ vtable in llvm ir
2
3
3
4
@@ -85,7 +86,7 @@ llvm ir在这里可以看到: https://godbolt.org/z/3jz34Y8a6
85
86
86
87
单继承的例子这里不再介绍了。通过`多重继承`都可以了解。
87
88
88
- ##多重继承的vtable in llvm ir格式
89
+ ## 多重继承的vtable in llvm ir格式
89
90
90
91
```c++
91
92
@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
140
141
- vtable是一个指针类型的数组,当有多重继承,子类是多维数组,比如` Child ` 是` [5 x ptr], [3 x ptr] ` 。里面的内容编译器已经帮我们填好了。
141
142
- 第一个成员是` offset_to_top `
142
143
- 第二个成员是` typeinfo `
143
- - 后面依次是函数地址,相同虚函数的偏移是固定的。这样当** 通过基类指针或引用调用虚函数时** 不管哪个实际类型,编译无脑加偏移就好了 。
144
+ - 后面依次是函数地址,相同虚函数的偏移是固定的。这样当** 通过基类指针或引用调用虚函数时** 不管哪个实际类型,编译器无脑加偏移就好了 。
144
145
145
146
我们着重看下新出现的两个成员:
146
147
@@ -349,6 +350,7 @@ Child::FatherFoo() 里的代码指令是写死的,即对于成员变量的偏
349
350
而 Mother 和 Child 合用一个虚指针,所以就不会有这种问题。
350
351
351
352
[ thunk在c++还有其他含义] ( https://stackoverflow.com/questions/2641489/what-is-a-thunk )
353
+
352
354
[ virtual thunk and a non virtual thunk. ] ( https://reverseengineering.stackexchange.com/questions/4543/what-is-a-non-virtual-thunk )
353
355
354
356
### 子类指针调用子类虚方法
You can’t perform that action at this time.
0 commit comments