| LEFT | RIGHT |
| 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 Loading... |
| 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() {} |
| LEFT | RIGHT |