Academic literature on the topic 'Debugger'
Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles
Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Debugger.'
Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.
You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.
Journal articles on the topic "Debugger"
da, Cruz, Pedro Henriques, and Maria Pereira. "ALMA versus DDD." Computer Science and Information Systems 5, no. 2 (2008): 119–36. http://dx.doi.org/10.2298/csis0802119d.
Full textTolmach, Andrew, and Andrew W. Appel. "A Debugger for Standard ML." Journal of Functional Programming 5, no. 2 (April 1995): 155–200. http://dx.doi.org/10.1017/s0956796800001313.
Full textChiş, Andrei, Marcus Denker, Tudor Gîrba, and Oscar Nierstrasz. "Practical domain-specific debuggers using the Moldable Debugger framework." Computer Languages, Systems & Structures 44 (December 2015): 89–113. http://dx.doi.org/10.1016/j.cl.2015.08.005.
Full textDolinay, Jan, Petr Dostalek, and Vladimir Vasek. "Arduino Debugger." IEEE Embedded Systems Letters 8, no. 4 (December 2016): 85–88. http://dx.doi.org/10.1109/les.2016.2619692.
Full textNeville-Neil, George V. "Getting Off the Mad Path." Queue 19, no. 6 (December 31, 2021): 18–21. http://dx.doi.org/10.1145/3511662.
Full textLanese, Ivan, Adrián Palacios, and Germán Vidal. "Causal-Consistent Replay Reversible Semantics for Message Passing Concurrent Programs." Fundamenta Informaticae 178, no. 3 (January 15, 2021): 229–66. http://dx.doi.org/10.3233/fi-2021-2005.
Full textVon Kaenel, Pierre A. "A debugger tutorial." ACM SIGCSE Bulletin 19, no. 4 (December 1987): 40–44. http://dx.doi.org/10.1145/39316.39325.
Full textRamsey, Norman, and David R. Hanson. "A retargetable debugger." ACM SIGPLAN Notices 27, no. 7 (July 1992): 22–31. http://dx.doi.org/10.1145/143103.143112.
Full textBowman, Dick, and Jim Weigang. "StepView APL Debugger." ACM SIGAPL APL Quote Quad 22, no. 4 (June 1992): 8–9. http://dx.doi.org/10.1145/140660.140671.
Full textRafieymehr, Ali, and Richard McKeever. "Java visual debugger." ACM SIGCSE Bulletin 39, no. 2 (June 2007): 75–79. http://dx.doi.org/10.1145/1272848.1272889.
Full textDissertations / Theses on the topic "Debugger"
Pope, Bernard James. "A declarative debugger for Haskell /." Connect to thesis, 2006. http://eprints.unimelb.edu.au/archive/00003290.
Full textJohnson, Stephen Lee. "TeaBag: A Debugger for Curry." PDXScholar, 2004. https://pdxscholar.library.pdx.edu/open_access_etds/2663.
Full textSchütze, Lars. "Implementing a Debugger for Dresden OCL." Bachelor's thesis, Saechsische Landesbibliothek- Staats- und Universitaetsbibliothek Dresden, 2013. http://nbn-resolving.de/urn:nbn:de:bsz:14-qucosa-118599.
Full textWagner, Christina. "Anforderungen an einen Debugger für Softwaregeneratoren." Bachelor's thesis, Universitätsbibliothek Leipzig, 2016. http://nbn-resolving.de/urn:nbn:de:bsz:15-qucosa-202633.
Full textChelliah, M. "A Compiler and Symbolic Debugger for Occam." Thesis, Indian Institute of Science, 1989. http://hdl.handle.net/2005/77.
Full textNi, Wayland 1982. "WSIM configurable digital signal processor simulator/debugger." Thesis, Massachusetts Institute of Technology, 2004. http://hdl.handle.net/1721.1/16683.
Full textIncludes bibliographical references (leaf 53).
This electronic version was submitted by the student author. The certified thesis is available in the Institute Archives and Special Collections.
This M.Eng. Thesis presents a design and implementation of a full-featured configurable Digital Signal Processor (DSP) simulator/debugger. The user will be able to set configurations in order to model a specific architecture design. The simulator will have a command interpreter to listen to and process commands given by the user. When supplied with an assembly program, the simulator will allow the user to step through the execution of the program cycle by cycle, as well as calculate statistics like instruction, resource, and cache profiling. Some of the main features of the simulator are a multiply-accumulate unit, memory with direct and indirect offset addressing, and loop instructions.
by Wayland Ni.
M.Eng.
Markusson, Christoffer. "Implementation of an application debugger for software in embedded systems." Thesis, Linköping University, Department of Computer and Information Science, 2008. http://urn.kb.se/resolve?urn=urn:nbn:se:liu:diva-15539.
Full textDebugging applications that are running in embedded systems is becoming harder and harder due to the growing complexity of the systems. This is especially true for embedded systems that are developed for the automotive market.
To aid the debugging there are tools called debuggers. Historically, debuggers have been implemented by using a debug port to connect a software debugger running at the developer machine to dedicated on-chip debugging hardware. The problem with this approach is that it is expensive and that it is not possible to use it if the debug port on the system is not available.Therefore there is a demand for user-friendly debuggers that are not as expensive and require no extra hardware.
This report presents alternatives to debugging embedded systems. From these alternatives a completely software based debugger solution called monitor-based debugging is selected and acts as a foundation for an implementation that is described in the report. The implementation uses GNU Debugger (GDB) and its remote debugging capabilities to perform debugging.
The implemented debugger is evaluated by using it to debug applications that are running in a powertrain control unit in a modern truck. It is also compared to two commercial hardware based debuggers. In the evaluation it is found that the debugger functionalities and user-friendliness are on par with the commercial alternatives, but that it lacks some in its non-intrusive capabilities when comparing it with the high-end alternatives on the market.
Nilsson, Sverker. "Heapy: A Memory Profiler and Debugger for Python." Thesis, Linköping University, Department of Computer and Information Science, 2006. http://urn.kb.se/resolve?urn=urn:nbn:se:liu:diva-7247.
Full textExcessive memory use may cause severe performance problems and system crashes. Without appropriate tools, it may be difficult or impossible to determine why a program is using too much memory. This applies even though Python provides automatic memory management --- garbage collection can help avoid many memory allocation bugs, but only to a certain extent due to the lack of information during program execution. There is still a need for tools helping the programmer to understand the memory behaviour of programs, especially in complicated situations. The primary motivation for Heapy is that there has been a lack of such tools for Python.
The main questions addressed by Heapy are how much memory is used by objects, what are the objects of most interest for optimization purposes, and why are objects kept in memory. Memory leaks are often of special interest and may be found by comparing snapshots of the heap population taken at different times. Memory profiles, using different kinds of classifiers that may include retainer information, can provide quick overviews revealing optimization possibilities not thought of beforehand. Reference patterns and shortest reference paths provide different perspectives of object access patterns to help explain why objects are kept in memory.
Manoh, Nadia, and Hamoud Abdullah. "Software debugging using the debugger SAM4E Xplained Pro." Thesis, Malmö universitet, Fakulteten för teknik och samhälle (TS), 2018. http://urn.kb.se/resolve?urn=urn:nbn:se:mau:diva-20090.
Full textEmbedded systems are found in almost every device used in our daily lives, including cell phones, refrigerators, and cars. Some devices may be significantly more sensitive than others, meaning a bug appearing in a system could cause harm, even loss of human lives or cause no harm at all. To reduce bugs in a system, software testing and software debugging are performed.The Computer Science program at Malmö University does not focus on teaching software debugging using a debugger. Thus, this thesis presents a debugging lab created for Computer Science students, considered to help them gain knowledge in how to use the debugger SAM4E Xplained Pro to locate bugs. As a result, four students performed the debugging lab of which 75 percent of the bugs were found and remedied.
Watson, Gregory R. (Gregory Richard). "The design and implementation of a parallel relative debugger." Monash University, School of Computer Science and Software Engineering, 2000. http://arrow.monash.edu.au/hdl/1959.1/8772.
Full textBooks on the topic "Debugger"
Wang, Chang Jian. An intelligent concurrent debugger system. Ottawa: National Library of Canada = Bibliothèque nationale du Canada, 1992.
Find full textCompany, Hewlett-Packard. HP Symbolic Debugger user's guide. 4th ed. Cupertino: Hewlett-Packard, 1987.
Find full textCooper, R. C. B. Pilgrim: A debugger for distributed systems. Cambridge: University of Cambridge, Computer Laboratory, 1987.
Find full textOlsen, J. W. Presenting SoftICE: The advanced Windows debugger. Foster City, CA: IDG Book Worldwide, 1996.
Find full textInstruments, Texas. TMS320C3X C source debugger: User's guide. [S.l.]: Texas Instruments, 1993.
Find full textPancake, Cherri M. Debugger visualizations for shared-memory multiprocessors. Ithaca, N.Y: Cornell Theory Center, Cornell University, 1991.
Find full textInstruments, Texas. TMS320C4X C source debugger: User's guide. [S.l.]: Texas Instruments, 1992.
Find full textBook chapters on the topic "Debugger"
Weik, Martin H. "debugger." In Computer Science and Communications Dictionary, 367. Boston, MA: Springer US, 2000. http://dx.doi.org/10.1007/1-4020-0613-6_4472.
Full textKohls, Christian, Alexander Dobrynin, and Florian Leonhard. "Debugger." In Programmieren lernen mit Kotlin, 287–89. München: Carl Hanser Verlag GmbH & Co. KG, 2020. http://dx.doi.org/10.3139/9783446467118.023.
Full textBlunden, Bill. "Debugger Internals." In Software Exorcism: A Handbook for Debugging and Optimizing Legacy Code, 157–213. Berkeley, CA: Apress, 2012. http://dx.doi.org/10.1007/978-1-4302-5108-8_4.
Full textBlunden, Bill. "Debugger Internals." In Software Exorcism: A Handbook for Debugging and Optimizing Legacy Code, 157–213. Berkeley, CA: Apress, 2003. http://dx.doi.org/10.1007/978-1-4302-0788-7_4.
Full textHering, Ekbert, and Alexander Mendler. "Debuggen mit dem Turbo Debugger unter Windows." In Das Vieweg Buch zu Turbo Pascal für Windows, 177–95. Wiesbaden: Vieweg+Teubner Verlag, 1992. http://dx.doi.org/10.1007/978-3-322-91760-7_6.
Full textVraný, Jan, and Michal Píše. "Multilanguage Debugger Architecture." In SOFSEM 2010: Theory and Practice of Computer Science, 731–42. Berlin, Heidelberg: Springer Berlin Heidelberg, 2010. http://dx.doi.org/10.1007/978-3-642-11266-9_61.
Full textBontekoe, Tj Romke, and Do Kester. "Memsys as Debugger." In Maximum Entropy and Bayesian Methods, 235–40. Dordrecht: Springer Netherlands, 1992. http://dx.doi.org/10.1007/978-94-017-2219-3_17.
Full textVan Hoey, Jo. "Data Display Debugger." In Beginning x64 Assembly Programming, 51–55. Berkeley, CA: Apress, 2019. http://dx.doi.org/10.1007/978-1-4842-5076-1_6.
Full textReps, Thomas W., and Tim Teitelbaum. "The SSL Debugger." In The Synthesizer Generator Reference Manual, 112–14. New York, NY: Springer New York, 1989. http://dx.doi.org/10.1007/978-1-4613-9633-8_4.
Full textReiss, Steven P. "The FIELD Debugger." In The Field Programming Environment: A Friendly Integrated Environment for Learning and Development, 53–79. Boston, MA: Springer US, 1995. http://dx.doi.org/10.1007/978-1-4615-2215-7_4.
Full textConference papers on the topic "Debugger"
In-geol Chun and Chae-deok Lim. "NanoEsto Debugger: The Tiny Embedded System Debugger." In 8th International Conference on Advanced Communication Technology. IEEE, 2006. http://dx.doi.org/10.1109/icact.2006.206065.
Full textRamsey, Norman, and David R. Hanson. "A retargetable debugger." In the ACM SIGPLAN 1992 conference. New York, New York, USA: ACM Press, 1992. http://dx.doi.org/10.1145/143095.143112.
Full textCuny, Janice, George Forman, Alfred Hough, Joydip Kundu, Calvin Lin, Lawrence Snyder, and David Stemple. "The Ariadne debugger." In the 1993 ACM/ONR workshop. New York, New York, USA: ACM Press, 1993. http://dx.doi.org/10.1145/174266.174276.
Full textChun, In-geol, Choon-oh Lee, and Duk-kyun Woo. "Esto NS-Debugger: The Non-stop Debugger for Embedded Systems." In The 9th International Conference on Advanced Communication Technology. IEEE, 2007. http://dx.doi.org/10.1109/icact.2007.358386.
Full textIngeol Chun and Chaedeok Lim. "ES-debugger : the flexible embedded system debugger based on JTAG technology." In The 7th International Conference on Advanced Communication Technology. IEEE, 2005. http://dx.doi.org/10.1109/icact.2005.246099.
Full textLumetta, Steven S., and David E. Culler. "The Mantis parallel debugger." In the SIGMETRICS symposium. New York, New York, USA: ACM Press, 1996. http://dx.doi.org/10.1145/238020.238056.
Full textBertot, Yves. "Occurrences in debugger specifications." In the ACM SIGPLAN 1991 conference. New York, New York, USA: ACM Press, 1991. http://dx.doi.org/10.1145/113445.113473.
Full textDuca, Nat, Chris Niski, Jonathan Bilodeau, Yuan Chen, Matthew Bolitho, and Jonathan Cohen. "Building a graphics debugger." In ACM SIGGRAPH 2005 Sketches. New York, New York, USA: ACM Press, 2005. http://dx.doi.org/10.1145/1187112.1187127.
Full textSong, Myoungkyu, and Eli Tilevich. "The anti-goldilocks debugger." In Proceeding of the 24th ACM SIGPLAN conference companion. New York, New York, USA: ACM Press, 2009. http://dx.doi.org/10.1145/1639950.1640027.
Full textChiş, Andrei, Oscar Nierstrasz, and Tudor Gîrba. "Towards a moldable debugger." In the 7th Workshop. New York, New York, USA: ACM Press, 2013. http://dx.doi.org/10.1145/2489798.2489801.
Full textReports on the topic "Debugger"
Miller, P., D. Nessett, and R. Pizzi. GNU debugger internal architecture. Office of Scientific and Technical Information (OSTI), December 1993. http://dx.doi.org/10.2172/10123120.
Full textDoubleday, Dennis L. The Durra Application Debugger/Monitor. Fort Belvoir, VA: Defense Technical Information Center, September 1989. http://dx.doi.org/10.21236/ada219290.
Full textJohnson, Stephen. TeaBag: A Debugger for Curry. Portland State University Library, January 2000. http://dx.doi.org/10.15760/etd.2658.
Full textTsien, Christine L. Maygen: A Symbolic Debugger Generation System. Fort Belvoir, VA: Defense Technical Information Center, July 1993. http://dx.doi.org/10.21236/ada272512.
Full textBurns, T. J. ORGBUG -- A windows-based combinatorial geometry debugger. Office of Scientific and Technical Information (OSTI), June 1993. http://dx.doi.org/10.2172/7368450.
Full textBurns, T. J. ORGBUG -- A windows-based combinatorial geometry debugger. Office of Scientific and Technical Information (OSTI), June 1993. http://dx.doi.org/10.2172/10170388.
Full textBaskerville, David B. Graphic Presentation of Data Structures in the DBX Debugger. Fort Belvoir, VA: Defense Technical Information Center, July 1985. http://dx.doi.org/10.21236/ada611773.
Full textWolfe, M. Purple L1 Milestone Review Panel TotalView Debugger Functionality and Performance for ASC Purple. Office of Scientific and Technical Information (OSTI), December 2006. http://dx.doi.org/10.2172/896623.
Full text