- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到一个要求,其中我有一个 c 文件,并且我正在为其生成 LLVM IR。从为每条指令生成的 LLVM IR 中,我正在计算执行需要多少个周期,现在我的问题是如何追溯到 C 代码并显示特定的 C 代码块(例如函数)所花费的计算数量周期(我实际上是根据生成的 LLVM IR 代码计算的)。
我有一个c代码如下:
int arithmeticOperations(int x, int y)
{
int aa, ab, ac, ad;
if(x>10)
{
aa = x+y;
ab = x-y;
for(x = 1; x <= aa; ++x)
{
y += x;
}
}
else
{
ac = x*y;
ad = x/y;
}
return aa * ab * ac * ad;
}
void arithmeticOperationsPart2(int x, int y)
{
int aa, ab, ac, ad;
if(x>10)
{
aa = x+y;
ab = x-y;
}
else
{
ac = x*y;
ad = x/y;
}
}
int main()
{
arithmeticOperations(35, 7);
arithmeticOperationsPart2(35, 7);
}
我正在使用命令创建 LLVM IR:
clang -Os -S -emit-llvm addition.c
此输出addition.ll文件如下:
; ModuleID = 'addition.c'
source_filename = "addition.c"
target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-windows-msvc18.0.0"
; Function Attrs: norecurse nounwind optsize readnone uwtable
define i32 @arithmeticOperations(i32, i32) local_unnamed_addr #0 {
%3 = icmp sgt i32 %0, 10
br i1 %3, label %4, label %7
; <label>:4: ; preds = %2
%5 = add nsw i32 %1, %0
%6 = sub nsw i32 %0, %1
br label %10
; <label>:7: ; preds = %2
%8 = mul nsw i32 %1, %0
%9 = sdiv i32 %0, %1
br label %10
; <label>:10: ; preds = %4, %7
%11 = phi i32 [ undef, %7 ], [ %5, %4 ]
%12 = phi i32 [ undef, %7 ], [ %6, %4 ]
%13 = phi i32 [ %8, %7 ], [ undef, %4 ]
%14 = phi i32 [ %9, %7 ], [ undef, %4 ]
%15 = mul nsw i32 %12, %11
%16 = mul nsw i32 %15, %13
%17 = mul nsw i32 %16, %14
ret i32 %17
}
; Function Attrs: norecurse nounwind optsize readnone uwtable
define void @arithmeticOperationsPart2(i32, i32) local_unnamed_addr #0 {
ret void
}
; Function Attrs: norecurse nounwind optsize readnone uwtable
define i32 @main() local_unnamed_addr #0 {
ret i32 0
}
attributes #0 = { norecurse nounwind optsize readnone uwtable "correctly-rounded-divide-sqrt-fp-math"="false" "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-jump-tables"="false" "no-nans-fp-math"="false" "no-signed-zeros-fp-math"="false" "no-trapping-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+fxsr,+mmx,+sse,+sse2,+x87" "unsafe-fp-math"="false" "use-soft-float"="false" }
!llvm.module.flags = !{!0}
!llvm.ident = !{!1}
!0 = !{i32 1, !"PIC Level", i32 2}
!1 = !{!"clang version 5.0.0 (trunk 302984) (llvm/trunk 302983)"}
现在我想过滤哪些LLVM代码对应于它生成的c源代码。(具体到一个函数)
例如(目前我想过滤c函数arithmeticOperations
):
%3 = icmp sgt i32 %0, 10
br i1 %3, label %4, label %7
; <label>:4: ; preds = %2
%5 = add nsw i32 %1, %0
%6 = sub nsw i32 %0, %1
br label %10
; <label>:7: ; preds = %2
%8 = mul nsw i32 %1, %0
%9 = sdiv i32 %0, %1
br label %10
; <label>:10: ; preds = %4, %7
%11 = phi i32 [ undef, %7 ], [ %5, %4 ]
%12 = phi i32 [ undef, %7 ], [ %6, %4 ]
%13 = phi i32 [ %8, %7 ], [ undef, %4 ]
%14 = phi i32 [ %9, %7 ], [ undef, %4 ]
%15 = mul nsw i32 %12, %11
%16 = mul nsw i32 %15, %13
%17 = mul nsw i32 %16, %14
ret i32 %17
对应于c代码的以下部分:
int aa, ab, ac, ad;
if(x>10)
{
aa = x+y;
ab = x-y;
for(x = 1; x <= aa; ++x)
{
y += x;
}
}
else
{
ac = x*y;
ad = x/y;
}
return aa * ab * ac * ad;
最佳答案
您可以通过添加 -g 标志来告诉 clang 发出调试信息:
clang -Os -S -emit-llvm -g addition.c
然后您将找到大量信息,了解哪条指令对应于 ll 文件中的哪一行原始行。
例如 arithmeticOperations
的开头函数翻译如下,行以 !dgb !<number>
结尾引用调试信息条目:
; Function Attrs: nounwind optsize readnone uwtable
define i32 @arithmeticOperations(i32 %x, i32 %y) local_unnamed_addr #0 !dbg !7 {
entry:
tail call void @llvm.dbg.value(metadata i32 %y, i64 0, metadata !12, metadata !18), !dbg !19
tail call void @llvm.dbg.value(metadata i32 %x, i64 0, metadata !13, metadata !18), !dbg !20
%cmp = icmp sgt i32 %x, 10, !dbg !21
br i1 %cmp, label %if.then, label %if.else, !dbg !23
在文件末尾会有许多“DILocation”条目,告诉您相应的源代码在哪里:
...
!19 = !DILocation(line: 1, column: 37, scope: !7)
!20 = !DILocation(line: 1, column: 30, scope: !7)
!21 = !DILocation(line: 4, column: 9, scope: !22)
!22 = distinct !DILexicalBlock(scope: !7, file: !1, line: 4, column: 8)
!23 = !DILocation(line: 4, column: 8, scope: !7)
因此,如果您有兴趣此行的来源:
%cmp = icmp sgt i32 %x, 10, !dbg !21
你必须寻找调试入口!21:
!21 = !DILocation(line: 4, column: 9, scope: !22)
事实上,第 9 行就是 if 所在的位置:
9: if(x>10)
Clangs 调试信息非常精确,甚至指向“>”运算符。
关于c - 如何将C函数映射到LLVM IR?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45142289/
请看一下我的代码。 int main () { Program* allcommand = new Program; allcommand->addCommand("add", new
因此,当我遇到调试断言时,我正在编写代码。现在我很想知道为什么这段代码不起作用: for(Model::MeshMap::iterator it = obj1->GetMeshes().begin()
这是我上一个问题的延续 Group, Sum byType then get diff using Java streams . 按照建议,我应该作为单独的线程发布,而不是更新原始线程。 因此,通过我
我正在实现一些非常适合 map 的代码。但是,我要迭代的列表中有大量对象,所以我的问题是哪种方法是解决此问题的最佳方法: var stuff = $.map(listOfMyObjects, some
我正在尝试创建一个包含不同类的成员函数指针的映射。成员函数都具有相同的签名。为了做到这一点,我所有的类都继承了一个 Object 类,它只有默认构造函数、虚拟析构函数和一个虚拟 ToString()
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: how do you make a heterogeneous boost::map? 有可能在 C++ 中
我有一个 Mysql 查询,请检查以下内容: SELECT `tbl_classSubjects`.`classID` , `tbl_classSubjects`.`sectionID` , `tbl
抱歉,这可能是一个基本问题。 JNA直接映射和接口(interface)映射有什么区别? 我的解释是否正确: 直接映射 : 直接使用库对象(如 Java 中的静态 main) 接口(interface
在 Twitter's Scala school collections section ,它们显示了一个带有偏函数作为值的 Map: // timesTwo() was defined earlie
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .
据我了解,从 scala stdlib 声明一个映射并没有将其专门用于原始类型。我要的不是付出装箱/拆箱的代价,而是同时拥有scala map 的接口(interface)。一个明显的选择是使用 tr
如何为这样的 JSON 响应创建对象映射,它只是一个整数数组: [ 565195, 565309, 565261, 565515, 565292, 565281, 566346, 5
是否可以为 DTO 对象创建映射然后查询它们 而不是域?如果不解释为什么? 如果我需要几个 dtos 怎么办? DTos 是只读的 ID 由 NH 自动生成 将来这些 dtos 将设置映射到链接的 d
我有一个返回的函数(常规代码) [words: "one two", row: 23, col: 45] 在 Scala 中,我将上面更改为 Scala Map,但随后我被迫将其声明为 Map[Str
我有一组与 Vanilla 磅蛋糕烘焙相关的数据(200 行),具有 27 个特征,如下所示。标签caketaste是衡量烤蛋糕的好坏程度,由 bad(0) 定义, neutral(1) , good
我有试图映射到新代码的遗留代码。 OLD_PERSON pid sid name age NEW_PERSON pid sid fid age RESOLVE_PERSON pid fid statu
我有一个表,其中一个字段可以指向其他 3 个表之一中的外键,具体取决于鉴别器值是什么(Project、TimeKeep 或 CostCenter。通常这是用子类实现的,我想知道我有什么 注意子类名称与
我有一个类型 [ST s (Int, [Int])] 的绑定(bind)我正在尝试申请runST使用映射到每个元素,如下所示: name :: [ST s (Int, [Int])] --Of Cou
在我正在进行的项目中,我有以下实体:分析师、客户 和承包商。每个都继承自基类 User。 public abstract class User { public virtual int Id
我想知道是否可以在 Vim 中创建一个映射(对于普通模式),允许用户在映射执行之前输入。 我想为我最常用的 grep 命令创建一个快捷方式的映射。我希望命令允许输入我正在搜索的内容,然后在输入时执行。
我是一名优秀的程序员,十分优秀!