- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用下面的 Objective-C 类来索引一个 Objective-C 文件。我试过解析同时使用 #include
的文件和 #import
, 带有尖括号和带引号的头文件。我的 ppIncludedFile
在任何情况下都不会回调被击中。当我获得其中定义的符号的索引回调时,Clang 显然包含了这些文件。但关于整体结构,我得到enteredMainFile
,然后我得到 startedTranslationUnit
对于主文件也是如此。但我从来没有发现它在寻找什么头文件。
根据文档:
/** * \brief Called when a file gets #included/#imported. */
CXIdxClientFile (*ppIncludedFile)(CXClientData client_data, const CXIdxIncludedFileInfo *);
libclang
的版本我使用的是来自 svn trunk r156259。
//
// FZAClassParser.m
// ObjectiveBrowser
//
// Created by Graham Lee on 07/05/2012.
// Copyright (c) 2012 Fuzzy Aliens Ltd.. All rights reserved.
//
#import "FZAClassParser.h"
#import "FZAClassParserDelegate.h"
int abortQuery(CXClientData client_data, void *reserved);
void diagnostic(CXClientData client_data,
CXDiagnosticSet diagnostic_set, void *reserved);
CXIdxClientFile enteredMainFile(CXClientData client_data,
CXFile mainFile, void *reserved);
CXIdxClientFile ppIncludedFile(CXClientData client_data,
const CXIdxIncludedFileInfo *included_file);
CXIdxClientASTFile importedASTFile(CXClientData client_data,
const CXIdxImportedASTFileInfo *imported_ast);
CXIdxClientContainer startedTranslationUnit(CXClientData client_data,
void *reserved);
void indexDeclaration(CXClientData client_data,
const CXIdxDeclInfo *declaration);
void indexEntityReference(CXClientData client_data,
const CXIdxEntityRefInfo *entity_reference);
static IndexerCallbacks indexerCallbacks = {
.abortQuery = abortQuery,
.diagnostic = diagnostic,
.enteredMainFile = enteredMainFile,
.ppIncludedFile = ppIncludedFile,
.importedASTFile = importedASTFile,
.startedTranslationUnit = startedTranslationUnit,
.indexDeclaration = indexDeclaration,
.indexEntityReference = indexEntityReference
};
@interface FZAClassParser ()
- (void)realParse;
@end
@implementation FZAClassParser
{
NSString *sourceFile;
NSOperationQueue *queue;
}
@synthesize delegate;
- (id)initWithSourceFile:(NSString *)implementation {
if ((self = [super init])) {
if(![[NSFileManager defaultManager] fileExistsAtPath: implementation]) {
return nil;
}
sourceFile = [implementation copy];
queue = [[NSOperationQueue alloc] init];
}
return self;
}
- (void)parse {
__weak id parser = self;
[queue addOperationWithBlock: ^{ [parser realParse]; }];
}
- (void)realParse {
#pragma warning Pass errors back to the app
@autoreleasepool {
CXIndex index = clang_createIndex(1, 1);
if (!index) {
NSLog(@"fail: couldn't create translation unit");
return;
}
CXTranslationUnit translationUnit = clang_parseTranslationUnit(index, [sourceFile fileSystemRepresentation], NULL, 0, NULL, 0, CXTranslationUnit_None);
if (!translationUnit) {
NSLog(@"fail: couldn't compile %@", sourceFile);
return;
}
CXIndexAction action = clang_IndexAction_create(index);
if ([self.delegate respondsToSelector: @selector(classParser:willBeginParsingFile:)]) {
[self.delegate classParser: self willBeginParsingFile: sourceFile];
}
int indexResult = clang_indexTranslationUnit(action,
(__bridge CXClientData)self,
&indexerCallbacks,
sizeof(indexerCallbacks),
CXIndexOpt_SuppressWarnings,
translationUnit);
if ([self.delegate respondsToSelector: @selector(classParser:didFinishParsingFile:)]) {
[self.delegate classParser: self didFinishParsingFile: sourceFile];
}
clang_IndexAction_dispose(action);
clang_disposeTranslationUnit(translationUnit);
clang_disposeIndex(index);
(void) indexResult;
}
}
@end
int abortQuery(CXClientData client_data, void *reserved) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParserShouldAbort:)]) {
return [parser.delegate classParserShouldAbort: parser];
}
return 0;
}
}
void diagnostic(CXClientData client_data,
CXDiagnosticSet diagnostic_set, void *reserved) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:foundDiagnostics:)]) {
[parser.delegate classParser: parser foundDiagnostics: diagnostic_set];
}
}
}
CXIdxClientFile enteredMainFile(CXClientData client_data,
CXFile mainFile, void *reserved) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:enteredMainFile:)]) {
return [parser.delegate classParser: parser enteredMainFile: mainFile];
}
return NULL;
}
}
CXIdxClientFile ppIncludedFile(CXClientData client_data,
const CXIdxIncludedFileInfo *included_file) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:includedFile:)]) {
return [parser.delegate classParser: parser includedFile: included_file];
}
return NULL;
}
}
CXIdxClientASTFile importedASTFile(CXClientData client_data,
const CXIdxImportedASTFileInfo *imported_ast) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:importedPCH:)]) {
return [parser.delegate classParser: parser importedPCH: imported_ast];
}
return NULL;
}
}
CXIdxClientContainer startedTranslationUnit(CXClientData client_data,
void *reserved) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParserStartedTranslationUnit:)]) {
return [parser.delegate classParserStartedTranslationUnit: parser];
}
return NULL;
}
}
void indexDeclaration(CXClientData client_data,
const CXIdxDeclInfo *declaration) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:foundDeclaration:)]) {
[parser.delegate classParser: parser foundDeclaration: declaration];
}
}
}
void indexEntityReference(CXClientData client_data,
const CXIdxEntityRefInfo *entity_reference) {
@autoreleasepool {
FZAClassParser *parser = (__bridge FZAClassParser *)client_data;
if ([parser.delegate respondsToSelector: @selector(classParser:foundEntityReference:)]) {
[parser.delegate classParser: parser foundEntityReference: entity_reference];
}
}
}
最佳答案
处理在#include
时间可能不会被记录,因为那里有很多信息(在一般情况下可能不需要)。有一个 createPreporcessingRecord
如果未启用该选项,则不会生成数据的功能。
Clang 文档描述了 CXTranslationUnit_DetailedPreprocessingRecord您可以将其用作标志而不是 CXTranslationUnit_None
这可能有帮助。
关于compiler-construction - 使用 clang-c 索引文件不会命中我的 ppIncludedFile 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10567497/
按照此页面上的教程:https://cdkworkshop.com/20-typescript/40-hit-counter/300-resources.html 我相信this ,传递给 Table
据我所知std::allocator::construct在旧版本的 C++ 上仅需要两个参数;第一个是指向原始的、未构造的内存的指针,我们要在其中构造 T 类型的对象。第二个是用于初始化该对象的元素
我正在阅读 CanJS API 文档并遇到 can.Construct.extend http://canjs.com/docs/can.Construct.extend.html .我知道 can.
考虑 struct C { C() { printf("C::C()\n" ); } C(int) { printf("C::C(i
阅读 git repo 中截取的以下代码时遇到一些问题。链接到存储库和问题: https://github.com/paolo-sz/fatty/blob/master/src/winmain.c#L
除了将一种高级语言转换为另一种高级语言的编译器之外,任何编译为机器代码的编译器都需要用汇编编写吗? 最佳答案 编译器的源代码不需要用汇编语言编写。例如,CPython 编译器(好吧,技术上解释器)的(
我正在努力计算 worklist算法,我不想实现迭代算法,因为它需要很多冗余步骤。 我用来计算实时变量工作列表的算法如下 任何人都可以为下面给出的示例向我解释一下,初始工作列表是什么以及工作列表算法将
我有这部分语法 S ‐> S a | S b a | a | S b c S | S b c b | c S | c b 我需要使用它来创建一些 SD 集,然后在解析表上使用它。 但是,在此之前,我应
是否有人引用了有关着色器编译器/图形驱动程序编译器内部工作原理的文档和研究? 最佳答案 编写一个普通的 C 编译器和编写一个着色器编译器没有太大的区别。编写编译器的标准书是所谓的“龙书”: http:
请问有没有人能给我解释一下句法导向的切线线性码和伴随码的区别。 它与使用编译器推导代码有关。 我知道它们是在程序中推导数学方程式的不同方法,但是,我不知道如何解释它们。 提前致谢。 问候。 最佳答案
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
在编译器数据流分析中,变量的有效范围与其达到定义之间有什么区别?两者似乎都指的是同一件事... 最佳答案 它们是完全不同的东西,我建议您回过头来重新阅读那些使您感到困惑的定义。除其他事项外,对于使用给
我目前正在为一种非常有限的面向对象语言开发编译器。我想将所有值视为对象,这些值上的运算符将作为方法实现。编译器将程序转换为基于堆栈的虚拟机的汇编程序。 在编译期间,我将整数文字转换为特殊“整数”类的对
给定抽象语法树,我被要求编写一个程序来构建输入程序代码的数据流图。我在网上搜索数据流图的定义,发现一个代码段的数据流分析有很多事情要做。我想知道为给定代码构建数据流图到底需要绘制什么。很感谢任何形式的
一些随机的想法捕获了我,我就是无法摆脱它。我在想,既然现代处理器只是不同种类汇编语言的解释器,那么有没有办法创建一些直接在硬件中实现的高级语言解释器,使用一些 HDL 甚至直接使用逻辑门设计? 同时我
出现在代码生成的寄存器分配阶段的寄存器溢出或溢出代码是什么意思,编译器后端必须将变量分配到内存或寄存器? 最佳答案 Hardware registers是昂贵的(在芯片面积和寻址它们所需的指令位数方面
如果您的 bootstrap 语言编译器运行良好且可维护,为什么要更改它?例如,Go 在 1.5 版本中将其编译器重新编写为自托管,导致 compile times to become much sl
我在 Python Lisp 编译器和一些 C 链接器的源代码中看到了这个术语。 我的猜测是,修复只是 assembly 例程的一些包装,可确保对齐正确,但我对这里的任何事情都不确定。 最佳答案 “修
我对 VM 在运行时和编译时的优化感兴趣。我认为优化在编译时是最有效和最简单的。 然而,我的想法在某些情况下似乎是错误的。这在 Steve Yeggie's statement quoted by D
如果您正在构建一个编译器,那么在 AST 级别进行哪种优化是最好的? 最佳答案 大多数情况下,您无法在 AST 级别进行有趣的优化,因为您需要有关数据如何从程序的一个部分流向另一部分的信息。虽然数据流
我是一名优秀的程序员,十分优秀!