Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(90)

Delta Between Two Patch Sets: lib/ExecutionEngine/JIT/JIT.cpp

Issue 91042: Implement LLVM JIT side of GDB JIT debugging interface (Closed) SVN Base: http://llvm.org/svn/llvm-project/llvm/trunk/
Left Patch Set: Move the object files off disk and into memory. Created 3 months, 2 weeks ago
Right Patch Set: Synced with TOT. Created 2 months, 2 weeks ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===// 1 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
2 // 2 //
3 // The LLVM Compiler Infrastructure 3 // The LLVM Compiler Infrastructure
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This tool implements a just-in-time compiler for LLVM, allowing direct 10 // This tool implements a just-in-time compiler for LLVM, allowing direct
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 return Ptr; 772 return Ptr;
773 } 773 }
774 774
775 void JIT::addPendingFunction(Function *F) { 775 void JIT::addPendingFunction(Function *F) {
776 MutexGuard locked(lock); 776 MutexGuard locked(lock);
777 jitstate->getPendingFunctions(locked).push_back(F); 777 jitstate->getPendingFunctions(locked).push_back(F);
778 } 778 }
779 779
780 780
781 JITEventListener::~JITEventListener() {} 781 JITEventListener::~JITEventListener() {}
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld r497