clang的AST源码分析

clang的AST源码分析

QualType类
重点关注函数:

/// Return true if this QualType doesn't point to a type yet.bool isNull() const {return Value.getPointer().isNull();}

被RecursiveASTVisitor调用

template <typename Derived>
bool RecursiveASTVisitor<Derived>::TraverseType(QualType T) {if (T.isNull())return true;switch (T->getTypeClass()) {
#define ABSTRACT_TYPE(CLASS, BASE)
#define TYPE(CLASS, BASE)                                                      \case Type::CLASS:                                                            \return getDerived().Traverse##CLASS##Type(                                 \static_cast<CLASS##Type *>(const_cast<Type *>(T.getTypePtr())));
#include "clang/AST/TypeNodes.inc"}return true;
} 

RecursiveASTVisitor的模版类DeducedTypeVisitor

namespace {
/// Computes the deduced type at a given location by visiting the relevant
/// nodes. We use this to display the actual type when hovering over an "auto"
/// keyword or "decltype()" expression.
/// FIXME: This could have been a lot simpler by visiting AutoTypeLocs but it
/// seems that the AutoTypeLocs that can be visited along with their AutoType do
/// not have the deduced type set. Instead, we have to go to the appropriate
/// DeclaratorDecl/FunctionDecl and work our back to the AutoType that does have
/// a deduced type set. The AST should be improved to simplify this scenario.
class DeducedTypeVisitor : public RecursiveASTVisitor<DeducedTypeVisitor> {SourceLocation SearchedLocation;public:DeducedTypeVisitor(SourceLocation SearchedLocation): SearchedLocation(SearchedLocation) {}// Handle auto initializers://- auto i = 1;//- decltype(auto) i = 1;//- auto& i = 1;//- auto* i = &a;bool VisitDeclaratorDecl(DeclaratorDecl *D) {if (!D->getTypeSourceInfo() ||D->getTypeSourceInfo()->getTypeLoc().getBeginLoc() != SearchedLocation)return true;if (auto *AT = D->getType()->getContainedAutoType()) {DeducedType = AT->desugar();}return true;}// Handle auto return types://- auto foo() {}//- auto& foo() {}//- auto foo() -> int {}//- auto foo() -> decltype(1+1) {}//- operator auto() const { return 10; }bool VisitFunctionDecl(FunctionDecl *D) {if (!D->getTypeSourceInfo())return true;// Loc of auto in return type (c++14).auto CurLoc = D->getReturnTypeSourceRange().getBegin();// Loc of "auto" in operator auto()if (CurLoc.isInvalid() && isa<CXXConversionDecl>(D))CurLoc = D->getTypeSourceInfo()->getTypeLoc().getBeginLoc();// Loc of "auto" in function with trailing return type (c++11).if (CurLoc.isInvalid())CurLoc = D->getSourceRange().getBegin();if (CurLoc != SearchedLocation)return true;const AutoType *AT = D->getReturnType()->getContainedAutoType();if (AT && !AT->getDeducedType().isNull()) {DeducedType = AT->getDeducedType();} else if (auto *DT = dyn_cast<DecltypeType>(D->getReturnType())) {// auto in a trailing return type just points to a DecltypeType and// getContainedAutoType does not unwrap it.if (!DT->getUnderlyingType().isNull())DeducedType = DT->getUnderlyingType();} else if (!D->getReturnType().isNull()) {DeducedType = D->getReturnType();}return true;}// Handle non-auto decltype, e.g.:// - auto foo() -> decltype(expr) {}// - decltype(expr);bool VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {if (TL.getBeginLoc() != SearchedLocation)return true;// A DecltypeType's underlying type can be another DecltypeType! E.g.//  int I = 0;//  decltype(I) J = I;//  decltype(J) K = J;const DecltypeType *DT = dyn_cast<DecltypeType>(TL.getTypePtr());while (DT && !DT->getUnderlyingType().isNull()) {DeducedType = DT->getUnderlyingType();DT = dyn_cast<DecltypeType>(DeducedType.getTypePtr());}return true;}QualType DeducedType;
};
} // namespace

注意getDeducedType

llvm::Optional<QualType> getDeducedType(ASTContext &ASTCtx,SourceLocation Loc) {if (!Loc.isValid())return {};DeducedTypeVisitor V(Loc);V.TraverseAST(ASTCtx);if (V.DeducedType.isNull())return llvm::None;return V.DeducedType;
}

MatchASTVisitor

bool MatchASTVisitor::TraverseType(QualType TypeNode) {match(TypeNode);return RecursiveASTVisitor<MatchASTVisitor>::TraverseType(TypeNode);
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/196344.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python 接口自动化 —— requests框架

1.前言 Python内置的urllib模块&#xff0c;也可以用于访问网络资源。但是&#xff0c;它用起来比较麻烦&#xff0c;而且&#xff0c;缺少很多实用的高级功能。因此我们使用 requests 模块进行进行接口测试。 requests官方文档资料地址&#xff1a;http://cn.python-request…

记录 | ipad上安装ipa文件

目的&#xff1a;在 ipad 上安装 ipa 文件 首先需要在 mac 端安装 itools pro 下载地址&#xff1a;https://www.thinkskysoft.com/itools/ 然后下载 ipa > 需要有签名的&#xff0c;不然安装不了 然后用数据线连接 ipad 和 mac&#xff0c;应用 -> 安装

C语言——深入理解指针(5)

目录 1. sizeof和strlen的对比 1.1 sizeof 1.2 strlen 1.3 sizeof和strlen 的对比 2. 数据和指针题解析 2.1 一维数组 2.2 字符数组 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2,6 2.3 二维数组 3. 指针运算题解析 3.1 例1 3.2 例2 3.3 例3 3.4 例4 3.5 例5 3.6 例…

OpenCV介绍及安装

目录 1.OpenCV简介 2.OpenCV安装 3.检查OpenCV是否安装成功 4.OpenCV模块 5.学习技巧 1.OpenCV简介 OpenCV&#xff08;Open Source Computer Vision Library&#xff09;是一个基于开源发行的跨平台计算机视觉库&#xff0c;主要用于图像处理、计算机视觉和机器学习等领域…

干货|水表基础知识大全

第一部分 水表基础知识 第一节 水表的作用 水表:是用来记录流经自来水管道中水量的一种计量器具,也称为计量器具。 1、水表的发展简史 1825年英国的克路斯发明了真正具有仪表特征的平衡罐式水表以来&#xff0c;水表的发展已有近二百年的历史。期间&#xff0c;水表的结构…

Day13——泛型

1.泛型 1.1 介绍 所谓泛型&#xff0c;就是允许在定义类、接口时通过一个标识表示类中某个属性的类型或者是某个方法的返回值或参数的类型。这个类型参数将在使用时&#xff08;例如&#xff0c;继承或实现这个接口、创建对象或调用方法时&#xff09;确定&#xff08;即传入…

你知道 n 进制如何转化为 m 进制吗?

更好的阅读体验&#xff0c;请点击 进制转换 | YinKais Blog 程序介绍&#xff1a;n 进制数转换器 这个简单的C程序是一个 n 进制数转换器&#xff0c;可以将一个给定的 n 进制数按照用户指定的进制进行转换。用户需要提供三个输入&#xff1a;原始进制&#xff0c;待转换的数…

目标检测中的损失函数:IOU_Loss、GIOU_Loss、DIOU_Loss和CIOU_Loss

文章目录 前言1.IOU_Loss&#xff08;Intersection over Union Loss&#xff09;2.GIOU_Loss&#xff08;Generalized Intersection over Union Loss&#xff09;3.DIOU_Loss&#xff08;Distance Intersection over Union Loss&#xff09;4.CIOU_Loss&#xff08;Complete In…

行云创新:与德国汽车业交流Catena-X数据空间技术有感

近日&#xff0c;行云创新CEO马洪喜先生受深圳高新投、Plug&Play邀请参加Catena-X技术研讨交流会&#xff0c;与西门子全球汽车生态系统总监Claus CREMERS&#xff0c;大众汽车全球数字化生产及流程负责人Frank GOELLER&#xff0c;宝马全球数字化政策负责人Sebastian SCHL…

Gensim训练中文词向量实战

引言 实现文本匹配模型时经常需要预训练好的中文词/字向量&#xff0c;今天通过gensim和中文维基百科数据训练一个中文字向量。 安装相关包 首先要安装所需的几个包&#xff1a; zhconv 1.4.3 gensim 4.3.2由于中文维基百科是繁体字&#xff0c;需要用zhconv转换为简体&…

【国际会议】2024年材料科学与机械应用发展国际会议(ICMSMAD 2024)

2024年材料科学与机械应用发展国际会议(ICMSMAD 2024) 2024 International Conference on Materials Science and Mechanical Application Development(ICMSMAD 2024) 一、【会议简介】 ​2024年材料科学与机械应用发展国际会议(ICMSMAD 2024)即将在美丽的中国成都盛大召开。这…

贪心法之柠檬水找零

题目: 在柠檬水摊上&#xff0c;每一杯柠檬水的售价为 5 美元。 顾客排队购买你的产品&#xff0c;&#xff08;按账单 bills 支付的顺序&#xff09;一次购买一杯。 每位顾客只买一杯柠檬水&#xff0c;然后向你付 5 美元、10 美元或 20 美元。 你必须给每个顾客正确找零&am…

使用gdb调试正在运行的程序

写一个一秒打印一个数的c程序&#xff0c;并编译运行。 #include<unistd.h> #include<stdio.h> int main(int argc,char **argv){int i0;while(1){sleep(1);i;printf("%d\n",i);}return 0; }vim loop.c gcc loop.c -o loop ./loop 查看该进程的进程号。…

《数据库系统概论》学习笔记——王珊 萨师煊

第一章 绪论 一、数据库系统概述 1.数据库的4个基本概念 &#xff08;1&#xff09;数据 描述事物的符号记录称为数据 &#xff08;2&#xff09;数据库 存放数据的仓库 &#xff08;3&#xff09;数据库管理系统 主要功能&#xff1a; &#xff08;1&#xff09;数据定…

APP逆向工具环境安装

环境安装及配置&#xff1a; 1.JDK安装及配置链接&#xff1a;https://pan.baidu.com/s/146I4vDJdz8YeR0OEqLS8xw 提取码&#xff1a;7h00 2.SDK环境配置链接&#xff1a;https://pan.baidu.com/s/1A8rwqyw8Nn7p93Axqpll3A 提取码&#xff1a;cwv43.NDK环境配置链接&#xff1…

【Spark基础】-- 理解 Spark shuffle

目录 前言 1、什么是 Spark shuffle? 2、Spark 的三种 shuffle 实现 3、参考 前言 以前,Spark 有3种不同类型的 shuffle 实现。每种实现方式都有他们自己的优缺点。在我们理解 Spark shuffle 之前,需要先熟悉 Spark 的 execution model 和一些基础概念,如:MapReduce、…

【问题】C++ libcurl实现PUT时阻塞问题

解决方案 将 curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);换成 curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "PUT"); 原因 在项目中对方要求使用PUT来发送控制指令&#xff0c;于是直接使用Libcurl来实现。原本是一个非常简单的事情&#xff0c;确怎么都没发…

SpringBoot:SpringMVC(上)

文章目录 前言一、SpringMVC是什么&#xff1f;1.1 MVC的定义&#xff1a;1.2 MVC 和 Spring MVC 的关系 二、Spring MVC 创建和连接2.1创建springmvc2.2接下来&#xff0c;创建⼀个 UserController 类&#xff0c;实现⽤户到 Spring 程序的互联互通&#xff0c;具体实现代码如…

MYSQL练题笔记-聚合函数-即时食物配送

我做完上一道题&#xff0c;决定总结一下了&#xff0c;因为现在还是没有一个我认为好的思路去构造语句&#xff0c;这里开始试一试新的思路。果然想要好一点的时候&#xff0c;总是像便秘一下&#xff0c;真的想拉&#xff0c;但是真的难拉啊 一、题目相关内容 1&#xff09…

科普关于msvcp140.dll文件是什么内容,解决msvcp140.dll丢失的修复方法

在使用电脑时出现了关于msvcp140.dll丢失的问题&#xff0c;这是什么情况&#xff0c;出现这样的问题通常都会导致电脑中的一些软件不能使用&#xff0c;那么都有什么办法能够解决msvcp140.dll丢失的问题呢&#xff1f;今天就给大家科普一些关于msvcp140.dll文件是什么的内容&a…