-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbibliography.bib
106 lines (89 loc) · 3.1 KB
/
bibliography.bib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
% bibliography.bib: bibliograpy file.
@misc{LOCAL:www/Torvalds00,
title = {{Re: SCO: "thread creation is about a thousand times faster
than onnative}},
author = {Linus Torvalds},
howpublished = {https://lkml.org/lkml/2000/8/25/132}
}
@misc{LOCAL:www/Eckel00,
title = {{Thinking in C++ -- Volume One: Introduction to Standard
C++}},
author = {Bruce Eckel},
howpublished = {http://mindview.net/Books/TICPP/ThinkingInCPP2e.html}
}
@misc{LOCAL:www/EckelA03,
title = {{Thinking in C++ -- Volume Two: Practical Programming}},
author = {Bruce Eckel and
Chuck Allison},
howpublished = {http://mindview.net/Books/TICPP/ThinkingInCPP2e.html}
}
@misc{LOCAL:www/open64,
title = {Open64},
author = {AMD},
howpublished = {http://developer.amd.com/tools-and-sdks/cpu-development/x86-open64-compiler-suite}
}
@misc{LOCAL:www/gcc,
title = {{GNU Compiler Collection}},
author = {GNU},
howpublished = {http://gcc.gnu.org}
}
@misc{LOCAL:www/llvm,
title = {{Low Level Virtual Machine}},
author = {University of Illinois at Urbana-Champaign},
howpublished = {http://www.llvm.org}
}
@misc{LOCAL:www/llvmLanguageRef,
title = {{LLVM Language Reference Manual}},
author = {Chris Lattner and
Vikram Adve},
howpublished = {http://llvm.org/docs/LangRef.html}
}
@misc{LOCAL:www/llvmWritingAPass,
title = {{Writing an LLVM Pass}},
author = {Chris Lattner and
Jim Laskey},
howpublished = {http://llvm.org/docs/WritingAnLLVMPass.html}
}
@misc{LOCAL:www/llvmTesting,
title = {{LLVM Testing Infrastructure Guide}},
author = {John T. Criswell and
Daniel Dunbar and
Reid Spencer and
Tanya Lattner},
howpublished = {http://llvm.org/docs/TestingGuide.html}
}
@misc{LOCAL:www/clang,
title = {{Clang: a C language family frontend for LLVM}},
author = {University of Illinois at Urbana-Champaign},
howpublished = {http://clang.llvm.org}
}
@misc{LOCAL:www/llvmCodingStandards,
title = {{LLVM Coding Standards}},
author = {LLVM Community},
howpublished = {http://llvm.org/docs/CodingStandards.html}
}
@misc{LOCAL:www/llvmPasses,
title = {{LLVM Passes}},
author = {LLVM Community},
howpublished = {http://llvm.org/docs/Passes.html}
}
@misc{LOCAL:www/llvmVectorizers,
title = {{Autovectorization in LLVM}},
author = {LLVM Community},
howpublished = {http://llvm.org/docs/Vectorizers.html}
}
@misc{LOCAL:www/llvmProgrammerManual,
title = {{LLVM Programmer's Manual}},
author = {LLVM Community},
howpublished = {http://llvm.org/docs/ProgrammersManual.html}
}
@misc{LOCAL:www/cotPasses,
title = {{Compiler Optimization and Transformation Passes}},
author = {Ettore Speziale},
howpublished = {https://github.com/speziale-ettore/COTPasses}
}
@misc{LOCAL:www/proGit,
title = {{Pro Git}},
author = {Scott Chacon},
howpublished = {http://git-scm.com/book}
}