aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Interpreter
AgeCommit message (Expand)AuthorFilesLines
2026-01-18[clang-repl] Skip out-of-process execution due to compiler-rt path mismatch (...Vassil Vassilev1-3/+3
2026-01-14[clang-repl] Use more precise search to find the orc runtime. (#175805)Vassil Vassilev1-68/+73
2026-01-12[clang-repl] Move the produced temporary files in wasm in a temp folder. (#17...Vassil Vassilev3-7/+34
2026-01-12[clang-repl] Rework layering of incremental executors. (#175448)Vassil Vassilev8-460/+470
2026-01-12[clang] fix warning (#174587)killcerr1-1/+1
2026-01-11[clang-repl] Fix OrcRuntime lookup for Solaris and unit tests. (#175435)Vassil Vassilev1-60/+44
2026-01-11[clang-repl] Teach the default orc runtime finder to search in more locations...Vassil Vassilev1-29/+88
2026-01-10[clang-repl] Simplify the logic around out of process execution. NFC (#175322)Vassil Vassilev3-114/+107
2025-12-17[clang] Remove pointless `hasDiagnostics()` checks (#172705)Jan Svoboda1-4/+0
2025-12-08[clang-repl] Skip CodeGen for top-level decls when diagnostics report errors ...Anutosh Bhat1-0/+5
2025-11-26Reland "[clang] Refactor to remove clangDriver dependency from clangFrontend ...Naveen Seth Hanig2-1/+3
2025-11-24Revert " [clang] Refactor to remove clangDriver dependency from clangFrontend...Naveen Seth Hanig2-3/+1
2025-11-24Reapply " [clang] Refactor to remove clangDriver dependency from clangFronten...Shilei Tian2-1/+3
2025-11-24Revert " [clang] Refactor to remove clangDriver dependency from clangFrontend...Shilei Tian2-3/+1
2025-11-23 [clang] Refactor to remove clangDriver dependency from clangFrontend and fl...Naveen Seth Hanig2-1/+3
2025-11-19[ORC] Remove now unused EPCDebugObjectRegistrar (NFC) (#167868)Stefan Gränitz1-3/+1
2025-11-18[ORC] Move DebugObjectManagerPlugin into Debugging/ELFDebugObjectPlugin (NFC)...Stefan Gränitz1-1/+0
2025-11-10Reland "[clang] Refactor option-related code from clangDriver into new clangO...Naveen Seth Hanig2-3/+3
2025-11-10Revert "[clang] Refactor option-related code from clangDriver into new clangO...Naveen Seth Hanig2-3/+3
2025-11-10[clang] Refactor option-related code from clangDriver into new clangOptions l...Naveen Seth Hanig2-3/+3
2025-11-06[clang-repl] Fixing vulnerabilities with respect to orc runtime (#165852)Anutosh Bhat1-17/+32
2025-10-29[clang-repl] Fix struct value printing for clang-repl in C mode (#165538)Anutosh Bhat1-2/+3
2025-10-26[clang-repl] Use RegisterPTU for tracking generated TranslationUnitDecl throu...Anutosh Bhat1-6/+1
2025-10-15[clang] NFC: rename TagType::getOriginalDecl back to getDecl (#163271)Matheus Izvekov1-2/+2
2025-10-12[clang] Use [[fallthrough]] instead of LLVM_FALLTHROUGH (NFC) (#163085)Kazu Hirata1-1/+1
2025-09-30[clang-repl] Teach clang-repl how to load PCHs (reprise) (#157359)Jeaye Wilkerson3-4/+10
2025-09-16[clang] Initialize the file system explicitly (#158381)Jan Svoboda1-2/+5
2025-09-13[clang-repl] Add support for running custom code in Remote JIT executor (#157...Abhinav Kumar3-3/+9
2025-09-12Allow for custom code model in clang::Interpreter (#156977)Jeaye Wilkerson1-0/+2
2025-09-07[clang-repl] Sink RemoteJITUtils into Interpreter class. NFC (#155140)Abhinav Kumar5-286/+404
2025-08-27[clang] NFC: reintroduce clang/include/clang/AST/Type.h (#155050)Matheus Izvekov2-2/+2
2025-08-27[clang] NFC: rename clang/include/clang/AST/Type.h to TypeBase.h (#155049)Matheus Izvekov2-2/+2
2025-08-27[clang-repl] Put CompilerInstance from IncrementalAction to use for non-asser...Anutosh Bhat2-9/+10
2025-08-26[clang] NFC: introduce Type::getAsEnumDecl, and cast variants for all TagDecl...Matheus Izvekov2-10/+6
2025-08-26[Interpreter] Fix a warningKazu Hirata1-1/+1
2025-08-26[clang-repl] Delegate CodeGen related operations for PTU to IncrementalParser...Anutosh Bhat9-196/+308
2025-08-25[clang] NFC: change more places to use Type::getAsTagDecl and friends (#155313)Matheus Izvekov1-9/+6
2025-08-12Revert "[clang-repl] Enable extending `launchExecutor` (#152562)" (#153180)Abhinav Kumar1-30/+1
2025-08-09[clang] Improve nested name specifier AST representation (#147835)Matheus Izvekov2-7/+7
2025-08-08[clang-repl] Enable extending `launchExecutor` (#152562)Abhinav Kumar1-1/+30
2025-08-01NFC: Clean up of IntrusiveRefCntPtr construction from raw pointers. (#151782)James Y Knight1-7/+5
2025-07-31NFC: Clean up of IntrusiveRefCntPtr construction from raw pointers. (#151545)James Y Knight2-5/+3
2025-07-23[clang-repl] Improve error message on failed undos (#149396)Aaron Danen1-2/+10
2025-07-20[clang-repl] Another try on system-z.Vassil Vassilev1-1/+1
2025-07-19[clang-repl] Lay the basic infrastructure for pretty printing of types (#148701)Vassil Vassilev6-61/+435
2025-07-09[Clang] Respect MS layout attributes during CUDA/HIP device compilation (#146...Yaxun (Sam) Liu1-1/+2
2025-07-03[ORC] Replace ThreadSafeContext::getContext with withContextDo. (#146819)Lang Hames1-5/+8
2025-06-28[REAPPLY][Clang-Repl] Add support for out-of-process execution. #110418 (#144...SahilPatidar3-8/+299
2025-06-15[clang] Remove unused includes (NFC) (#144285)Kazu Hirata2-5/+0
2025-06-12[Clang][NFC] Move FatbinFileName instead of copy (#143827)Shafik Yaghmour1-1/+1