Amethyst Studio
限制C++中的模板模板参数
2023-10-16
C++的模板参数比较好限制,但是模板模板参数似乎有一点难,这里做一个记录
1903 words
|
10 minutes
Cover Image of the Post
LLVM Pass 剖析 - SROA
剖析一下LLVM中SROA Pass的实现
3230 words
|
16 minutes
Cover Image of the Post
用LLVM写一个简单的编译器
用LLVM来写一个非常简单的编译器,只能用来处理简单的运算。
4897 words
|
24 minutes
Cover Image of the Post
LLVM Pass 剖析 - DCE
剖析一下LLVM中DCE Pass的实现
2192 words
|
11 minutes
Cover Image of the Post
C++消除warning
2023-08-21
我们写的程序出现的warning可能无法避免,此时,我们可以在代码中加入一些内容消除这些warning。
422 words
|
2 minutes
Cover Image of the Post
C++模板实现MatchIf
利用C++模板技巧,实现matchif语句。
511 words
|
3 minutes
Cover Image of the Post
MBTI的另一种用法
MBTI仅仅是一种玄学分析吗?
1324 words
|
7 minutes
Cover Image of the Post
C++标准库源码剖析 - valarray
C++标准库中的valarray是一个支持运算符操作的数组,这里来剖析一下它的源码
2541 words
|
13 minutes
Cover Image of the Post