source: doc/theses/mike_brooks_MMath/uw-ethesis.bib@ 6224eeb

Last change on this file since 6224eeb was c1f17aa, checked in by Peter A. Buhr <pabuhr@…>, 4 weeks ago

update and add citations

  • Property mode set to 100644
File size: 6.4 KB
Line 
1f% Bibliography of key references for "LaTeX for Thesis and Large Documents"
2% For use with BibTeX
3
4% --------------------------------------------------
5% Cforall
6
7@misc{cfa:frontpage,
8 url = {https://cforall.uwaterloo.ca}
9}
10@article{cfa:typesystem,
11 author = {Aaron Moss and Robert Schluntz and Peter A. Buhr},
12 title = {{\CFA} : Adding modern programming language features to {C}},
13 journal = {Softw. Pract. Exp.},
14 volume = {48},
15 number = {12},
16 pages = {2111--2146},
17 year = {2018},
18}
19
20% --------------------------------------------------
21% C facts
22
23@misc{arr:gnu-flex-mbr,
24 title = {Arrays of Length Zero},
25 howpublished= {\url{https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html}},
26}
27
28
29% --------------------------------------------------
30% C++ facts
31
32@misc{cxx:raii-abi,
33 key = {Itanium},
34 title = {Itanium {C}++ {ABI}},
35 howpublished= {\url{https://itanium-cxx-abi.github.io/cxx-abi/abi.html}},
36}
37
38
39% --------------------------------------------------
40% Array prior work
41
42@inproceedings{arr:futhark:tytheory,
43 author = {Troels Henriksen and Martin Elsman},
44 title = {Towards Size-Dependent Types for Array Programming},
45 year = {2021},
46 publisher = {Association for Computing Machinery},
47 address = {New York, NY, USA},
48 booktitle = {Proceedings of the 7th ACM SIGPLAN International Workshop on Libraries, Languages and Compilers for Array Programming},
49 pages = {1-14},
50 numpages = {14},
51 location = {Virtual, Canada},
52 series = {ARRAY 2021}
53}
54
55@article{arr:dex:long,
56 author = {Adam Paszke and Daniel D. Johnson and David Duvenaud and
57 Dimitrios Vytiniotis and Alexey Radul and Matthew J. Johnson and
58 Jonathan Ragan-Kelley and Dougal Maclaurin},
59 title = {Getting to the Point. Index Sets and Parallelism-Preserving Autodiff
60 for Pointful Array Programming},
61 publisher = {Association for Computing Machinery},
62 address = {New York, NY, USA},
63 volume = 5,
64 number = {ICFP},
65 year = 2021,
66 journal = {Proc. ACM Program. Lang.},
67 month = {aug},
68}
69
70% --------------------------------------------------
71% Linked-list prior work
72
73@misc{CFAStackEvaluation,
74 contributer = {a3moss@plg},
75 author = {Aaron Moss},
76 title = {\textsf{C}$\mathbf{\forall}$ Stack Evaluation Programs},
77 year = 2018,
78 howpublished= {\url{https://cforall.uwaterloo.ca/CFAStackEvaluation.zip}},
79}
80
81@misc{lst:linuxq,
82 key = {queue},
83 title = {queue(7) -- Linux manual page},
84 howpublished= {\url{https://man7.org/linux/man-pages/man3/queue.3.html}},
85}
86% see also https://man7.org/linux/man-pages/man7/queue.7.license.html
87% https://man7.org/tlpi/
88% https://www.kernel.org/doc/man-pages/
89
90@misc{lst:stl,
91 key = {list},
92 title = {std::list},
93 howpublished= {\url{https://en.cppreference.com/w/cpp/container/list}},
94}
95
96% -------------------------------------------------
97% Safety
98
99@article{Blache19,
100 author = {Gunter Blache},
101 title = {Handling Index-out-of-bounds in safety-critical embedded {C} code using model-based development},
102 journal = {Software \& Systems Modeling},
103 volume = 18,
104 year = 2019,
105 pages = {1795-1805},
106}
107
108@InProceedings{Ruef19,
109 author = {Andrew Ruef and Leonidas Lampropoulos and Ian Sweet and David Tarditi and Michael Hicks},
110 title = {Achieving Safety Incrementally with {Checked C}},
111 editor = {Flemming Nielson and David Sands},
112 booktitle = {Principles of Security and Trust},
113 publisher = {Springer International Publishing},
114 address = {Cham},
115 year = {2019},
116 pages = {76-98},
117}
118
119@misc{Mendio24,
120 contributer = {pabuhr@plg},
121 title = {What are the most secure programming languages?},
122 author = {Mend.io (White Source Ltd.)},
123 year = 2024,
124 howpublished= {\url{https://www.mend.io/most-secure-programming-languages}},
125}
126
127@phdthesis{Emre2022,
128 author = "Mehmet Emre",
129 title = "Translating C to Safe Rust: Reasoning about Pointer Types and Lifetimes",
130 school = "UC Santa Barbara",
131 year = 2022
132}
133
134@inproceedings{White2016,
135 author = {White, David H. and Rupprecht, Thomas and L\"{u}ttgen, Gerald},
136 title = {DSI: an evidence-based approach to identify dynamic data structures in C programs},
137 year = {2016},
138 isbn = {9781450343909},
139 publisher = {Association for Computing Machinery},
140 address = {New York, NY, USA},
141 url = {https://doi.org/10.1145/2931037.2931071},
142 doi = {10.1145/2931037.2931071},
143 booktitle = {Proceedings of the 25th International Symposium on Software Testing and Analysis},
144 pages = {259-269},
145 numpages = {11},
146 keywords = {Data structure identification, dynamic data structures, pointer programs, program comprehension},
147 location = {Saarbr\"{u}cken, Germany},
148 series = {ISSTA 2016}
149}
150
151% -----------------------------------------------
152% Misc
153
154@misc{RVO20,
155 contributer = {pabuhr@plg},
156 title = {Return value optimization ({RVO})},
157 author = {Special Interest Group on {C++}},
158 year = 2020,
159 month = jun,
160 howpublished= {\url{https://sigcpp.github.io/2020/06/08/return-value-optimization}},
161}
162
163@misc{DependentType,
164 contributer = {pabuhr@plg},
165 title = {Dependent Type},
166 author = {HaskellWik},
167 year = 2021,
168 month = apr,
169 howpublished= {\url{https://wiki.haskell.org/Dependent_type}},
170}
171
172
173@misc{Anderson94,
174 contributer = {pabuhr@plg},
175 title = {Clockwise/Spiral Rule},
176 author = {David Anderson},
177 year = 1994,
178 month = may,
179 howpublished= {\url{https://c-faq.com/decl/spiral.anderson.html}},
180}
181
182@article{Brinker26,
183 author = {Brinker, Andrew Lilley},
184 title = {Memory Safety for Skeptics},
185 year = {2026},
186 publisher = {ACM},
187 address = {New York, NY, USA},
188 volume = {69},
189 number = {2},
190 journal = {CACM},
191 month = jan,
192 pages = {52-58},
193}
194
195@book{Sutter99,
196 keywords = {C++, programming problems},
197 author = {Herb Sutter},
198 title = {Exceptional C++: 47 Engineering Puzzles, Programming Problems, and Solutions},
199 publisher = {Addison-Wesley Longman Publishing Co., Inc.},
200 address = {75 Arlington Street, Boston, MA, USA},
201 month = jun,
202 year = 1999,
203}
204
205@book{AWK,
206 keywords = {AWK, string manipulation language},
207 author = {Alfred V. Aho and Brian W. Kernighan and Peter Weinberger},
208 title = {The AWK programming language},
209 publisher = {Addison-Wesley Longman Publishing Co., Inc.},
210 address = {75 Arlington Street, Boston, MA, USA},
211 month = sep,
212 year = 1987,
213}
Note: See TracBrowser for help on using the repository browser.