├── .gitattributes ├── .gitignore ├── Content ├── EBP_RunCppScript_Example.uasset ├── EBP_RunCppScript_Math.uasset ├── MemberStruct.uasset ├── OtherBlueprint.uasset └── TestBPStruct.uasset ├── Resources ├── Font │ ├── DroidSans.tps │ └── DroidSansMono.ttf ├── Icon128.png └── UI │ ├── CodeEditor_16x.png │ ├── FolderClosed.png │ ├── FolderOpen.png │ ├── GenericFile.png │ ├── SaveAll_40x.png │ ├── Save_40x.png │ ├── TextBlockHighlightShape.png │ └── TextEditorBorder.png ├── Source ├── ClingEditor │ ├── ClingEditor.Build.cs │ ├── Private │ │ ├── ClingCommandExecutor.cpp │ │ ├── ClingEditor.cpp │ │ ├── ClingEditorSetting.cpp │ │ ├── CppHighLight │ │ │ ├── CodeEditorStyle.cpp │ │ │ ├── CppRichTextSyntaxHighlightMarshaller.cpp │ │ │ └── SyntaxTextStyle.cpp │ │ ├── Customization │ │ │ ├── CodeStringCustomization.cpp │ │ │ └── CodeStringCustomization.h │ │ └── PrivateAccessor.hpp │ └── Public │ │ ├── ClingCommandExecutor.h │ │ ├── ClingEditor.h │ │ ├── ClingEditorSetting.h │ │ └── CppHighLight │ │ ├── CodeEditorStyle.h │ │ ├── CppRichTextSyntaxHighlightMarshaller.h │ │ └── SyntaxTextStyle.h ├── ClingKismet │ ├── ClingKismet.Build.cs │ ├── Private │ │ ├── ClingKismet.cpp │ │ ├── K2Node_ExecuteCppScript.cpp │ │ ├── RecoverCodeGeneration.cpp │ │ └── RecoverCodeGeneration.h │ └── Public │ │ ├── ClingKismet.h │ │ ├── ClingScriptMarks.h │ │ └── K2Node_ExecuteCppScript.h ├── ClingRuntime │ ├── ClingRuntime.Build.cs │ ├── Private │ │ ├── ClingBlueprintFunctionLibrary.cpp │ │ ├── ClingLog │ │ │ ├── ClingLog.cpp │ │ │ ├── LogRedirector.cpp │ │ │ └── LogRedirector.h │ │ ├── ClingRuntime.cpp │ │ ├── ClingSetting.cpp │ │ ├── CodeString.cpp │ │ ├── MyTestInterpreter.cpp │ │ └── Registry │ │ │ └── PtrRegistry.cpp │ └── Public │ │ ├── ClingBlueprintFunctionLibrary.h │ │ ├── ClingLog │ │ └── ClingLog.h │ │ ├── ClingRuntime.h │ │ ├── ClingSetting.h │ │ ├── CodeString.h │ │ ├── MyTestInterpreter.h │ │ ├── Registry │ │ └── PtrRegistry.h │ │ ├── TestStatic.cpp │ │ └── TestStatic.h ├── ClingScript │ ├── ClingScript.Build.cs │ ├── Private │ │ └── ClingScript.cpp │ └── Public │ │ └── ClingScript.h ├── ThirdParty │ └── ClingLibrary │ │ ├── ClingLibrary.Build.cs │ │ ├── ClingLibrary.tps │ │ └── LLVM │ │ ├── bin │ │ └── cling-demo.dll │ │ ├── include │ │ ├── clang-c │ │ │ ├── BuildSystem.h │ │ │ ├── CXCompilationDatabase.h │ │ │ ├── CXDiagnostic.h │ │ │ ├── CXErrorCode.h │ │ │ ├── CXFile.h │ │ │ ├── CXSourceLocation.h │ │ │ ├── CXString.h │ │ │ ├── Documentation.h │ │ │ ├── ExternC.h │ │ │ ├── FatalErrorHandler.h │ │ │ ├── Index.h │ │ │ ├── Platform.h │ │ │ └── Rewrite.h │ │ ├── clang │ │ │ ├── APINotes │ │ │ │ ├── APINotesManager.h │ │ │ │ ├── APINotesOptions.h │ │ │ │ ├── APINotesReader.h │ │ │ │ ├── APINotesWriter.h │ │ │ │ ├── APINotesYAMLCompiler.h │ │ │ │ └── Types.h │ │ │ ├── ARCMigrate │ │ │ │ ├── ARCMT.h │ │ │ │ ├── ARCMTActions.h │ │ │ │ └── FileRemapper.h │ │ │ ├── AST │ │ │ │ ├── APNumericStorage.h │ │ │ │ ├── APValue.h │ │ │ │ ├── AST.h │ │ │ │ ├── ASTConcept.h │ │ │ │ ├── ASTConsumer.h │ │ │ │ ├── ASTContext.h │ │ │ │ ├── ASTContextAllocate.h │ │ │ │ ├── ASTDiagnostic.h │ │ │ │ ├── ASTDumper.h │ │ │ │ ├── ASTDumperUtils.h │ │ │ │ ├── ASTFwd.h │ │ │ │ ├── ASTImportError.h │ │ │ │ ├── ASTImporter.h │ │ │ │ ├── ASTImporterLookupTable.h │ │ │ │ ├── ASTImporterSharedState.h │ │ │ │ ├── ASTLambda.h │ │ │ │ ├── ASTMutationListener.h │ │ │ │ ├── ASTNodeTraverser.h │ │ │ │ ├── ASTStructuralEquivalence.h │ │ │ │ ├── ASTTypeTraits.h │ │ │ │ ├── ASTUnresolvedSet.h │ │ │ │ ├── ASTVector.h │ │ │ │ ├── AbstractBasicReader.h │ │ │ │ ├── AbstractBasicWriter.h │ │ │ │ ├── AbstractTypeReader.h │ │ │ │ ├── AbstractTypeWriter.h │ │ │ │ ├── Attr.h │ │ │ │ ├── AttrIterator.h │ │ │ │ ├── AttrVisitor.h │ │ │ │ ├── Availability.h │ │ │ │ ├── BaseSubobject.h │ │ │ │ ├── BuiltinTypes.def │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXXInheritance.h │ │ │ │ ├── CXXRecordDeclDefinitionBits.def │ │ │ │ ├── CanonicalType.h │ │ │ │ ├── CharUnits.h │ │ │ │ ├── Comment.h │ │ │ │ ├── CommentBriefParser.h │ │ │ │ ├── CommentCommandTraits.h │ │ │ │ ├── CommentCommands.td │ │ │ │ ├── CommentDiagnostic.h │ │ │ │ ├── CommentHTMLNamedCharacterReferences.td │ │ │ │ ├── CommentHTMLTags.td │ │ │ │ ├── CommentLexer.h │ │ │ │ ├── CommentParser.h │ │ │ │ ├── CommentSema.h │ │ │ │ ├── CommentVisitor.h │ │ │ │ ├── ComparisonCategories.h │ │ │ │ ├── ComputeDependence.h │ │ │ │ ├── CurrentSourceLocExprScope.h │ │ │ │ ├── DataCollection.h │ │ │ │ ├── Decl.h │ │ │ │ ├── DeclAccessPair.h │ │ │ │ ├── DeclBase.h │ │ │ │ ├── DeclCXX.h │ │ │ │ ├── DeclContextInternals.h │ │ │ │ ├── DeclFriend.h │ │ │ │ ├── DeclGroup.h │ │ │ │ ├── DeclLookups.h │ │ │ │ ├── DeclObjC.h │ │ │ │ ├── DeclObjCCommon.h │ │ │ │ ├── DeclOpenMP.h │ │ │ │ ├── DeclTemplate.h │ │ │ │ ├── DeclVisitor.h │ │ │ │ ├── DeclarationName.h │ │ │ │ ├── DependenceFlags.h │ │ │ │ ├── DependentDiagnostic.h │ │ │ │ ├── EvaluatedExprVisitor.h │ │ │ │ ├── Expr.h │ │ │ │ ├── ExprCXX.h │ │ │ │ ├── ExprConcepts.h │ │ │ │ ├── ExprObjC.h │ │ │ │ ├── ExprOpenMP.h │ │ │ │ ├── ExternalASTMerger.h │ │ │ │ ├── ExternalASTSource.h │ │ │ │ ├── FormatString.h │ │ │ │ ├── GlobalDecl.h │ │ │ │ ├── IgnoreExpr.h │ │ │ │ ├── JSONNodeDumper.h │ │ │ │ ├── LambdaCapture.h │ │ │ │ ├── LexicallyOrderedRecursiveASTVisitor.h │ │ │ │ ├── LocInfoType.h │ │ │ │ ├── Mangle.h │ │ │ │ ├── MangleNumberingContext.h │ │ │ │ ├── NSAPI.h │ │ │ │ ├── NestedNameSpecifier.h │ │ │ │ ├── NonTrivialTypeVisitor.h │ │ │ │ ├── ODRDiagsEmitter.h │ │ │ │ ├── ODRHash.h │ │ │ │ ├── OSLog.h │ │ │ │ ├── OpenMPClause.h │ │ │ │ ├── OperationKinds.def │ │ │ │ ├── OperationKinds.h │ │ │ │ ├── OptionalDiagnostic.h │ │ │ │ ├── ParentMap.h │ │ │ │ ├── ParentMapContext.h │ │ │ │ ├── PrettyDeclStackTrace.h │ │ │ │ ├── PrettyPrinter.h │ │ │ │ ├── PropertiesBase.td │ │ │ │ ├── QualTypeNames.h │ │ │ │ ├── Randstruct.h │ │ │ │ ├── RawCommentList.h │ │ │ │ ├── RecordLayout.h │ │ │ │ ├── RecursiveASTVisitor.h │ │ │ │ ├── Redeclarable.h │ │ │ │ ├── SelectorLocationsKind.h │ │ │ │ ├── Stmt.h │ │ │ │ ├── StmtCXX.h │ │ │ │ ├── StmtDataCollectors.td │ │ │ │ ├── StmtGraphTraits.h │ │ │ │ ├── StmtIterator.h │ │ │ │ ├── StmtObjC.h │ │ │ │ ├── StmtOpenMP.h │ │ │ │ ├── StmtVisitor.h │ │ │ │ ├── TemplateArgumentVisitor.h │ │ │ │ ├── TemplateBase.h │ │ │ │ ├── TemplateName.h │ │ │ │ ├── TextNodeDumper.h │ │ │ │ ├── Type.h │ │ │ │ ├── TypeLoc.h │ │ │ │ ├── TypeLocNodes.def │ │ │ │ ├── TypeLocVisitor.h │ │ │ │ ├── TypeOrdering.h │ │ │ │ ├── TypeProperties.td │ │ │ │ ├── TypeVisitor.h │ │ │ │ ├── UnresolvedSet.h │ │ │ │ ├── VTTBuilder.h │ │ │ │ └── VTableBuilder.h │ │ │ ├── ASTMatchers │ │ │ │ ├── ASTMatchFinder.h │ │ │ │ ├── ASTMatchers.h │ │ │ │ ├── ASTMatchersInternal.h │ │ │ │ ├── ASTMatchersMacros.h │ │ │ │ ├── Dynamic │ │ │ │ │ ├── Diagnostics.h │ │ │ │ │ ├── Parser.h │ │ │ │ │ ├── Registry.h │ │ │ │ │ └── VariantValue.h │ │ │ │ └── GtestMatchers.h │ │ │ ├── Analysis │ │ │ │ ├── Analyses │ │ │ │ │ ├── CFGReachabilityAnalysis.h │ │ │ │ │ ├── CalledOnceCheck.h │ │ │ │ │ ├── Consumed.h │ │ │ │ │ ├── Dominators.h │ │ │ │ │ ├── ExprMutationAnalyzer.h │ │ │ │ │ ├── IntervalPartition.h │ │ │ │ │ ├── LiveVariables.h │ │ │ │ │ ├── PostOrderCFGView.h │ │ │ │ │ ├── ReachableCode.h │ │ │ │ │ ├── ThreadSafety.h │ │ │ │ │ ├── ThreadSafetyCommon.h │ │ │ │ │ ├── ThreadSafetyLogical.h │ │ │ │ │ ├── ThreadSafetyOps.def │ │ │ │ │ ├── ThreadSafetyTIL.h │ │ │ │ │ ├── ThreadSafetyTraverse.h │ │ │ │ │ ├── ThreadSafetyUtil.h │ │ │ │ │ ├── UninitializedValues.h │ │ │ │ │ ├── UnsafeBufferUsage.h │ │ │ │ │ └── UnsafeBufferUsageGadgets.def │ │ │ │ ├── AnalysisDeclContext.h │ │ │ │ ├── AnyCall.h │ │ │ │ ├── BodyFarm.h │ │ │ │ ├── CFG.h │ │ │ │ ├── CFGStmtMap.h │ │ │ │ ├── CallGraph.h │ │ │ │ ├── CloneDetection.h │ │ │ │ ├── CodeInjector.h │ │ │ │ ├── ConstructionContext.h │ │ │ │ ├── DomainSpecific │ │ │ │ │ ├── CocoaConventions.h │ │ │ │ │ └── ObjCNoReturn.h │ │ │ │ ├── FlowSensitive │ │ │ │ │ ├── Arena.h │ │ │ │ │ ├── CFGMatchSwitch.h │ │ │ │ │ ├── ControlFlowContext.h │ │ │ │ │ ├── DataflowAnalysis.h │ │ │ │ │ ├── DataflowAnalysisContext.h │ │ │ │ │ ├── DataflowEnvironment.h │ │ │ │ │ ├── DataflowLattice.h │ │ │ │ │ ├── DataflowValues.h │ │ │ │ │ ├── DataflowWorklist.h │ │ │ │ │ ├── DebugSupport.h │ │ │ │ │ ├── Formula.h │ │ │ │ │ ├── Logger.h │ │ │ │ │ ├── MapLattice.h │ │ │ │ │ ├── MatchSwitch.h │ │ │ │ │ ├── Models │ │ │ │ │ │ ├── ChromiumCheckModel.h │ │ │ │ │ │ └── UncheckedOptionalAccessModel.h │ │ │ │ │ ├── NoopAnalysis.h │ │ │ │ │ ├── NoopLattice.h │ │ │ │ │ ├── RecordOps.h │ │ │ │ │ ├── SimplifyConstraints.h │ │ │ │ │ ├── Solver.h │ │ │ │ │ ├── StorageLocation.h │ │ │ │ │ ├── Transfer.h │ │ │ │ │ ├── TypeErasedDataflowAnalysis.h │ │ │ │ │ ├── Value.h │ │ │ │ │ └── WatchedLiteralsSolver.h │ │ │ │ ├── IssueHash.h │ │ │ │ ├── MacroExpansionContext.h │ │ │ │ ├── PathDiagnostic.h │ │ │ │ ├── ProgramPoint.h │ │ │ │ ├── RetainSummaryManager.h │ │ │ │ ├── SelectorExtras.h │ │ │ │ └── Support │ │ │ │ │ └── BumpVector.h │ │ │ ├── Basic │ │ │ │ ├── AArch64SVEACLETypes.def │ │ │ │ ├── ABI.h │ │ │ │ ├── ASTNode.td │ │ │ │ ├── AddressSpaces.h │ │ │ │ ├── AlignedAllocation.h │ │ │ │ ├── AllDiagnostics.h │ │ │ │ ├── Attr.td │ │ │ │ ├── AttrDocs.td │ │ │ │ ├── AttrKinds.h │ │ │ │ ├── AttrSubjectMatchRules.h │ │ │ │ ├── AttributeCommonInfo.h │ │ │ │ ├── Attributes.h │ │ │ │ ├── BitmaskEnum.h │ │ │ │ ├── BuiltinHeaders.def │ │ │ │ ├── Builtins.def │ │ │ │ ├── Builtins.h │ │ │ │ ├── BuiltinsAArch64.def │ │ │ │ ├── BuiltinsAArch64NeonSVEBridge.def │ │ │ │ ├── BuiltinsAArch64NeonSVEBridge_cg.def │ │ │ │ ├── BuiltinsAMDGPU.def │ │ │ │ ├── BuiltinsARM.def │ │ │ │ ├── BuiltinsBPF.def │ │ │ │ ├── BuiltinsHexagon.def │ │ │ │ ├── BuiltinsHexagonDep.def │ │ │ │ ├── BuiltinsHexagonMapCustomDep.def │ │ │ │ ├── BuiltinsLoongArch.def │ │ │ │ ├── BuiltinsLoongArchBase.def │ │ │ │ ├── BuiltinsLoongArchLASX.def │ │ │ │ ├── BuiltinsLoongArchLSX.def │ │ │ │ ├── BuiltinsMips.def │ │ │ │ ├── BuiltinsNEON.def │ │ │ │ ├── BuiltinsNVPTX.def │ │ │ │ ├── BuiltinsPPC.def │ │ │ │ ├── BuiltinsRISCV.def │ │ │ │ ├── BuiltinsRISCVVector.def │ │ │ │ ├── BuiltinsSME.def │ │ │ │ ├── BuiltinsSVE.def │ │ │ │ ├── BuiltinsSystemZ.def │ │ │ │ ├── BuiltinsVE.def │ │ │ │ ├── BuiltinsVEVL.gen.def │ │ │ │ ├── BuiltinsWebAssembly.def │ │ │ │ ├── BuiltinsX86.def │ │ │ │ ├── BuiltinsX86_64.def │ │ │ │ ├── BuiltinsXCore.def │ │ │ │ ├── CLWarnings.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CapturedStmt.h │ │ │ │ ├── CharInfo.h │ │ │ │ ├── CodeGenOptions.def │ │ │ │ ├── CodeGenOptions.h │ │ │ │ ├── CommentNodes.td │ │ │ │ ├── CommentOptions.h │ │ │ │ ├── Cuda.h │ │ │ │ ├── CustomizableOptional.h │ │ │ │ ├── DarwinSDKInfo.h │ │ │ │ ├── DebugOptions.def │ │ │ │ ├── DeclNodes.td │ │ │ │ ├── Diagnostic.h │ │ │ │ ├── Diagnostic.td │ │ │ │ ├── DiagnosticAST.h │ │ │ │ ├── DiagnosticASTKinds.td │ │ │ │ ├── DiagnosticAnalysis.h │ │ │ │ ├── DiagnosticCategories.h │ │ │ │ ├── DiagnosticCategories.td │ │ │ │ ├── DiagnosticComment.h │ │ │ │ ├── DiagnosticCommentKinds.td │ │ │ │ ├── DiagnosticCommonKinds.td │ │ │ │ ├── DiagnosticCrossTU.h │ │ │ │ ├── DiagnosticCrossTUKinds.td │ │ │ │ ├── DiagnosticDocs.td │ │ │ │ ├── DiagnosticDriver.h │ │ │ │ ├── DiagnosticDriverKinds.td │ │ │ │ ├── DiagnosticError.h │ │ │ │ ├── DiagnosticFrontend.h │ │ │ │ ├── DiagnosticFrontendKinds.td │ │ │ │ ├── DiagnosticGroups.td │ │ │ │ ├── DiagnosticIDs.h │ │ │ │ ├── DiagnosticLex.h │ │ │ │ ├── DiagnosticLexKinds.td │ │ │ │ ├── DiagnosticOptions.def │ │ │ │ ├── DiagnosticOptions.h │ │ │ │ ├── DiagnosticParse.h │ │ │ │ ├── DiagnosticParseKinds.td │ │ │ │ ├── DiagnosticRefactoring.h │ │ │ │ ├── DiagnosticRefactoringKinds.td │ │ │ │ ├── DiagnosticSema.h │ │ │ │ ├── DiagnosticSemaKinds.td │ │ │ │ ├── DiagnosticSerialization.h │ │ │ │ ├── DiagnosticSerializationKinds.td │ │ │ │ ├── DirectoryEntry.h │ │ │ │ ├── ExceptionSpecificationType.h │ │ │ │ ├── ExpressionTraits.h │ │ │ │ ├── FPOptions.def │ │ │ │ ├── Features.def │ │ │ │ ├── FileEntry.h │ │ │ │ ├── FileManager.h │ │ │ │ ├── FileSystemOptions.h │ │ │ │ ├── FileSystemStatCache.h │ │ │ │ ├── HLSLRuntime.h │ │ │ │ ├── HeaderInclude.h │ │ │ │ ├── IdentifierTable.h │ │ │ │ ├── JsonSupport.h │ │ │ │ ├── LLVM.h │ │ │ │ ├── Lambda.h │ │ │ │ ├── LangOptions.def │ │ │ │ ├── LangOptions.h │ │ │ │ ├── LangStandard.h │ │ │ │ ├── LangStandards.def │ │ │ │ ├── Linkage.h │ │ │ │ ├── MSP430Target.def │ │ │ │ ├── MacroBuilder.h │ │ │ │ ├── MakeSupport.h │ │ │ │ ├── Module.h │ │ │ │ ├── NoSanitizeList.h │ │ │ │ ├── ObjCRuntime.h │ │ │ │ ├── OpenACCKinds.h │ │ │ │ ├── OpenCLExtensionTypes.def │ │ │ │ ├── OpenCLExtensions.def │ │ │ │ ├── OpenCLImageTypes.def │ │ │ │ ├── OpenCLOptions.h │ │ │ │ ├── OpenMPKinds.def │ │ │ │ ├── OpenMPKinds.h │ │ │ │ ├── OperatorKinds.def │ │ │ │ ├── OperatorKinds.h │ │ │ │ ├── OperatorPrecedence.h │ │ │ │ ├── PPCTypes.def │ │ │ │ ├── ParsedAttrInfo.h │ │ │ │ ├── PartialDiagnostic.h │ │ │ │ ├── PlistSupport.h │ │ │ │ ├── PragmaKinds.h │ │ │ │ ├── PrettyStackTrace.h │ │ │ │ ├── ProfileList.h │ │ │ │ ├── RISCVVTypes.def │ │ │ │ ├── SanitizerSpecialCaseList.h │ │ │ │ ├── Sanitizers.def │ │ │ │ ├── Sanitizers.h │ │ │ │ ├── Sarif.h │ │ │ │ ├── SourceLocation.h │ │ │ │ ├── SourceManager.h │ │ │ │ ├── SourceManagerInternals.h │ │ │ │ ├── SourceMgrAdapter.h │ │ │ │ ├── Specifiers.h │ │ │ │ ├── Stack.h │ │ │ │ ├── StmtNodes.td │ │ │ │ ├── SyncScope.h │ │ │ │ ├── TargetBuiltins.h │ │ │ │ ├── TargetCXXABI.def │ │ │ │ ├── TargetCXXABI.h │ │ │ │ ├── TargetID.h │ │ │ │ ├── TargetInfo.h │ │ │ │ ├── TargetOSMacros.def │ │ │ │ ├── TargetOptions.h │ │ │ │ ├── TemplateKinds.h │ │ │ │ ├── Thunk.h │ │ │ │ ├── TokenKinds.def │ │ │ │ ├── TokenKinds.h │ │ │ │ ├── TransformTypeTraits.def │ │ │ │ ├── TypeNodes.td │ │ │ │ ├── TypeTraits.h │ │ │ │ ├── Version.h │ │ │ │ ├── Version.inc.in │ │ │ │ ├── Visibility.h │ │ │ │ ├── WebAssemblyReferenceTypes.def │ │ │ │ ├── XRayInstr.h │ │ │ │ ├── XRayLists.h │ │ │ │ ├── arm_bf16.td │ │ │ │ ├── arm_cde.td │ │ │ │ ├── arm_fp16.td │ │ │ │ ├── arm_mve.td │ │ │ │ ├── arm_mve_defs.td │ │ │ │ ├── arm_neon.td │ │ │ │ ├── arm_neon_incl.td │ │ │ │ ├── arm_sme.td │ │ │ │ ├── arm_sve.td │ │ │ │ ├── arm_sve_sme_incl.td │ │ │ │ ├── riscv_sifive_vector.td │ │ │ │ ├── riscv_vector.td │ │ │ │ └── riscv_vector_common.td │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeGen │ │ │ │ ├── BackendUtil.h │ │ │ │ ├── CGFunctionInfo.h │ │ │ │ ├── CodeGenABITypes.h │ │ │ │ ├── CodeGenAction.h │ │ │ │ ├── ConstantInitBuilder.h │ │ │ │ ├── ConstantInitFuture.h │ │ │ │ ├── ModuleBuilder.h │ │ │ │ ├── ObjectFilePCHContainerOperations.h │ │ │ │ └── SwiftCallingConv.h │ │ │ ├── Config │ │ │ │ └── config.h.cmake │ │ │ ├── CrossTU │ │ │ │ ├── CrossTUDiagnostic.h │ │ │ │ └── CrossTranslationUnit.h │ │ │ ├── DirectoryWatcher │ │ │ │ └── DirectoryWatcher.h │ │ │ ├── Driver │ │ │ │ ├── Action.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ClangOptionDocs.td │ │ │ │ ├── Compilation.h │ │ │ │ ├── Distro.h │ │ │ │ ├── Driver.h │ │ │ │ ├── DriverDiagnostic.h │ │ │ │ ├── InputInfo.h │ │ │ │ ├── Job.h │ │ │ │ ├── Multilib.h │ │ │ │ ├── MultilibBuilder.h │ │ │ │ ├── OffloadBundler.h │ │ │ │ ├── OptionUtils.h │ │ │ │ ├── Options.h │ │ │ │ ├── Options.td │ │ │ │ ├── Phases.h │ │ │ │ ├── SanitizerArgs.h │ │ │ │ ├── Tool.h │ │ │ │ ├── ToolChain.h │ │ │ │ ├── Types.def │ │ │ │ ├── Types.h │ │ │ │ ├── Util.h │ │ │ │ └── XRayArgs.h │ │ │ ├── Edit │ │ │ │ ├── Commit.h │ │ │ │ ├── EditedSource.h │ │ │ │ ├── EditsReceiver.h │ │ │ │ ├── FileOffset.h │ │ │ │ └── Rewriters.h │ │ │ ├── ExtractAPI │ │ │ │ ├── API.h │ │ │ │ ├── APIIgnoresList.h │ │ │ │ ├── AvailabilityInfo.h │ │ │ │ ├── DeclarationFragments.h │ │ │ │ ├── ExtractAPIActionBase.h │ │ │ │ ├── ExtractAPIVisitor.h │ │ │ │ ├── FrontendActions.h │ │ │ │ ├── Serialization │ │ │ │ │ ├── SerializerBase.h │ │ │ │ │ └── SymbolGraphSerializer.h │ │ │ │ └── TypedefUnderlyingTypeResolver.h │ │ │ ├── Format │ │ │ │ ├── .clang-format │ │ │ │ └── Format.h │ │ │ ├── Frontend │ │ │ │ ├── ASTConsumers.h │ │ │ │ ├── ASTUnit.h │ │ │ │ ├── ChainedDiagnosticConsumer.h │ │ │ │ ├── CommandLineSourceLoc.h │ │ │ │ ├── CompilerInstance.h │ │ │ │ ├── CompilerInvocation.h │ │ │ │ ├── DependencyOutputOptions.h │ │ │ │ ├── DiagnosticRenderer.h │ │ │ │ ├── FrontendAction.h │ │ │ │ ├── FrontendActions.h │ │ │ │ ├── FrontendDiagnostic.h │ │ │ │ ├── FrontendOptions.h │ │ │ │ ├── FrontendPluginRegistry.h │ │ │ │ ├── LayoutOverrideSource.h │ │ │ │ ├── LogDiagnosticPrinter.h │ │ │ │ ├── MigratorOptions.h │ │ │ │ ├── MultiplexConsumer.h │ │ │ │ ├── PCHContainerOperations.h │ │ │ │ ├── PrecompiledPreamble.h │ │ │ │ ├── PreprocessorOutputOptions.h │ │ │ │ ├── SARIFDiagnostic.h │ │ │ │ ├── SARIFDiagnosticPrinter.h │ │ │ │ ├── SerializedDiagnosticPrinter.h │ │ │ │ ├── SerializedDiagnosticReader.h │ │ │ │ ├── SerializedDiagnostics.h │ │ │ │ ├── TextDiagnostic.h │ │ │ │ ├── TextDiagnosticBuffer.h │ │ │ │ ├── TextDiagnosticPrinter.h │ │ │ │ ├── Utils.h │ │ │ │ └── VerifyDiagnosticConsumer.h │ │ │ ├── FrontendTool │ │ │ │ └── Utils.h │ │ │ ├── Index │ │ │ │ ├── CommentToXML.h │ │ │ │ ├── DeclOccurrence.h │ │ │ │ ├── IndexDataConsumer.h │ │ │ │ ├── IndexSymbol.h │ │ │ │ ├── IndexingAction.h │ │ │ │ ├── IndexingOptions.h │ │ │ │ └── USRGeneration.h │ │ │ ├── IndexSerialization │ │ │ │ └── SerializablePathCollection.h │ │ │ ├── Interpreter │ │ │ │ ├── CodeCompletion.h │ │ │ │ ├── Interpreter.h │ │ │ │ ├── PartialTranslationUnit.h │ │ │ │ └── Value.h │ │ │ ├── Lex │ │ │ │ ├── CodeCompletionHandler.h │ │ │ │ ├── DependencyDirectivesScanner.h │ │ │ │ ├── DirectoryLookup.h │ │ │ │ ├── ExternalPreprocessorSource.h │ │ │ │ ├── HeaderMap.h │ │ │ │ ├── HeaderMapTypes.h │ │ │ │ ├── HeaderSearch.h │ │ │ │ ├── HeaderSearchOptions.h │ │ │ │ ├── LexDiagnostic.h │ │ │ │ ├── Lexer.h │ │ │ │ ├── LiteralSupport.h │ │ │ │ ├── MacroArgs.h │ │ │ │ ├── MacroInfo.h │ │ │ │ ├── ModuleLoader.h │ │ │ │ ├── ModuleMap.h │ │ │ │ ├── MultipleIncludeOpt.h │ │ │ │ ├── PPCallbacks.h │ │ │ │ ├── PPConditionalDirectiveRecord.h │ │ │ │ ├── Pragma.h │ │ │ │ ├── PreprocessingRecord.h │ │ │ │ ├── Preprocessor.h │ │ │ │ ├── PreprocessorLexer.h │ │ │ │ ├── PreprocessorOptions.h │ │ │ │ ├── ScratchBuffer.h │ │ │ │ ├── Token.h │ │ │ │ ├── TokenConcatenation.h │ │ │ │ ├── TokenLexer.h │ │ │ │ └── VariadicMacroSupport.h │ │ │ ├── Parse │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LoopHint.h │ │ │ │ ├── ParseAST.h │ │ │ │ ├── ParseDiagnostic.h │ │ │ │ ├── Parser.h │ │ │ │ └── RAIIObjectsForParser.h │ │ │ ├── Rewrite │ │ │ │ ├── Core │ │ │ │ │ ├── DeltaTree.h │ │ │ │ │ ├── HTMLRewrite.h │ │ │ │ │ ├── RewriteBuffer.h │ │ │ │ │ ├── RewriteRope.h │ │ │ │ │ ├── Rewriter.h │ │ │ │ │ └── TokenRewriter.h │ │ │ │ └── Frontend │ │ │ │ │ ├── ASTConsumers.h │ │ │ │ │ ├── FixItRewriter.h │ │ │ │ │ ├── FrontendActions.h │ │ │ │ │ └── Rewriters.h │ │ │ ├── Sema │ │ │ │ ├── AnalysisBasedWarnings.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXXFieldCollector.h │ │ │ │ ├── CleanupInfo.h │ │ │ │ ├── CodeCompleteConsumer.h │ │ │ │ ├── CodeCompleteOptions.h │ │ │ │ ├── DeclSpec.h │ │ │ │ ├── DelayedDiagnostic.h │ │ │ │ ├── Designator.h │ │ │ │ ├── EnterExpressionEvaluationContext.h │ │ │ │ ├── ExternalSemaSource.h │ │ │ │ ├── HLSLExternalSemaSource.h │ │ │ │ ├── IdentifierResolver.h │ │ │ │ ├── Initialization.h │ │ │ │ ├── Lookup.h │ │ │ │ ├── MultiplexExternalSemaSource.h │ │ │ │ ├── ObjCMethodList.h │ │ │ │ ├── Overload.h │ │ │ │ ├── Ownership.h │ │ │ │ ├── ParsedAttr.h │ │ │ │ ├── ParsedTemplate.h │ │ │ │ ├── RISCVIntrinsicManager.h │ │ │ │ ├── Scope.h │ │ │ │ ├── ScopeInfo.h │ │ │ │ ├── Sema.h │ │ │ │ ├── SemaConcept.h │ │ │ │ ├── SemaConsumer.h │ │ │ │ ├── SemaDiagnostic.h │ │ │ │ ├── SemaFixItUtils.h │ │ │ │ ├── SemaInternal.h │ │ │ │ ├── SemaLambda.h │ │ │ │ ├── Template.h │ │ │ │ ├── TemplateDeduction.h │ │ │ │ ├── TemplateInstCallback.h │ │ │ │ ├── TypoCorrection.h │ │ │ │ └── Weak.h │ │ │ ├── Serialization │ │ │ │ ├── ASTBitCodes.h │ │ │ │ ├── ASTDeserializationListener.h │ │ │ │ ├── ASTReader.h │ │ │ │ ├── ASTRecordReader.h │ │ │ │ ├── ASTRecordWriter.h │ │ │ │ ├── ASTWriter.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ContinuousRangeMap.h │ │ │ │ ├── GlobalModuleIndex.h │ │ │ │ ├── InMemoryModuleCache.h │ │ │ │ ├── ModuleFile.h │ │ │ │ ├── ModuleFileExtension.h │ │ │ │ ├── ModuleManager.h │ │ │ │ ├── PCHContainerOperations.h │ │ │ │ ├── SerializationDiagnostic.h │ │ │ │ ├── SourceLocationEncoding.h │ │ │ │ └── TypeBitCodes.def │ │ │ ├── StaticAnalyzer │ │ │ │ ├── Checkers │ │ │ │ │ ├── BuiltinCheckerRegistration.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CheckerBase.td │ │ │ │ │ ├── Checkers.td │ │ │ │ │ ├── MPIFunctionClassifier.h │ │ │ │ │ ├── SValExplainer.h │ │ │ │ │ └── Taint.h │ │ │ │ ├── Core │ │ │ │ │ ├── Analyses.def │ │ │ │ │ ├── AnalyzerOptions.def │ │ │ │ │ ├── AnalyzerOptions.h │ │ │ │ │ ├── BugReporter │ │ │ │ │ │ ├── BugReporter.h │ │ │ │ │ │ ├── BugReporterVisitors.h │ │ │ │ │ │ ├── BugSuppression.h │ │ │ │ │ │ ├── BugType.h │ │ │ │ │ │ └── CommonBugCategories.h │ │ │ │ │ ├── Checker.h │ │ │ │ │ ├── CheckerManager.h │ │ │ │ │ ├── CheckerRegistryData.h │ │ │ │ │ ├── PathDiagnosticConsumers.h │ │ │ │ │ └── PathSensitive │ │ │ │ │ │ ├── APSIntType.h │ │ │ │ │ │ ├── AnalysisManager.h │ │ │ │ │ │ ├── BasicValueFactory.h │ │ │ │ │ │ ├── BlockCounter.h │ │ │ │ │ │ ├── CallDescription.h │ │ │ │ │ │ ├── CallEvent.h │ │ │ │ │ │ ├── CheckerContext.h │ │ │ │ │ │ ├── CheckerHelpers.h │ │ │ │ │ │ ├── ConstraintManager.h │ │ │ │ │ │ ├── CoreEngine.h │ │ │ │ │ │ ├── DynamicCastInfo.h │ │ │ │ │ │ ├── DynamicExtent.h │ │ │ │ │ │ ├── DynamicType.h │ │ │ │ │ │ ├── DynamicTypeInfo.h │ │ │ │ │ │ ├── Environment.h │ │ │ │ │ │ ├── ExplodedGraph.h │ │ │ │ │ │ ├── ExprEngine.h │ │ │ │ │ │ ├── FunctionSummary.h │ │ │ │ │ │ ├── LoopUnrolling.h │ │ │ │ │ │ ├── LoopWidening.h │ │ │ │ │ │ ├── MemRegion.h │ │ │ │ │ │ ├── ProgramState.h │ │ │ │ │ │ ├── ProgramStateTrait.h │ │ │ │ │ │ ├── ProgramState_Fwd.h │ │ │ │ │ │ ├── RangedConstraintManager.h │ │ │ │ │ │ ├── Regions.def │ │ │ │ │ │ ├── SMTConstraintManager.h │ │ │ │ │ │ ├── SMTConv.h │ │ │ │ │ │ ├── SValBuilder.h │ │ │ │ │ │ ├── SValVisitor.h │ │ │ │ │ │ ├── SVals.def │ │ │ │ │ │ ├── SVals.h │ │ │ │ │ │ ├── SimpleConstraintManager.h │ │ │ │ │ │ ├── Store.h │ │ │ │ │ │ ├── StoreRef.h │ │ │ │ │ │ ├── SummaryManager.h │ │ │ │ │ │ ├── SymExpr.h │ │ │ │ │ │ ├── SymbolManager.h │ │ │ │ │ │ ├── Symbols.def │ │ │ │ │ │ └── WorkList.h │ │ │ │ └── Frontend │ │ │ │ │ ├── AnalysisConsumer.h │ │ │ │ │ ├── AnalyzerHelpFlags.h │ │ │ │ │ ├── CheckerRegistry.h │ │ │ │ │ ├── FrontendActions.h │ │ │ │ │ └── ModelConsumer.h │ │ │ ├── Support │ │ │ │ └── RISCVVIntrinsicUtils.h │ │ │ ├── Testing │ │ │ │ ├── CommandLineArgs.h │ │ │ │ ├── TestAST.h │ │ │ │ └── TestClangConfig.h │ │ │ └── Tooling │ │ │ │ ├── ASTDiff │ │ │ │ ├── ASTDiff.h │ │ │ │ └── ASTDiffInternal.h │ │ │ │ ├── AllTUsExecution.h │ │ │ │ ├── ArgumentsAdjusters.h │ │ │ │ ├── CommonOptionsParser.h │ │ │ │ ├── CompilationDatabase.h │ │ │ │ ├── CompilationDatabasePluginRegistry.h │ │ │ │ ├── Core │ │ │ │ ├── Diagnostic.h │ │ │ │ └── Replacement.h │ │ │ │ ├── DependencyScanning │ │ │ │ ├── DependencyScanningFilesystem.h │ │ │ │ ├── DependencyScanningService.h │ │ │ │ ├── DependencyScanningTool.h │ │ │ │ ├── DependencyScanningWorker.h │ │ │ │ └── ModuleDepCollector.h │ │ │ │ ├── DiagnosticsYaml.h │ │ │ │ ├── Execution.h │ │ │ │ ├── FileMatchTrie.h │ │ │ │ ├── FixIt.h │ │ │ │ ├── Inclusions │ │ │ │ ├── HeaderAnalysis.h │ │ │ │ ├── HeaderIncludes.h │ │ │ │ ├── IncludeStyle.h │ │ │ │ └── StandardLibrary.h │ │ │ │ ├── JSONCompilationDatabase.h │ │ │ │ ├── NodeIntrospection.h │ │ │ │ ├── Refactoring.h │ │ │ │ ├── Refactoring │ │ │ │ ├── ASTSelection.h │ │ │ │ ├── AtomicChange.h │ │ │ │ ├── Extract │ │ │ │ │ ├── Extract.h │ │ │ │ │ └── SourceExtraction.h │ │ │ │ ├── Lookup.h │ │ │ │ ├── RecursiveSymbolVisitor.h │ │ │ │ ├── RefactoringAction.h │ │ │ │ ├── RefactoringActionRule.h │ │ │ │ ├── RefactoringActionRuleRequirements.h │ │ │ │ ├── RefactoringActionRules.h │ │ │ │ ├── RefactoringActionRulesInternal.h │ │ │ │ ├── RefactoringDiagnostic.h │ │ │ │ ├── RefactoringOption.h │ │ │ │ ├── RefactoringOptionVisitor.h │ │ │ │ ├── RefactoringOptions.h │ │ │ │ ├── RefactoringResultConsumer.h │ │ │ │ ├── RefactoringRuleContext.h │ │ │ │ └── Rename │ │ │ │ │ ├── RenamingAction.h │ │ │ │ │ ├── SymbolName.h │ │ │ │ │ ├── SymbolOccurrences.h │ │ │ │ │ ├── USRFinder.h │ │ │ │ │ ├── USRFindingAction.h │ │ │ │ │ └── USRLocFinder.h │ │ │ │ ├── RefactoringCallbacks.h │ │ │ │ ├── ReplacementsYaml.h │ │ │ │ ├── StandaloneExecution.h │ │ │ │ ├── Syntax │ │ │ │ ├── BuildTree.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Mutations.h │ │ │ │ ├── Nodes.h │ │ │ │ ├── Nodes.td │ │ │ │ ├── Syntax.td │ │ │ │ ├── TokenBufferTokenManager.h │ │ │ │ ├── TokenManager.h │ │ │ │ ├── Tokens.h │ │ │ │ └── Tree.h │ │ │ │ ├── ToolExecutorPluginRegistry.h │ │ │ │ ├── Tooling.h │ │ │ │ └── Transformer │ │ │ │ ├── MatchConsumer.h │ │ │ │ ├── Parsing.h │ │ │ │ ├── RangeSelector.h │ │ │ │ ├── RewriteRule.h │ │ │ │ ├── SourceCode.h │ │ │ │ ├── SourceCodeBuilders.h │ │ │ │ ├── Stencil.h │ │ │ │ └── Transformer.h │ │ ├── cling-demo.h │ │ ├── cling │ │ │ ├── Interpreter │ │ │ │ ├── AutoloadCallback.h │ │ │ │ ├── CIFactory.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CValuePrinter.h │ │ │ │ ├── ClangInternalState.h │ │ │ │ ├── ClingCodeCompleteConsumer.h │ │ │ │ ├── ClingOptions.h │ │ │ │ ├── ClingOptions.td │ │ │ │ ├── CompilationOptions.h │ │ │ │ ├── DynamicExprInfo.h │ │ │ │ ├── DynamicLibraryManager.h │ │ │ │ ├── DynamicLookupLifetimeHandler.h │ │ │ │ ├── DynamicLookupRuntimeUniverse.h │ │ │ │ ├── Exception.h │ │ │ │ ├── IncrementalCUDADeviceCompiler.h │ │ │ │ ├── Interpreter.h │ │ │ │ ├── InterpreterCallbacks.h │ │ │ │ ├── InvocationOptions.h │ │ │ │ ├── LookupHelper.h │ │ │ │ ├── RuntimeOptions.h │ │ │ │ ├── RuntimePrintValue.h │ │ │ │ ├── RuntimeUniverse.h │ │ │ │ ├── Transaction.h │ │ │ │ ├── Value.h │ │ │ │ └── Visibility.h │ │ │ ├── MetaProcessor │ │ │ │ ├── Display.h │ │ │ │ ├── InputValidator.h │ │ │ │ ├── MetaLexer.h │ │ │ │ ├── MetaParser.h │ │ │ │ ├── MetaProcessor.h │ │ │ │ └── MetaSema.h │ │ │ ├── UserInterface │ │ │ │ └── UserInterface.h │ │ │ ├── Utils │ │ │ │ ├── AST.h │ │ │ │ ├── Casting.h │ │ │ │ ├── Diagnostics.h │ │ │ │ ├── OrderedMap.h │ │ │ │ ├── Output.h │ │ │ │ ├── ParserStateRAII.h │ │ │ │ ├── Paths.h │ │ │ │ ├── Platform.h │ │ │ │ ├── SourceNormalization.h │ │ │ │ ├── UTF8.h │ │ │ │ ├── Utils.h │ │ │ │ └── Validation.h │ │ │ ├── boost.modulemap │ │ │ ├── cint │ │ │ │ ├── multimap │ │ │ │ └── multiset │ │ │ ├── cuda.modulemap │ │ │ ├── libc.modulemap │ │ │ ├── libc_msvc.modulemap │ │ │ ├── module.modulemap │ │ │ ├── module.modulemap.build │ │ │ ├── services_msvc.modulemap │ │ │ ├── std.modulemap │ │ │ ├── std_darwin.MacOSX14.2.sdk.modulemap │ │ │ ├── std_darwin.modulemap │ │ │ ├── std_msvc.modulemap │ │ │ ├── tinyxml2.modulemap │ │ │ ├── vc.modulemap │ │ │ └── vcruntime.modulemap │ │ ├── llvm-c │ │ │ ├── Analysis.h │ │ │ ├── BitReader.h │ │ │ ├── BitWriter.h │ │ │ ├── Comdat.h │ │ │ ├── Core.h │ │ │ ├── DataTypes.h │ │ │ ├── DebugInfo.h │ │ │ ├── Deprecated.h │ │ │ ├── Disassembler.h │ │ │ ├── DisassemblerTypes.h │ │ │ ├── Error.h │ │ │ ├── ErrorHandling.h │ │ │ ├── ExecutionEngine.h │ │ │ ├── ExternC.h │ │ │ ├── IRReader.h │ │ │ ├── LLJIT.h │ │ │ ├── LLJITUtils.h │ │ │ ├── Linker.h │ │ │ ├── Object.h │ │ │ ├── Orc.h │ │ │ ├── OrcEE.h │ │ │ ├── Remarks.h │ │ │ ├── Support.h │ │ │ ├── Target.h │ │ │ ├── TargetMachine.h │ │ │ ├── Transforms │ │ │ │ └── PassBuilder.h │ │ │ ├── Types.h │ │ │ ├── blake3.h │ │ │ └── lto.h │ │ └── llvm │ │ │ ├── ADT │ │ │ ├── ADL.h │ │ │ ├── APFixedPoint.h │ │ │ ├── APFloat.h │ │ │ ├── APInt.h │ │ │ ├── APSInt.h │ │ │ ├── AddressRanges.h │ │ │ ├── AllocatorList.h │ │ │ ├── Any.h │ │ │ ├── ArrayRef.h │ │ │ ├── BitVector.h │ │ │ ├── Bitfields.h │ │ │ ├── BitmaskEnum.h │ │ │ ├── Bitset.h │ │ │ ├── BreadthFirstIterator.h │ │ │ ├── CachedHashString.h │ │ │ ├── CoalescingBitVector.h │ │ │ ├── CombinationGenerator.h │ │ │ ├── ConcurrentHashtable.h │ │ │ ├── DAGDeltaAlgorithm.h │ │ │ ├── DeltaAlgorithm.h │ │ │ ├── DenseMap.h │ │ │ ├── DenseMapInfo.h │ │ │ ├── DenseMapInfoVariant.h │ │ │ ├── DenseSet.h │ │ │ ├── DepthFirstIterator.h │ │ │ ├── DirectedGraph.h │ │ │ ├── EnumeratedArray.h │ │ │ ├── EpochTracker.h │ │ │ ├── EquivalenceClasses.h │ │ │ ├── FloatingPointMode.h │ │ │ ├── FoldingSet.h │ │ │ ├── FunctionExtras.h │ │ │ ├── GenericConvergenceVerifier.h │ │ │ ├── GenericCycleImpl.h │ │ │ ├── GenericCycleInfo.h │ │ │ ├── GenericSSAContext.h │ │ │ ├── GenericUniformityImpl.h │ │ │ ├── GenericUniformityInfo.h │ │ │ ├── GraphTraits.h │ │ │ ├── Hashing.h │ │ │ ├── ImmutableList.h │ │ │ ├── ImmutableMap.h │ │ │ ├── ImmutableSet.h │ │ │ ├── IndexedMap.h │ │ │ ├── IntEqClasses.h │ │ │ ├── IntervalMap.h │ │ │ ├── IntervalTree.h │ │ │ ├── IntrusiveRefCntPtr.h │ │ │ ├── LazyAtomicPointer.h │ │ │ ├── MapVector.h │ │ │ ├── PackedVector.h │ │ │ ├── PagedVector.h │ │ │ ├── PointerEmbeddedInt.h │ │ │ ├── PointerIntPair.h │ │ │ ├── PointerSumType.h │ │ │ ├── PointerUnion.h │ │ │ ├── PostOrderIterator.h │ │ │ ├── PriorityQueue.h │ │ │ ├── PriorityWorklist.h │ │ │ ├── SCCIterator.h │ │ │ ├── STLExtras.h │ │ │ ├── STLForwardCompat.h │ │ │ ├── STLFunctionalExtras.h │ │ │ ├── ScopeExit.h │ │ │ ├── ScopedHashTable.h │ │ │ ├── Sequence.h │ │ │ ├── SetOperations.h │ │ │ ├── SetVector.h │ │ │ ├── SmallBitVector.h │ │ │ ├── SmallPtrSet.h │ │ │ ├── SmallSet.h │ │ │ ├── SmallString.h │ │ │ ├── SmallVector.h │ │ │ ├── SmallVectorExtras.h │ │ │ ├── SparseBitVector.h │ │ │ ├── SparseMultiSet.h │ │ │ ├── SparseSet.h │ │ │ ├── StableHashing.h │ │ │ ├── Statistic.h │ │ │ ├── StringExtras.h │ │ │ ├── StringMap.h │ │ │ ├── StringMapEntry.h │ │ │ ├── StringRef.h │ │ │ ├── StringSet.h │ │ │ ├── StringSwitch.h │ │ │ ├── TinyPtrVector.h │ │ │ ├── Twine.h │ │ │ ├── TypeSwitch.h │ │ │ ├── Uniformity.h │ │ │ ├── UniqueVector.h │ │ │ ├── bit.h │ │ │ ├── edit_distance.h │ │ │ ├── fallible_iterator.h │ │ │ ├── identity.h │ │ │ ├── ilist.h │ │ │ ├── ilist_base.h │ │ │ ├── ilist_iterator.h │ │ │ ├── ilist_node.h │ │ │ ├── ilist_node_base.h │ │ │ ├── ilist_node_options.h │ │ │ ├── iterator.h │ │ │ ├── iterator_range.h │ │ │ └── simple_ilist.h │ │ │ ├── Analysis │ │ │ ├── AliasAnalysis.h │ │ │ ├── AliasAnalysisEvaluator.h │ │ │ ├── AliasSetTracker.h │ │ │ ├── AssumeBundleQueries.h │ │ │ ├── AssumptionCache.h │ │ │ ├── BasicAliasAnalysis.h │ │ │ ├── BlockFrequencyInfo.h │ │ │ ├── BlockFrequencyInfoImpl.h │ │ │ ├── BranchProbabilityInfo.h │ │ │ ├── CFG.h │ │ │ ├── CFGPrinter.h │ │ │ ├── CFGSCCPrinter.h │ │ │ ├── CGSCCPassManager.h │ │ │ ├── CallGraph.h │ │ │ ├── CallGraphSCCPass.h │ │ │ ├── CallPrinter.h │ │ │ ├── CaptureTracking.h │ │ │ ├── CmpInstAnalysis.h │ │ │ ├── CodeMetrics.h │ │ │ ├── ConstantFolding.h │ │ │ ├── ConstraintSystem.h │ │ │ ├── CostModel.h │ │ │ ├── CycleAnalysis.h │ │ │ ├── DDG.h │ │ │ ├── DDGPrinter.h │ │ │ ├── DOTGraphTraitsPass.h │ │ │ ├── Delinearization.h │ │ │ ├── DemandedBits.h │ │ │ ├── DependenceAnalysis.h │ │ │ ├── DependenceGraphBuilder.h │ │ │ ├── DomConditionCache.h │ │ │ ├── DomPrinter.h │ │ │ ├── DomTreeUpdater.h │ │ │ ├── DominanceFrontier.h │ │ │ ├── DominanceFrontierImpl.h │ │ │ ├── EHUtils.h │ │ │ ├── FunctionPropertiesAnalysis.h │ │ │ ├── GlobalsModRef.h │ │ │ ├── GuardUtils.h │ │ │ ├── HeatUtils.h │ │ │ ├── IRSimilarityIdentifier.h │ │ │ ├── IVDescriptors.h │ │ │ ├── IVUsers.h │ │ │ ├── IndirectCallPromotionAnalysis.h │ │ │ ├── IndirectCallVisitor.h │ │ │ ├── InlineAdvisor.h │ │ │ ├── InlineCost.h │ │ │ ├── InlineModelFeatureMaps.h │ │ │ ├── InlineOrder.h │ │ │ ├── InlineSizeEstimatorAnalysis.h │ │ │ ├── InstCount.h │ │ │ ├── InstSimplifyFolder.h │ │ │ ├── InstructionPrecedenceTracking.h │ │ │ ├── InstructionSimplify.h │ │ │ ├── InteractiveModelRunner.h │ │ │ ├── Interval.h │ │ │ ├── IntervalIterator.h │ │ │ ├── IntervalPartition.h │ │ │ ├── IteratedDominanceFrontier.h │ │ │ ├── LazyBlockFrequencyInfo.h │ │ │ ├── LazyBranchProbabilityInfo.h │ │ │ ├── LazyCallGraph.h │ │ │ ├── LazyValueInfo.h │ │ │ ├── Lint.h │ │ │ ├── Loads.h │ │ │ ├── LoopAccessAnalysis.h │ │ │ ├── LoopAnalysisManager.h │ │ │ ├── LoopCacheAnalysis.h │ │ │ ├── LoopInfo.h │ │ │ ├── LoopIterator.h │ │ │ ├── LoopNestAnalysis.h │ │ │ ├── LoopPass.h │ │ │ ├── LoopUnrollAnalyzer.h │ │ │ ├── MLInlineAdvisor.h │ │ │ ├── MLModelRunner.h │ │ │ ├── MemDerefPrinter.h │ │ │ ├── MemoryBuiltins.h │ │ │ ├── MemoryDependenceAnalysis.h │ │ │ ├── MemoryLocation.h │ │ │ ├── MemoryProfileInfo.h │ │ │ ├── MemorySSA.h │ │ │ ├── MemorySSAUpdater.h │ │ │ ├── ModelUnderTrainingRunner.h │ │ │ ├── ModuleDebugInfoPrinter.h │ │ │ ├── ModuleSummaryAnalysis.h │ │ │ ├── MustExecute.h │ │ │ ├── NoInferenceModelRunner.h │ │ │ ├── ObjCARCAliasAnalysis.h │ │ │ ├── ObjCARCAnalysisUtils.h │ │ │ ├── ObjCARCInstKind.h │ │ │ ├── ObjCARCUtil.h │ │ │ ├── OptimizationRemarkEmitter.h │ │ │ ├── OverflowInstAnalysis.h │ │ │ ├── PHITransAddr.h │ │ │ ├── Passes.h │ │ │ ├── PhiValues.h │ │ │ ├── PostDominators.h │ │ │ ├── ProfileSummaryInfo.h │ │ │ ├── PtrUseVisitor.h │ │ │ ├── RegionInfo.h │ │ │ ├── RegionInfoImpl.h │ │ │ ├── RegionIterator.h │ │ │ ├── RegionPass.h │ │ │ ├── RegionPrinter.h │ │ │ ├── ReleaseModeModelRunner.h │ │ │ ├── ReplayInlineAdvisor.h │ │ │ ├── ScalarEvolution.h │ │ │ ├── ScalarEvolutionAliasAnalysis.h │ │ │ ├── ScalarEvolutionDivision.h │ │ │ ├── ScalarEvolutionExpressions.h │ │ │ ├── ScalarEvolutionNormalization.h │ │ │ ├── ScalarFuncs.def │ │ │ ├── ScopedNoAliasAA.h │ │ │ ├── SimplifyQuery.h │ │ │ ├── SparsePropagation.h │ │ │ ├── StackLifetime.h │ │ │ ├── StackSafetyAnalysis.h │ │ │ ├── StructuralHash.h │ │ │ ├── SyntheticCountsUtils.h │ │ │ ├── TargetFolder.h │ │ │ ├── TargetLibraryInfo.def │ │ │ ├── TargetLibraryInfo.h │ │ │ ├── TargetTransformInfo.h │ │ │ ├── TargetTransformInfoImpl.h │ │ │ ├── TensorSpec.h │ │ │ ├── Trace.h │ │ │ ├── TypeBasedAliasAnalysis.h │ │ │ ├── TypeMetadataUtils.h │ │ │ ├── UniformityAnalysis.h │ │ │ ├── Utils │ │ │ │ ├── ImportedFunctionsInliningStatistics.h │ │ │ │ ├── Local.h │ │ │ │ ├── TFUtils.h │ │ │ │ └── TrainingLogger.h │ │ │ ├── ValueLattice.h │ │ │ ├── ValueLatticeUtils.h │ │ │ ├── ValueTracking.h │ │ │ ├── VecFuncs.def │ │ │ ├── VectorUtils.h │ │ │ └── WithCache.h │ │ │ ├── AsmParser │ │ │ ├── LLLexer.h │ │ │ ├── LLParser.h │ │ │ ├── LLToken.h │ │ │ ├── Parser.h │ │ │ └── SlotMapping.h │ │ │ ├── BinaryFormat │ │ │ ├── AMDGPUMetadataVerifier.h │ │ │ ├── COFF.h │ │ │ ├── DXContainer.h │ │ │ ├── DXContainerConstants.def │ │ │ ├── Dwarf.def │ │ │ ├── Dwarf.h │ │ │ ├── DynamicTags.def │ │ │ ├── ELF.h │ │ │ ├── ELFRelocs │ │ │ │ ├── AArch64.def │ │ │ │ ├── AMDGPU.def │ │ │ │ ├── ARC.def │ │ │ │ ├── ARM.def │ │ │ │ ├── AVR.def │ │ │ │ ├── BPF.def │ │ │ │ ├── CSKY.def │ │ │ │ ├── Hexagon.def │ │ │ │ ├── Lanai.def │ │ │ │ ├── LoongArch.def │ │ │ │ ├── M68k.def │ │ │ │ ├── MSP430.def │ │ │ │ ├── Mips.def │ │ │ │ ├── PowerPC.def │ │ │ │ ├── PowerPC64.def │ │ │ │ ├── RISCV.def │ │ │ │ ├── Sparc.def │ │ │ │ ├── SystemZ.def │ │ │ │ ├── VE.def │ │ │ │ ├── Xtensa.def │ │ │ │ ├── i386.def │ │ │ │ └── x86_64.def │ │ │ ├── GOFF.h │ │ │ ├── MachO.def │ │ │ ├── MachO.h │ │ │ ├── Magic.h │ │ │ ├── Minidump.h │ │ │ ├── MinidumpConstants.def │ │ │ ├── MsgPack.def │ │ │ ├── MsgPack.h │ │ │ ├── MsgPackDocument.h │ │ │ ├── MsgPackReader.h │ │ │ ├── MsgPackWriter.h │ │ │ ├── Swift.def │ │ │ ├── Swift.h │ │ │ ├── Wasm.h │ │ │ ├── WasmRelocs.def │ │ │ ├── WasmTraits.h │ │ │ └── XCOFF.h │ │ │ ├── Bitcode │ │ │ ├── BitcodeAnalyzer.h │ │ │ ├── BitcodeCommon.h │ │ │ ├── BitcodeConvenience.h │ │ │ ├── BitcodeReader.h │ │ │ ├── BitcodeWriter.h │ │ │ ├── BitcodeWriterPass.h │ │ │ └── LLVMBitCodes.h │ │ │ ├── Bitstream │ │ │ ├── BitCodeEnums.h │ │ │ ├── BitCodes.h │ │ │ ├── BitstreamReader.h │ │ │ └── BitstreamWriter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeGen │ │ │ ├── AccelTable.h │ │ │ ├── Analysis.h │ │ │ ├── AntiDepBreaker.h │ │ │ ├── AsmPrinter.h │ │ │ ├── AsmPrinterHandler.h │ │ │ ├── AssignmentTrackingAnalysis.h │ │ │ ├── AtomicExpandUtils.h │ │ │ ├── BasicBlockSectionUtils.h │ │ │ ├── BasicBlockSectionsProfileReader.h │ │ │ ├── BasicTTIImpl.h │ │ │ ├── ByteProvider.h │ │ │ ├── CFIFixup.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CSEConfigBase.h │ │ │ ├── CalcSpillWeights.h │ │ │ ├── CallBrPrepare.h │ │ │ ├── CallingConvLower.h │ │ │ ├── CodeGenCommonISel.h │ │ │ ├── CodeGenPassBuilder.h │ │ │ ├── CodeGenPrepare.h │ │ │ ├── CommandFlags.h │ │ │ ├── ComplexDeinterleavingPass.h │ │ │ ├── CostTable.h │ │ │ ├── DAGCombine.h │ │ │ ├── DFAPacketizer.h │ │ │ ├── DIE.h │ │ │ ├── DIEValue.def │ │ │ ├── DbgEntityHistoryCalculator.h │ │ │ ├── DebugHandlerBase.h │ │ │ ├── DetectDeadLanes.h │ │ │ ├── DwarfEHPrepare.h │ │ │ ├── DwarfStringPoolEntry.h │ │ │ ├── EdgeBundles.h │ │ │ ├── ExecutionDomainFix.h │ │ │ ├── ExpandLargeDivRem.h │ │ │ ├── ExpandLargeFpConvert.h │ │ │ ├── ExpandMemCmp.h │ │ │ ├── ExpandReductions.h │ │ │ ├── ExpandVectorPredication.h │ │ │ ├── FastISel.h │ │ │ ├── FaultMaps.h │ │ │ ├── FunctionLoweringInfo.h │ │ │ ├── GCMetadata.h │ │ │ ├── GCMetadataPrinter.h │ │ │ ├── GlobalISel │ │ │ │ ├── CSEInfo.h │ │ │ │ ├── CSEMIRBuilder.h │ │ │ │ ├── CallLowering.h │ │ │ │ ├── Combiner.h │ │ │ │ ├── CombinerHelper.h │ │ │ │ ├── CombinerInfo.h │ │ │ │ ├── GIMatchTableExecutor.h │ │ │ │ ├── GIMatchTableExecutorImpl.h │ │ │ │ ├── GISelChangeObserver.h │ │ │ │ ├── GISelKnownBits.h │ │ │ │ ├── GISelWorkList.h │ │ │ │ ├── GenericMachineInstrs.h │ │ │ │ ├── IRTranslator.h │ │ │ │ ├── InlineAsmLowering.h │ │ │ │ ├── InstructionSelect.h │ │ │ │ ├── InstructionSelector.h │ │ │ │ ├── LegacyLegalizerInfo.h │ │ │ │ ├── LegalizationArtifactCombiner.h │ │ │ │ ├── Legalizer.h │ │ │ │ ├── LegalizerHelper.h │ │ │ │ ├── LegalizerInfo.h │ │ │ │ ├── LoadStoreOpt.h │ │ │ │ ├── Localizer.h │ │ │ │ ├── LostDebugLocObserver.h │ │ │ │ ├── MIPatternMatch.h │ │ │ │ ├── MachineIRBuilder.h │ │ │ │ ├── RegBankSelect.h │ │ │ │ └── Utils.h │ │ │ ├── GlobalMerge.h │ │ │ ├── HardwareLoops.h │ │ │ ├── ISDOpcodes.h │ │ │ ├── IndirectBrExpand.h │ │ │ ├── IndirectThunks.h │ │ │ ├── InterleavedAccess.h │ │ │ ├── InterleavedLoadCombine.h │ │ │ ├── IntrinsicLowering.h │ │ │ ├── JMCInstrumenter.h │ │ │ ├── LatencyPriorityQueue.h │ │ │ ├── LazyMachineBlockFrequencyInfo.h │ │ │ ├── LexicalScopes.h │ │ │ ├── LinkAllAsmWriterComponents.h │ │ │ ├── LinkAllCodegenComponents.h │ │ │ ├── LiveInterval.h │ │ │ ├── LiveIntervalCalc.h │ │ │ ├── LiveIntervalUnion.h │ │ │ ├── LiveIntervals.h │ │ │ ├── LivePhysRegs.h │ │ │ ├── LiveRangeCalc.h │ │ │ ├── LiveRangeEdit.h │ │ │ ├── LiveRegMatrix.h │ │ │ ├── LiveRegUnits.h │ │ │ ├── LiveStacks.h │ │ │ ├── LiveVariables.h │ │ │ ├── LoopTraversal.h │ │ │ ├── LowLevelType.h │ │ │ ├── LowLevelTypeUtils.h │ │ │ ├── LowerEmuTLS.h │ │ │ ├── MBFIWrapper.h │ │ │ ├── MIRFSDiscriminator.h │ │ │ ├── MIRFormatter.h │ │ │ ├── MIRParser │ │ │ │ ├── MIParser.h │ │ │ │ └── MIRParser.h │ │ │ ├── MIRPrinter.h │ │ │ ├── MIRSampleProfile.h │ │ │ ├── MIRYamlMapping.h │ │ │ ├── MachORelocation.h │ │ │ ├── MachineBasicBlock.h │ │ │ ├── MachineBlockFrequencyInfo.h │ │ │ ├── MachineBranchProbabilityInfo.h │ │ │ ├── MachineCFGPrinter.h │ │ │ ├── MachineCombinerPattern.h │ │ │ ├── MachineConstantPool.h │ │ │ ├── MachineCycleAnalysis.h │ │ │ ├── MachineDominanceFrontier.h │ │ │ ├── MachineDominators.h │ │ │ ├── MachineFrameInfo.h │ │ │ ├── MachineFunction.h │ │ │ ├── MachineFunctionPass.h │ │ │ ├── MachineInstr.h │ │ │ ├── MachineInstrBuilder.h │ │ │ ├── MachineInstrBundle.h │ │ │ ├── MachineInstrBundleIterator.h │ │ │ ├── MachineJumpTableInfo.h │ │ │ ├── MachineLoopInfo.h │ │ │ ├── MachineLoopUtils.h │ │ │ ├── MachineMemOperand.h │ │ │ ├── MachineModuleInfo.h │ │ │ ├── MachineModuleInfoImpls.h │ │ │ ├── MachineModuleSlotTracker.h │ │ │ ├── MachineOperand.h │ │ │ ├── MachineOptimizationRemarkEmitter.h │ │ │ ├── MachineOutliner.h │ │ │ ├── MachinePassManager.h │ │ │ ├── MachinePassRegistry.def │ │ │ ├── MachinePassRegistry.h │ │ │ ├── MachinePipeliner.h │ │ │ ├── MachinePostDominators.h │ │ │ ├── MachineRegionInfo.h │ │ │ ├── MachineRegisterInfo.h │ │ │ ├── MachineSSAContext.h │ │ │ ├── MachineSSAUpdater.h │ │ │ ├── MachineScheduler.h │ │ │ ├── MachineSizeOpts.h │ │ │ ├── MachineStableHash.h │ │ │ ├── MachineTraceMetrics.h │ │ │ ├── MachineUniformityAnalysis.h │ │ │ ├── MachineValueType.h │ │ │ ├── MacroFusion.h │ │ │ ├── ModuloSchedule.h │ │ │ ├── MultiHazardRecognizer.h │ │ │ ├── NonRelocatableStringpool.h │ │ │ ├── PBQP │ │ │ │ ├── CostAllocator.h │ │ │ │ ├── Graph.h │ │ │ │ ├── Math.h │ │ │ │ ├── ReductionRules.h │ │ │ │ └── Solution.h │ │ │ ├── PBQPRAConstraint.h │ │ │ ├── ParallelCG.h │ │ │ ├── Passes.h │ │ │ ├── PreISelIntrinsicLowering.h │ │ │ ├── PseudoSourceValue.h │ │ │ ├── PseudoSourceValueManager.h │ │ │ ├── RDFGraph.h │ │ │ ├── RDFLiveness.h │ │ │ ├── RDFRegisters.h │ │ │ ├── ReachingDefAnalysis.h │ │ │ ├── RegAllocCommon.h │ │ │ ├── RegAllocPBQP.h │ │ │ ├── RegAllocRegistry.h │ │ │ ├── Register.h │ │ │ ├── RegisterBank.h │ │ │ ├── RegisterBankInfo.h │ │ │ ├── RegisterClassInfo.h │ │ │ ├── RegisterPressure.h │ │ │ ├── RegisterScavenging.h │ │ │ ├── RegisterUsageInfo.h │ │ │ ├── ReplaceWithVeclib.h │ │ │ ├── ResourcePriorityQueue.h │ │ │ ├── RuntimeLibcalls.h │ │ │ ├── SDNodeProperties.td │ │ │ ├── SafeStack.h │ │ │ ├── ScheduleDAG.h │ │ │ ├── ScheduleDAGInstrs.h │ │ │ ├── ScheduleDAGMutation.h │ │ │ ├── ScheduleDFS.h │ │ │ ├── ScheduleHazardRecognizer.h │ │ │ ├── SchedulerRegistry.h │ │ │ ├── ScoreboardHazardRecognizer.h │ │ │ ├── SelectOptimize.h │ │ │ ├── SelectionDAG.h │ │ │ ├── SelectionDAGAddressAnalysis.h │ │ │ ├── SelectionDAGISel.h │ │ │ ├── SelectionDAGNodes.h │ │ │ ├── SelectionDAGTargetInfo.h │ │ │ ├── ShadowStackGCLowering.h │ │ │ ├── SjLjEHPrepare.h │ │ │ ├── SlotIndexes.h │ │ │ ├── Spiller.h │ │ │ ├── StackMaps.h │ │ │ ├── StackProtector.h │ │ │ ├── SwiftErrorValueTracking.h │ │ │ ├── SwitchLoweringUtils.h │ │ │ ├── TailDuplicator.h │ │ │ ├── TargetCallingConv.h │ │ │ ├── TargetFrameLowering.h │ │ │ ├── TargetInstrInfo.h │ │ │ ├── TargetLowering.h │ │ │ ├── TargetLoweringObjectFileImpl.h │ │ │ ├── TargetOpcodes.h │ │ │ ├── TargetPassConfig.h │ │ │ ├── TargetRegisterInfo.h │ │ │ ├── TargetSchedule.h │ │ │ ├── TargetSubtargetInfo.h │ │ │ ├── TileShapeInfo.h │ │ │ ├── TypePromotion.h │ │ │ ├── UnreachableBlockElim.h │ │ │ ├── VLIWMachineScheduler.h │ │ │ ├── ValueTypes.h │ │ │ ├── ValueTypes.td │ │ │ ├── VirtRegMap.h │ │ │ ├── WasmEHFuncInfo.h │ │ │ ├── WasmEHPrepare.h │ │ │ ├── WinEHFuncInfo.h │ │ │ └── WinEHPrepare.h │ │ │ ├── Config │ │ │ ├── AsmParsers.def │ │ │ ├── AsmPrinters.def │ │ │ ├── Disassemblers.def │ │ │ ├── TargetExegesis.def │ │ │ ├── TargetMCAs.def │ │ │ ├── Targets.def │ │ │ ├── abi-breaking.h │ │ │ ├── config.h │ │ │ └── llvm-config.h │ │ │ ├── DWARFLinker │ │ │ ├── AddressesMap.h │ │ │ ├── Classic │ │ │ │ ├── DWARFLinker.h │ │ │ │ ├── DWARFLinkerCompileUnit.h │ │ │ │ ├── DWARFLinkerDeclContext.h │ │ │ │ └── DWARFStreamer.h │ │ │ ├── DWARFFile.h │ │ │ ├── DWARFLinkerBase.h │ │ │ ├── IndexedValuesMap.h │ │ │ ├── Parallel │ │ │ │ └── DWARFLinker.h │ │ │ ├── StringPool.h │ │ │ └── Utils.h │ │ │ ├── DWP │ │ │ ├── DWP.h │ │ │ ├── DWPError.h │ │ │ └── DWPStringPool.h │ │ │ ├── DebugInfo │ │ │ ├── BTF │ │ │ │ ├── BTF.def │ │ │ │ ├── BTF.h │ │ │ │ ├── BTFContext.h │ │ │ │ └── BTFParser.h │ │ │ ├── CodeView │ │ │ │ ├── AppendingTypeTableBuilder.h │ │ │ │ ├── CVRecord.h │ │ │ │ ├── CVSymbolVisitor.h │ │ │ │ ├── CVTypeVisitor.h │ │ │ │ ├── CodeView.h │ │ │ │ ├── CodeViewError.h │ │ │ │ ├── CodeViewRecordIO.h │ │ │ │ ├── CodeViewRegisters.def │ │ │ │ ├── CodeViewSymbols.def │ │ │ │ ├── CodeViewTypes.def │ │ │ │ ├── ContinuationRecordBuilder.h │ │ │ │ ├── DebugChecksumsSubsection.h │ │ │ │ ├── DebugCrossExSubsection.h │ │ │ │ ├── DebugCrossImpSubsection.h │ │ │ │ ├── DebugFrameDataSubsection.h │ │ │ │ ├── DebugInlineeLinesSubsection.h │ │ │ │ ├── DebugLinesSubsection.h │ │ │ │ ├── DebugStringTableSubsection.h │ │ │ │ ├── DebugSubsection.h │ │ │ │ ├── DebugSubsectionRecord.h │ │ │ │ ├── DebugSubsectionVisitor.h │ │ │ │ ├── DebugSymbolRVASubsection.h │ │ │ │ ├── DebugSymbolsSubsection.h │ │ │ │ ├── DebugUnknownSubsection.h │ │ │ │ ├── EnumTables.h │ │ │ │ ├── Formatters.h │ │ │ │ ├── FunctionId.h │ │ │ │ ├── GUID.h │ │ │ │ ├── GlobalTypeTableBuilder.h │ │ │ │ ├── LazyRandomTypeCollection.h │ │ │ │ ├── Line.h │ │ │ │ ├── MergingTypeTableBuilder.h │ │ │ │ ├── RecordName.h │ │ │ │ ├── RecordSerialization.h │ │ │ │ ├── SimpleTypeSerializer.h │ │ │ │ ├── StringsAndChecksums.h │ │ │ │ ├── SymbolDeserializer.h │ │ │ │ ├── SymbolDumpDelegate.h │ │ │ │ ├── SymbolDumper.h │ │ │ │ ├── SymbolRecord.h │ │ │ │ ├── SymbolRecordHelpers.h │ │ │ │ ├── SymbolRecordMapping.h │ │ │ │ ├── SymbolSerializer.h │ │ │ │ ├── SymbolVisitorCallbackPipeline.h │ │ │ │ ├── SymbolVisitorCallbacks.h │ │ │ │ ├── SymbolVisitorDelegate.h │ │ │ │ ├── TypeCollection.h │ │ │ │ ├── TypeDeserializer.h │ │ │ │ ├── TypeDumpVisitor.h │ │ │ │ ├── TypeHashing.h │ │ │ │ ├── TypeIndex.h │ │ │ │ ├── TypeIndexDiscovery.h │ │ │ │ ├── TypeRecord.h │ │ │ │ ├── TypeRecordHelpers.h │ │ │ │ ├── TypeRecordMapping.h │ │ │ │ ├── TypeStreamMerger.h │ │ │ │ ├── TypeSymbolEmitter.h │ │ │ │ ├── TypeTableCollection.h │ │ │ │ ├── TypeVisitorCallbackPipeline.h │ │ │ │ └── TypeVisitorCallbacks.h │ │ │ ├── DIContext.h │ │ │ ├── DWARF │ │ │ │ ├── DWARFAbbreviationDeclaration.h │ │ │ │ ├── DWARFAcceleratorTable.h │ │ │ │ ├── DWARFAddressRange.h │ │ │ │ ├── DWARFAttribute.h │ │ │ │ ├── DWARFCompileUnit.h │ │ │ │ ├── DWARFContext.h │ │ │ │ ├── DWARFDataExtractor.h │ │ │ │ ├── DWARFDebugAbbrev.h │ │ │ │ ├── DWARFDebugAddr.h │ │ │ │ ├── DWARFDebugArangeSet.h │ │ │ │ ├── DWARFDebugAranges.h │ │ │ │ ├── DWARFDebugFrame.h │ │ │ │ ├── DWARFDebugInfoEntry.h │ │ │ │ ├── DWARFDebugLine.h │ │ │ │ ├── DWARFDebugLoc.h │ │ │ │ ├── DWARFDebugMacro.h │ │ │ │ ├── DWARFDebugPubTable.h │ │ │ │ ├── DWARFDebugRangeList.h │ │ │ │ ├── DWARFDebugRnglists.h │ │ │ │ ├── DWARFDie.h │ │ │ │ ├── DWARFExpression.h │ │ │ │ ├── DWARFFormValue.h │ │ │ │ ├── DWARFGdbIndex.h │ │ │ │ ├── DWARFListTable.h │ │ │ │ ├── DWARFLocationExpression.h │ │ │ │ ├── DWARFObject.h │ │ │ │ ├── DWARFRelocMap.h │ │ │ │ ├── DWARFSection.h │ │ │ │ ├── DWARFTypePrinter.h │ │ │ │ ├── DWARFTypeUnit.h │ │ │ │ ├── DWARFUnit.h │ │ │ │ ├── DWARFUnitIndex.h │ │ │ │ └── DWARFVerifier.h │ │ │ ├── GSYM │ │ │ │ ├── DwarfTransformer.h │ │ │ │ ├── ExtractRanges.h │ │ │ │ ├── FileEntry.h │ │ │ │ ├── FileWriter.h │ │ │ │ ├── FunctionInfo.h │ │ │ │ ├── GsymCreator.h │ │ │ │ ├── GsymReader.h │ │ │ │ ├── Header.h │ │ │ │ ├── InlineInfo.h │ │ │ │ ├── LineEntry.h │ │ │ │ ├── LineTable.h │ │ │ │ ├── LookupResult.h │ │ │ │ ├── ObjectFileTransformer.h │ │ │ │ └── StringTable.h │ │ │ ├── LogicalView │ │ │ │ ├── Core │ │ │ │ │ ├── LVCompare.h │ │ │ │ │ ├── LVElement.h │ │ │ │ │ ├── LVLine.h │ │ │ │ │ ├── LVLocation.h │ │ │ │ │ ├── LVObject.h │ │ │ │ │ ├── LVOptions.h │ │ │ │ │ ├── LVRange.h │ │ │ │ │ ├── LVReader.h │ │ │ │ │ ├── LVScope.h │ │ │ │ │ ├── LVSort.h │ │ │ │ │ ├── LVStringPool.h │ │ │ │ │ ├── LVSupport.h │ │ │ │ │ ├── LVSymbol.h │ │ │ │ │ └── LVType.h │ │ │ │ ├── LVReaderHandler.h │ │ │ │ └── Readers │ │ │ │ │ ├── LVBinaryReader.h │ │ │ │ │ ├── LVCodeViewReader.h │ │ │ │ │ ├── LVCodeViewVisitor.h │ │ │ │ │ └── LVELFReader.h │ │ │ ├── MSF │ │ │ │ ├── IMSFFile.h │ │ │ │ ├── MSFBuilder.h │ │ │ │ ├── MSFCommon.h │ │ │ │ ├── MSFError.h │ │ │ │ └── MappedBlockStream.h │ │ │ ├── PDB │ │ │ │ ├── ConcreteSymbolEnumerator.h │ │ │ │ ├── DIA │ │ │ │ │ ├── DIADataStream.h │ │ │ │ │ ├── DIAEnumDebugStreams.h │ │ │ │ │ ├── DIAEnumFrameData.h │ │ │ │ │ ├── DIAEnumInjectedSources.h │ │ │ │ │ ├── DIAEnumLineNumbers.h │ │ │ │ │ ├── DIAEnumSectionContribs.h │ │ │ │ │ ├── DIAEnumSourceFiles.h │ │ │ │ │ ├── DIAEnumSymbols.h │ │ │ │ │ ├── DIAEnumTables.h │ │ │ │ │ ├── DIAError.h │ │ │ │ │ ├── DIAFrameData.h │ │ │ │ │ ├── DIAInjectedSource.h │ │ │ │ │ ├── DIALineNumber.h │ │ │ │ │ ├── DIARawSymbol.h │ │ │ │ │ ├── DIASectionContrib.h │ │ │ │ │ ├── DIASession.h │ │ │ │ │ ├── DIASourceFile.h │ │ │ │ │ ├── DIASupport.h │ │ │ │ │ ├── DIATable.h │ │ │ │ │ └── DIAUtils.h │ │ │ │ ├── GenericError.h │ │ │ │ ├── IPDBDataStream.h │ │ │ │ ├── IPDBEnumChildren.h │ │ │ │ ├── IPDBFrameData.h │ │ │ │ ├── IPDBInjectedSource.h │ │ │ │ ├── IPDBLineNumber.h │ │ │ │ ├── IPDBRawSymbol.h │ │ │ │ ├── IPDBSectionContrib.h │ │ │ │ ├── IPDBSession.h │ │ │ │ ├── IPDBSourceFile.h │ │ │ │ ├── IPDBTable.h │ │ │ │ ├── Native │ │ │ │ │ ├── DbiModuleDescriptor.h │ │ │ │ │ ├── DbiModuleDescriptorBuilder.h │ │ │ │ │ ├── DbiModuleList.h │ │ │ │ │ ├── DbiStream.h │ │ │ │ │ ├── DbiStreamBuilder.h │ │ │ │ │ ├── EnumTables.h │ │ │ │ │ ├── FormatUtil.h │ │ │ │ │ ├── GSIStreamBuilder.h │ │ │ │ │ ├── GlobalsStream.h │ │ │ │ │ ├── Hash.h │ │ │ │ │ ├── HashTable.h │ │ │ │ │ ├── ISectionContribVisitor.h │ │ │ │ │ ├── InfoStream.h │ │ │ │ │ ├── InfoStreamBuilder.h │ │ │ │ │ ├── InjectedSourceStream.h │ │ │ │ │ ├── InputFile.h │ │ │ │ │ ├── LinePrinter.h │ │ │ │ │ ├── ModuleDebugStream.h │ │ │ │ │ ├── NamedStreamMap.h │ │ │ │ │ ├── NativeCompilandSymbol.h │ │ │ │ │ ├── NativeEnumGlobals.h │ │ │ │ │ ├── NativeEnumInjectedSources.h │ │ │ │ │ ├── NativeEnumLineNumbers.h │ │ │ │ │ ├── NativeEnumModules.h │ │ │ │ │ ├── NativeEnumSymbols.h │ │ │ │ │ ├── NativeEnumTypes.h │ │ │ │ │ ├── NativeExeSymbol.h │ │ │ │ │ ├── NativeFunctionSymbol.h │ │ │ │ │ ├── NativeInlineSiteSymbol.h │ │ │ │ │ ├── NativeLineNumber.h │ │ │ │ │ ├── NativePublicSymbol.h │ │ │ │ │ ├── NativeRawSymbol.h │ │ │ │ │ ├── NativeSession.h │ │ │ │ │ ├── NativeSourceFile.h │ │ │ │ │ ├── NativeSymbolEnumerator.h │ │ │ │ │ ├── NativeTypeArray.h │ │ │ │ │ ├── NativeTypeBuiltin.h │ │ │ │ │ ├── NativeTypeEnum.h │ │ │ │ │ ├── NativeTypeFunctionSig.h │ │ │ │ │ ├── NativeTypePointer.h │ │ │ │ │ ├── NativeTypeTypedef.h │ │ │ │ │ ├── NativeTypeUDT.h │ │ │ │ │ ├── NativeTypeVTShape.h │ │ │ │ │ ├── PDBFile.h │ │ │ │ │ ├── PDBFileBuilder.h │ │ │ │ │ ├── PDBStringTable.h │ │ │ │ │ ├── PDBStringTableBuilder.h │ │ │ │ │ ├── PublicsStream.h │ │ │ │ │ ├── RawConstants.h │ │ │ │ │ ├── RawError.h │ │ │ │ │ ├── RawTypes.h │ │ │ │ │ ├── SymbolCache.h │ │ │ │ │ ├── SymbolStream.h │ │ │ │ │ ├── TpiHashing.h │ │ │ │ │ ├── TpiStream.h │ │ │ │ │ └── TpiStreamBuilder.h │ │ │ │ ├── PDB.h │ │ │ │ ├── PDBContext.h │ │ │ │ ├── PDBExtras.h │ │ │ │ ├── PDBSymDumper.h │ │ │ │ ├── PDBSymbol.h │ │ │ │ ├── PDBSymbolAnnotation.h │ │ │ │ ├── PDBSymbolBlock.h │ │ │ │ ├── PDBSymbolCompiland.h │ │ │ │ ├── PDBSymbolCompilandDetails.h │ │ │ │ ├── PDBSymbolCompilandEnv.h │ │ │ │ ├── PDBSymbolCustom.h │ │ │ │ ├── PDBSymbolData.h │ │ │ │ ├── PDBSymbolExe.h │ │ │ │ ├── PDBSymbolFunc.h │ │ │ │ ├── PDBSymbolFuncDebugEnd.h │ │ │ │ ├── PDBSymbolFuncDebugStart.h │ │ │ │ ├── PDBSymbolLabel.h │ │ │ │ ├── PDBSymbolPublicSymbol.h │ │ │ │ ├── PDBSymbolThunk.h │ │ │ │ ├── PDBSymbolTypeArray.h │ │ │ │ ├── PDBSymbolTypeBaseClass.h │ │ │ │ ├── PDBSymbolTypeBuiltin.h │ │ │ │ ├── PDBSymbolTypeCustom.h │ │ │ │ ├── PDBSymbolTypeDimension.h │ │ │ │ ├── PDBSymbolTypeEnum.h │ │ │ │ ├── PDBSymbolTypeFriend.h │ │ │ │ ├── PDBSymbolTypeFunctionArg.h │ │ │ │ ├── PDBSymbolTypeFunctionSig.h │ │ │ │ ├── PDBSymbolTypeManaged.h │ │ │ │ ├── PDBSymbolTypePointer.h │ │ │ │ ├── PDBSymbolTypeTypedef.h │ │ │ │ ├── PDBSymbolTypeUDT.h │ │ │ │ ├── PDBSymbolTypeVTable.h │ │ │ │ ├── PDBSymbolTypeVTableShape.h │ │ │ │ ├── PDBSymbolUnknown.h │ │ │ │ ├── PDBSymbolUsingNamespace.h │ │ │ │ ├── PDBTypes.h │ │ │ │ └── UDTLayout.h │ │ │ └── Symbolize │ │ │ │ ├── DIPrinter.h │ │ │ │ ├── Markup.h │ │ │ │ ├── MarkupFilter.h │ │ │ │ ├── SymbolizableModule.h │ │ │ │ ├── SymbolizableObjectFile.h │ │ │ │ └── Symbolize.h │ │ │ ├── Debuginfod │ │ │ ├── BuildIDFetcher.h │ │ │ ├── Debuginfod.h │ │ │ ├── HTTPClient.h │ │ │ └── HTTPServer.h │ │ │ ├── Demangle │ │ │ ├── Demangle.h │ │ │ ├── DemangleConfig.h │ │ │ ├── ItaniumDemangle.h │ │ │ ├── ItaniumNodes.def │ │ │ ├── MicrosoftDemangle.h │ │ │ ├── MicrosoftDemangleNodes.h │ │ │ ├── README.txt │ │ │ ├── StringViewExtras.h │ │ │ └── Utility.h │ │ │ ├── ExecutionEngine │ │ │ ├── ExecutionEngine.h │ │ │ ├── GenericValue.h │ │ │ ├── Interpreter.h │ │ │ ├── JITEventListener.h │ │ │ ├── JITLink │ │ │ │ ├── COFF.h │ │ │ │ ├── COFF_x86_64.h │ │ │ │ ├── DWARFRecordSectionSplitter.h │ │ │ │ ├── EHFrameSupport.h │ │ │ │ ├── ELF.h │ │ │ │ ├── ELF_aarch32.h │ │ │ │ ├── ELF_aarch64.h │ │ │ │ ├── ELF_i386.h │ │ │ │ ├── ELF_loongarch.h │ │ │ │ ├── ELF_ppc64.h │ │ │ │ ├── ELF_riscv.h │ │ │ │ ├── ELF_x86_64.h │ │ │ │ ├── JITLink.h │ │ │ │ ├── JITLinkDylib.h │ │ │ │ ├── JITLinkMemoryManager.h │ │ │ │ ├── MachO.h │ │ │ │ ├── MachO_arm64.h │ │ │ │ ├── MachO_x86_64.h │ │ │ │ ├── TableManager.h │ │ │ │ ├── aarch32.h │ │ │ │ ├── aarch64.h │ │ │ │ ├── i386.h │ │ │ │ ├── loongarch.h │ │ │ │ ├── ppc64.h │ │ │ │ ├── riscv.h │ │ │ │ └── x86_64.h │ │ │ ├── JITSymbol.h │ │ │ ├── MCJIT.h │ │ │ ├── OProfileWrapper.h │ │ │ ├── ObjectCache.h │ │ │ ├── Orc │ │ │ │ ├── COFFPlatform.h │ │ │ │ ├── COFFVCRuntimeSupport.h │ │ │ │ ├── CompileOnDemandLayer.h │ │ │ │ ├── CompileUtils.h │ │ │ │ ├── Core.h │ │ │ │ ├── DebugObjectManagerPlugin.h │ │ │ │ ├── DebugUtils.h │ │ │ │ ├── Debugging │ │ │ │ │ ├── DebugInfoSupport.h │ │ │ │ │ ├── DebuggerSupport.h │ │ │ │ │ ├── DebuggerSupportPlugin.h │ │ │ │ │ └── PerfSupportPlugin.h │ │ │ │ ├── ELFNixPlatform.h │ │ │ │ ├── EPCDebugObjectRegistrar.h │ │ │ │ ├── EPCDynamicLibrarySearchGenerator.h │ │ │ │ ├── EPCEHFrameRegistrar.h │ │ │ │ ├── EPCGenericDylibManager.h │ │ │ │ ├── EPCGenericJITLinkMemoryManager.h │ │ │ │ ├── EPCGenericMemoryAccess.h │ │ │ │ ├── EPCGenericRTDyldMemoryManager.h │ │ │ │ ├── EPCIndirectionUtils.h │ │ │ │ ├── ExecutionUtils.h │ │ │ │ ├── ExecutorProcessControl.h │ │ │ │ ├── IRCompileLayer.h │ │ │ │ ├── IRTransformLayer.h │ │ │ │ ├── IndirectionUtils.h │ │ │ │ ├── JITTargetMachineBuilder.h │ │ │ │ ├── LLJIT.h │ │ │ │ ├── Layer.h │ │ │ │ ├── LazyReexports.h │ │ │ │ ├── LookupAndRecordAddrs.h │ │ │ │ ├── MachOBuilder.h │ │ │ │ ├── MachOPlatform.h │ │ │ │ ├── Mangling.h │ │ │ │ ├── MapperJITLinkMemoryManager.h │ │ │ │ ├── MemoryMapper.h │ │ │ │ ├── ObjectFileInterface.h │ │ │ │ ├── ObjectLinkingLayer.h │ │ │ │ ├── ObjectTransformLayer.h │ │ │ │ ├── OrcABISupport.h │ │ │ │ ├── RTDyldObjectLinkingLayer.h │ │ │ │ ├── Shared │ │ │ │ │ ├── AllocationActions.h │ │ │ │ │ ├── ExecutorAddress.h │ │ │ │ │ ├── ExecutorSymbolDef.h │ │ │ │ │ ├── MemoryFlags.h │ │ │ │ │ ├── ObjectFormats.h │ │ │ │ │ ├── OrcError.h │ │ │ │ │ ├── OrcRTBridge.h │ │ │ │ │ ├── PerfSharedStructs.h │ │ │ │ │ ├── SimplePackedSerialization.h │ │ │ │ │ ├── SimpleRemoteEPCUtils.h │ │ │ │ │ ├── TargetProcessControlTypes.h │ │ │ │ │ └── WrapperFunctionUtils.h │ │ │ │ ├── SimpleRemoteEPC.h │ │ │ │ ├── SpeculateAnalyses.h │ │ │ │ ├── Speculation.h │ │ │ │ ├── SymbolStringPool.h │ │ │ │ ├── TargetProcess │ │ │ │ │ ├── ExecutorBootstrapService.h │ │ │ │ │ ├── ExecutorSharedMemoryMapperService.h │ │ │ │ │ ├── JITLoaderGDB.h │ │ │ │ │ ├── JITLoaderPerf.h │ │ │ │ │ ├── RegisterEHFrames.h │ │ │ │ │ ├── SimpleExecutorDylibManager.h │ │ │ │ │ ├── SimpleExecutorMemoryManager.h │ │ │ │ │ ├── SimpleRemoteEPCServer.h │ │ │ │ │ └── TargetExecutionUtils.h │ │ │ │ ├── TaskDispatch.h │ │ │ │ └── ThreadSafeModule.h │ │ │ ├── RTDyldMemoryManager.h │ │ │ ├── RuntimeDyld.h │ │ │ ├── RuntimeDyldChecker.h │ │ │ └── SectionMemoryManager.h │ │ │ ├── FileCheck │ │ │ └── FileCheck.h │ │ │ ├── Frontend │ │ │ ├── CMakeLists.txt │ │ │ ├── Debug │ │ │ │ └── Options.h │ │ │ ├── Directive │ │ │ │ └── DirectiveBase.td │ │ │ ├── Driver │ │ │ │ └── CodeGenOptions.h │ │ │ ├── HLSL │ │ │ │ └── HLSLResource.h │ │ │ ├── Offloading │ │ │ │ ├── OffloadWrapper.h │ │ │ │ └── Utility.h │ │ │ ├── OpenACC │ │ │ │ ├── ACC.td │ │ │ │ └── CMakeLists.txt │ │ │ └── OpenMP │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── OMP.td │ │ │ │ ├── OMPAssume.h │ │ │ │ ├── OMPConstants.h │ │ │ │ ├── OMPContext.h │ │ │ │ ├── OMPDeviceConstants.h │ │ │ │ ├── OMPGridValues.h │ │ │ │ ├── OMPIRBuilder.h │ │ │ │ └── OMPKinds.def │ │ │ ├── FuzzMutate │ │ │ ├── FuzzerCLI.h │ │ │ ├── IRMutator.h │ │ │ ├── OpDescriptor.h │ │ │ ├── Operations.h │ │ │ ├── Random.h │ │ │ └── RandomIRBuilder.h │ │ │ ├── IR │ │ │ ├── AbstractCallSite.h │ │ │ ├── Argument.h │ │ │ ├── AssemblyAnnotationWriter.h │ │ │ ├── Assumptions.h │ │ │ ├── AttributeMask.h │ │ │ ├── Attributes.h │ │ │ ├── Attributes.inc │ │ │ ├── AutoUpgrade.h │ │ │ ├── BasicBlock.h │ │ │ ├── BuiltinGCs.h │ │ │ ├── CFG.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CallingConv.h │ │ │ ├── Comdat.h │ │ │ ├── Constant.h │ │ │ ├── ConstantFold.h │ │ │ ├── ConstantFolder.h │ │ │ ├── ConstantRange.h │ │ │ ├── Constants.h │ │ │ ├── ConstrainedOps.def │ │ │ ├── ConvergenceVerifier.h │ │ │ ├── CycleInfo.h │ │ │ ├── DIBuilder.h │ │ │ ├── DataLayout.h │ │ │ ├── DebugInfo.h │ │ │ ├── DebugInfoFlags.def │ │ │ ├── DebugInfoMetadata.h │ │ │ ├── DebugLoc.h │ │ │ ├── DebugProgramInstruction.h │ │ │ ├── DerivedTypes.h │ │ │ ├── DerivedUser.h │ │ │ ├── DiagnosticHandler.h │ │ │ ├── DiagnosticInfo.h │ │ │ ├── DiagnosticPrinter.h │ │ │ ├── Dominators.h │ │ │ ├── EHPersonalities.h │ │ │ ├── FMF.h │ │ │ ├── FPEnv.h │ │ │ ├── FixedMetadataKinds.def │ │ │ ├── FixedPointBuilder.h │ │ │ ├── Function.h │ │ │ ├── GCStrategy.h │ │ │ ├── GVMaterializer.h │ │ │ ├── GenericConvergenceVerifierImpl.h │ │ │ ├── GetElementPtrTypeIterator.h │ │ │ ├── GlobalAlias.h │ │ │ ├── GlobalIFunc.h │ │ │ ├── GlobalObject.h │ │ │ ├── GlobalValue.h │ │ │ ├── GlobalVariable.h │ │ │ ├── IRBuilder.h │ │ │ ├── IRBuilderFolder.h │ │ │ ├── IRPrintingPasses.h │ │ │ ├── InlineAsm.h │ │ │ ├── InstIterator.h │ │ │ ├── InstVisitor.h │ │ │ ├── InstrTypes.h │ │ │ ├── Instruction.def │ │ │ ├── Instruction.h │ │ │ ├── Instructions.h │ │ │ ├── IntrinsicEnums.inc │ │ │ ├── IntrinsicImpl.inc │ │ │ ├── IntrinsicInst.h │ │ │ ├── Intrinsics.h │ │ │ ├── IntrinsicsAArch64.h │ │ │ ├── IntrinsicsAMDGPU.h │ │ │ ├── IntrinsicsARM.h │ │ │ ├── IntrinsicsBPF.h │ │ │ ├── IntrinsicsDirectX.h │ │ │ ├── IntrinsicsHexagon.h │ │ │ ├── IntrinsicsLoongArch.h │ │ │ ├── IntrinsicsMips.h │ │ │ ├── IntrinsicsNVPTX.h │ │ │ ├── IntrinsicsPowerPC.h │ │ │ ├── IntrinsicsR600.h │ │ │ ├── IntrinsicsRISCV.h │ │ │ ├── IntrinsicsS390.h │ │ │ ├── IntrinsicsSPIRV.h │ │ │ ├── IntrinsicsVE.h │ │ │ ├── IntrinsicsWebAssembly.h │ │ │ ├── IntrinsicsX86.h │ │ │ ├── IntrinsicsXCore.h │ │ │ ├── LLVMContext.h │ │ │ ├── LLVMRemarkStreamer.h │ │ │ ├── LegacyPassManager.h │ │ │ ├── LegacyPassManagers.h │ │ │ ├── LegacyPassNameParser.h │ │ │ ├── MDBuilder.h │ │ │ ├── Mangler.h │ │ │ ├── MatrixBuilder.h │ │ │ ├── Metadata.def │ │ │ ├── Metadata.h │ │ │ ├── Module.h │ │ │ ├── ModuleSlotTracker.h │ │ │ ├── ModuleSummaryIndex.h │ │ │ ├── ModuleSummaryIndexYAML.h │ │ │ ├── NoFolder.h │ │ │ ├── OperandTraits.h │ │ │ ├── Operator.h │ │ │ ├── OptBisect.h │ │ │ ├── PassInstrumentation.h │ │ │ ├── PassManager.h │ │ │ ├── PassManagerImpl.h │ │ │ ├── PassManagerInternal.h │ │ │ ├── PassTimingInfo.h │ │ │ ├── PatternMatch.h │ │ │ ├── PredIteratorCache.h │ │ │ ├── PrintPasses.h │ │ │ ├── ProfDataUtils.h │ │ │ ├── ProfileSummary.h │ │ │ ├── PseudoProbe.h │ │ │ ├── ReplaceConstant.h │ │ │ ├── RuntimeLibcalls.def │ │ │ ├── SSAContext.h │ │ │ ├── SafepointIRVerifier.h │ │ │ ├── Statepoint.h │ │ │ ├── StructuralHash.h │ │ │ ├── SymbolTableListTraits.h │ │ │ ├── TrackingMDRef.h │ │ │ ├── Type.h │ │ │ ├── TypeFinder.h │ │ │ ├── TypedPointerType.h │ │ │ ├── Use.h │ │ │ ├── UseListOrder.h │ │ │ ├── User.h │ │ │ ├── VFABIDemangler.h │ │ │ ├── VPIntrinsics.def │ │ │ ├── Value.def │ │ │ ├── Value.h │ │ │ ├── ValueHandle.h │ │ │ ├── ValueMap.h │ │ │ ├── ValueSymbolTable.h │ │ │ ├── VectorBuilder.h │ │ │ └── Verifier.h │ │ │ ├── IRPrinter │ │ │ └── IRPrintingPasses.h │ │ │ ├── IRReader │ │ │ └── IRReader.h │ │ │ ├── InitializePasses.h │ │ │ ├── InterfaceStub │ │ │ ├── ELFObjHandler.h │ │ │ ├── IFSHandler.h │ │ │ └── IFSStub.h │ │ │ ├── LTO │ │ │ ├── Config.h │ │ │ ├── LTO.h │ │ │ ├── LTOBackend.h │ │ │ ├── SummaryBasedOptimizations.h │ │ │ └── legacy │ │ │ │ ├── LTOCodeGenerator.h │ │ │ │ ├── LTOModule.h │ │ │ │ ├── ThinLTOCodeGenerator.h │ │ │ │ └── UpdateCompilerUsed.h │ │ │ ├── LineEditor │ │ │ └── LineEditor.h │ │ │ ├── LinkAllIR.h │ │ │ ├── LinkAllPasses.h │ │ │ ├── Linker │ │ │ ├── IRMover.h │ │ │ └── Linker.h │ │ │ ├── MC │ │ │ ├── ConstantPools.h │ │ │ ├── DXContainerPSVInfo.h │ │ │ ├── LaneBitmask.h │ │ │ ├── MCAsmBackend.h │ │ │ ├── MCAsmInfo.h │ │ │ ├── MCAsmInfoCOFF.h │ │ │ ├── MCAsmInfoDarwin.h │ │ │ ├── MCAsmInfoELF.h │ │ │ ├── MCAsmInfoGOFF.h │ │ │ ├── MCAsmInfoWasm.h │ │ │ ├── MCAsmInfoXCOFF.h │ │ │ ├── MCAsmLayout.h │ │ │ ├── MCAsmMacro.h │ │ │ ├── MCAssembler.h │ │ │ ├── MCCodeEmitter.h │ │ │ ├── MCCodeView.h │ │ │ ├── MCContext.h │ │ │ ├── MCDXContainerStreamer.h │ │ │ ├── MCDXContainerWriter.h │ │ │ ├── MCDecoderOps.h │ │ │ ├── MCDirectives.h │ │ │ ├── MCDisassembler │ │ │ │ ├── MCDisassembler.h │ │ │ │ ├── MCExternalSymbolizer.h │ │ │ │ ├── MCRelocationInfo.h │ │ │ │ └── MCSymbolizer.h │ │ │ ├── MCDwarf.h │ │ │ ├── MCELFObjectWriter.h │ │ │ ├── MCELFStreamer.h │ │ │ ├── MCExpr.h │ │ │ ├── MCFixup.h │ │ │ ├── MCFixupKindInfo.h │ │ │ ├── MCFragment.h │ │ │ ├── MCGOFFObjectWriter.h │ │ │ ├── MCGOFFStreamer.h │ │ │ ├── MCInst.h │ │ │ ├── MCInstBuilder.h │ │ │ ├── MCInstPrinter.h │ │ │ ├── MCInstrAnalysis.h │ │ │ ├── MCInstrDesc.h │ │ │ ├── MCInstrInfo.h │ │ │ ├── MCInstrItineraries.h │ │ │ ├── MCLabel.h │ │ │ ├── MCLinkerOptimizationHint.h │ │ │ ├── MCMachObjectWriter.h │ │ │ ├── MCObjectFileInfo.h │ │ │ ├── MCObjectStreamer.h │ │ │ ├── MCObjectWriter.h │ │ │ ├── MCParser │ │ │ │ ├── AsmCond.h │ │ │ │ ├── AsmLexer.h │ │ │ │ ├── MCAsmLexer.h │ │ │ │ ├── MCAsmParser.h │ │ │ │ ├── MCAsmParserExtension.h │ │ │ │ ├── MCAsmParserUtils.h │ │ │ │ ├── MCParsedAsmOperand.h │ │ │ │ └── MCTargetAsmParser.h │ │ │ ├── MCPseudoProbe.h │ │ │ ├── MCRegister.h │ │ │ ├── MCRegisterInfo.h │ │ │ ├── MCSPIRVObjectWriter.h │ │ │ ├── MCSPIRVStreamer.h │ │ │ ├── MCSchedule.h │ │ │ ├── MCSection.h │ │ │ ├── MCSectionCOFF.h │ │ │ ├── MCSectionDXContainer.h │ │ │ ├── MCSectionELF.h │ │ │ ├── MCSectionGOFF.h │ │ │ ├── MCSectionMachO.h │ │ │ ├── MCSectionSPIRV.h │ │ │ ├── MCSectionWasm.h │ │ │ ├── MCSectionXCOFF.h │ │ │ ├── MCStreamer.h │ │ │ ├── MCSubtargetInfo.h │ │ │ ├── MCSymbol.h │ │ │ ├── MCSymbolCOFF.h │ │ │ ├── MCSymbolELF.h │ │ │ ├── MCSymbolGOFF.h │ │ │ ├── MCSymbolMachO.h │ │ │ ├── MCSymbolWasm.h │ │ │ ├── MCSymbolXCOFF.h │ │ │ ├── MCTargetOptions.h │ │ │ ├── MCTargetOptionsCommandFlags.h │ │ │ ├── MCValue.h │ │ │ ├── MCWasmObjectWriter.h │ │ │ ├── MCWasmStreamer.h │ │ │ ├── MCWin64EH.h │ │ │ ├── MCWinCOFFObjectWriter.h │ │ │ ├── MCWinCOFFStreamer.h │ │ │ ├── MCWinEH.h │ │ │ ├── MCXCOFFObjectWriter.h │ │ │ ├── MCXCOFFStreamer.h │ │ │ ├── MachineLocation.h │ │ │ ├── SectionKind.h │ │ │ ├── StringTableBuilder.h │ │ │ └── TargetRegistry.h │ │ │ ├── MCA │ │ │ ├── CodeEmitter.h │ │ │ ├── Context.h │ │ │ ├── CustomBehaviour.h │ │ │ ├── HWEventListener.h │ │ │ ├── HardwareUnits │ │ │ │ ├── HardwareUnit.h │ │ │ │ ├── LSUnit.h │ │ │ │ ├── RegisterFile.h │ │ │ │ ├── ResourceManager.h │ │ │ │ ├── RetireControlUnit.h │ │ │ │ └── Scheduler.h │ │ │ ├── IncrementalSourceMgr.h │ │ │ ├── InstrBuilder.h │ │ │ ├── Instruction.h │ │ │ ├── Pipeline.h │ │ │ ├── SourceMgr.h │ │ │ ├── Stages │ │ │ │ ├── DispatchStage.h │ │ │ │ ├── EntryStage.h │ │ │ │ ├── ExecuteStage.h │ │ │ │ ├── InOrderIssueStage.h │ │ │ │ ├── InstructionTables.h │ │ │ │ ├── MicroOpQueueStage.h │ │ │ │ ├── RetireStage.h │ │ │ │ └── Stage.h │ │ │ ├── Support.h │ │ │ └── View.h │ │ │ ├── ObjCopy │ │ │ ├── COFF │ │ │ │ ├── COFFConfig.h │ │ │ │ └── COFFObjcopy.h │ │ │ ├── CommonConfig.h │ │ │ ├── ConfigManager.h │ │ │ ├── ELF │ │ │ │ ├── ELFConfig.h │ │ │ │ └── ELFObjcopy.h │ │ │ ├── MachO │ │ │ │ ├── MachOConfig.h │ │ │ │ └── MachOObjcopy.h │ │ │ ├── MultiFormatConfig.h │ │ │ ├── ObjCopy.h │ │ │ ├── XCOFF │ │ │ │ ├── XCOFFConfig.h │ │ │ │ └── XCOFFObjcopy.h │ │ │ └── wasm │ │ │ │ ├── WasmConfig.h │ │ │ │ └── WasmObjcopy.h │ │ │ ├── Object │ │ │ ├── Archive.h │ │ │ ├── ArchiveWriter.h │ │ │ ├── Binary.h │ │ │ ├── BuildID.h │ │ │ ├── COFF.h │ │ │ ├── COFFImportFile.h │ │ │ ├── COFFModuleDefinition.h │ │ │ ├── CVDebugRecord.h │ │ │ ├── DXContainer.h │ │ │ ├── Decompressor.h │ │ │ ├── ELF.h │ │ │ ├── ELFObjectFile.h │ │ │ ├── ELFTypes.h │ │ │ ├── Error.h │ │ │ ├── FaultMapParser.h │ │ │ ├── GOFF.h │ │ │ ├── GOFFObjectFile.h │ │ │ ├── IRObjectFile.h │ │ │ ├── IRSymtab.h │ │ │ ├── MachO.h │ │ │ ├── MachOUniversal.h │ │ │ ├── MachOUniversalWriter.h │ │ │ ├── Minidump.h │ │ │ ├── ModuleSymbolTable.h │ │ │ ├── ObjectFile.h │ │ │ ├── OffloadBinary.h │ │ │ ├── RelocationResolver.h │ │ │ ├── StackMapParser.h │ │ │ ├── SymbolSize.h │ │ │ ├── SymbolicFile.h │ │ │ ├── TapiFile.h │ │ │ ├── TapiUniversal.h │ │ │ ├── Wasm.h │ │ │ ├── WindowsMachineFlag.h │ │ │ ├── WindowsResource.h │ │ │ └── XCOFFObjectFile.h │ │ │ ├── ObjectYAML │ │ │ ├── ArchiveYAML.h │ │ │ ├── COFFYAML.h │ │ │ ├── CodeViewYAMLDebugSections.h │ │ │ ├── CodeViewYAMLSymbols.h │ │ │ ├── CodeViewYAMLTypeHashing.h │ │ │ ├── CodeViewYAMLTypes.h │ │ │ ├── DWARFEmitter.h │ │ │ ├── DWARFYAML.h │ │ │ ├── DXContainerYAML.h │ │ │ ├── ELFYAML.h │ │ │ ├── GOFFYAML.h │ │ │ ├── MachOYAML.h │ │ │ ├── MinidumpYAML.h │ │ │ ├── ObjectYAML.h │ │ │ ├── OffloadYAML.h │ │ │ ├── WasmYAML.h │ │ │ ├── XCOFFYAML.h │ │ │ ├── YAML.h │ │ │ └── yaml2obj.h │ │ │ ├── Option │ │ │ ├── Arg.h │ │ │ ├── ArgList.h │ │ │ ├── OptParser.td │ │ │ ├── OptSpecifier.h │ │ │ ├── OptTable.h │ │ │ └── Option.h │ │ │ ├── Pass.h │ │ │ ├── PassAnalysisSupport.h │ │ │ ├── PassInfo.h │ │ │ ├── PassRegistry.h │ │ │ ├── PassSupport.h │ │ │ ├── Passes │ │ │ ├── OptimizationLevel.h │ │ │ ├── PassBuilder.h │ │ │ ├── PassPlugin.h │ │ │ └── StandardInstrumentations.h │ │ │ ├── ProfileData │ │ │ ├── Coverage │ │ │ │ ├── CoverageMapping.h │ │ │ │ ├── CoverageMappingReader.h │ │ │ │ └── CoverageMappingWriter.h │ │ │ ├── FunctionId.h │ │ │ ├── GCOV.h │ │ │ ├── HashKeyMap.h │ │ │ ├── InstrProf.h │ │ │ ├── InstrProfCorrelator.h │ │ │ ├── InstrProfData.inc │ │ │ ├── InstrProfReader.h │ │ │ ├── InstrProfWriter.h │ │ │ ├── ItaniumManglingCanonicalizer.h │ │ │ ├── MIBEntryDef.inc │ │ │ ├── MemProf.h │ │ │ ├── MemProfData.inc │ │ │ ├── ProfileCommon.h │ │ │ ├── RawMemProfReader.h │ │ │ ├── SampleProf.h │ │ │ ├── SampleProfReader.h │ │ │ ├── SampleProfWriter.h │ │ │ └── SymbolRemappingReader.h │ │ │ ├── Remarks │ │ │ ├── BitstreamRemarkContainer.h │ │ │ ├── BitstreamRemarkParser.h │ │ │ ├── BitstreamRemarkSerializer.h │ │ │ ├── HotnessThresholdParser.h │ │ │ ├── Remark.h │ │ │ ├── RemarkFormat.h │ │ │ ├── RemarkLinker.h │ │ │ ├── RemarkParser.h │ │ │ ├── RemarkSerializer.h │ │ │ ├── RemarkStreamer.h │ │ │ ├── RemarkStringTable.h │ │ │ └── YAMLRemarkSerializer.h │ │ │ ├── Support │ │ │ ├── AMDGPUAddrSpace.h │ │ │ ├── AMDGPUMetadata.h │ │ │ ├── AMDHSAKernelDescriptor.h │ │ │ ├── ARMAttributeParser.h │ │ │ ├── ARMBuildAttributes.h │ │ │ ├── ARMEHABI.h │ │ │ ├── ARMWinEH.h │ │ │ ├── AlignOf.h │ │ │ ├── Alignment.h │ │ │ ├── Allocator.h │ │ │ ├── AllocatorBase.h │ │ │ ├── ArrayRecycler.h │ │ │ ├── Atomic.h │ │ │ ├── AtomicOrdering.h │ │ │ ├── AutoConvert.h │ │ │ ├── Automaton.h │ │ │ ├── BCD.h │ │ │ ├── BLAKE3.h │ │ │ ├── BalancedPartitioning.h │ │ │ ├── Base64.h │ │ │ ├── BinaryByteStream.h │ │ │ ├── BinaryItemStream.h │ │ │ ├── BinaryStream.h │ │ │ ├── BinaryStreamArray.h │ │ │ ├── BinaryStreamError.h │ │ │ ├── BinaryStreamReader.h │ │ │ ├── BinaryStreamRef.h │ │ │ ├── BinaryStreamWriter.h │ │ │ ├── BlockFrequency.h │ │ │ ├── BranchProbability.h │ │ │ ├── BuryPointer.h │ │ │ ├── CBindingWrapping.h │ │ │ ├── CFGDiff.h │ │ │ ├── CFGUpdate.h │ │ │ ├── CMakeLists.txt │ │ │ ├── COM.h │ │ │ ├── CRC.h │ │ │ ├── CSKYAttributeParser.h │ │ │ ├── CSKYAttributes.h │ │ │ ├── CachePruning.h │ │ │ ├── Caching.h │ │ │ ├── Capacity.h │ │ │ ├── Casting.h │ │ │ ├── CheckedArithmetic.h │ │ │ ├── Chrono.h │ │ │ ├── CodeGen.h │ │ │ ├── CodeGenCoverage.h │ │ │ ├── CommandLine.h │ │ │ ├── Compiler.h │ │ │ ├── Compression.h │ │ │ ├── ConvertEBCDIC.h │ │ │ ├── ConvertUTF.h │ │ │ ├── CrashRecoveryContext.h │ │ │ ├── DJB.h │ │ │ ├── DOTGraphTraits.h │ │ │ ├── DXILOperationCommon.h │ │ │ ├── DataExtractor.h │ │ │ ├── DataTypes.h │ │ │ ├── Debug.h │ │ │ ├── DebugCounter.h │ │ │ ├── Discriminator.h │ │ │ ├── DivisionByConstantInfo.h │ │ │ ├── Duration.h │ │ │ ├── DynamicLibrary.h │ │ │ ├── ELFAttributeParser.h │ │ │ ├── ELFAttributes.h │ │ │ ├── Endian.h │ │ │ ├── EndianStream.h │ │ │ ├── Errc.h │ │ │ ├── Errno.h │ │ │ ├── Error.h │ │ │ ├── ErrorHandling.h │ │ │ ├── ErrorOr.h │ │ │ ├── ExitCodes.h │ │ │ ├── ExtensibleRTTI.h │ │ │ ├── FileCollector.h │ │ │ ├── FileOutputBuffer.h │ │ │ ├── FileSystem.h │ │ │ ├── FileSystem │ │ │ │ └── UniqueID.h │ │ │ ├── FileUtilities.h │ │ │ ├── Format.h │ │ │ ├── FormatAdapters.h │ │ │ ├── FormatCommon.h │ │ │ ├── FormatProviders.h │ │ │ ├── FormatVariadic.h │ │ │ ├── FormatVariadicDetails.h │ │ │ ├── FormattedStream.h │ │ │ ├── GenericDomTree.h │ │ │ ├── GenericDomTreeConstruction.h │ │ │ ├── GenericIteratedDominanceFrontier.h │ │ │ ├── GenericLoopInfo.h │ │ │ ├── GenericLoopInfoImpl.h │ │ │ ├── GlobPattern.h │ │ │ ├── GraphWriter.h │ │ │ ├── HashBuilder.h │ │ │ ├── InitLLVM.h │ │ │ ├── InstructionCost.h │ │ │ ├── JSON.h │ │ │ ├── KnownBits.h │ │ │ ├── LEB128.h │ │ │ ├── LICENSE.TXT │ │ │ ├── LLVMDriver.h │ │ │ ├── LineIterator.h │ │ │ ├── Locale.h │ │ │ ├── LockFileManager.h │ │ │ ├── MD5.h │ │ │ ├── MSP430AttributeParser.h │ │ │ ├── MSP430Attributes.h │ │ │ ├── MSVCErrorWorkarounds.h │ │ │ ├── ManagedStatic.h │ │ │ ├── MathExtras.h │ │ │ ├── MemAlloc.h │ │ │ ├── Memory.h │ │ │ ├── MemoryBuffer.h │ │ │ ├── MemoryBufferRef.h │ │ │ ├── MipsABIFlags.h │ │ │ ├── ModRef.h │ │ │ ├── Mutex.h │ │ │ ├── NativeFormatting.h │ │ │ ├── OnDiskHashTable.h │ │ │ ├── OptimizedStructLayout.h │ │ │ ├── PGOOptions.h │ │ │ ├── Parallel.h │ │ │ ├── Path.h │ │ │ ├── PerThreadBumpPtrAllocator.h │ │ │ ├── PluginLoader.h │ │ │ ├── PointerLikeTypeTraits.h │ │ │ ├── PrettyStackTrace.h │ │ │ ├── Printable.h │ │ │ ├── Process.h │ │ │ ├── Program.h │ │ │ ├── RISCVAttributeParser.h │ │ │ ├── RISCVAttributes.h │ │ │ ├── RISCVISAInfo.h │ │ │ ├── RWMutex.h │ │ │ ├── RandomNumberGenerator.h │ │ │ ├── Recycler.h │ │ │ ├── RecyclingAllocator.h │ │ │ ├── Regex.h │ │ │ ├── Registry.h │ │ │ ├── ReverseIteration.h │ │ │ ├── SHA1.h │ │ │ ├── SHA256.h │ │ │ ├── SMLoc.h │ │ │ ├── SMTAPI.h │ │ │ ├── SaveAndRestore.h │ │ │ ├── ScaledNumber.h │ │ │ ├── ScopedPrinter.h │ │ │ ├── Signals.h │ │ │ ├── Signposts.h │ │ │ ├── SmallVectorMemoryBuffer.h │ │ │ ├── Solaris │ │ │ │ └── sys │ │ │ │ │ └── regset.h │ │ │ ├── SourceMgr.h │ │ │ ├── SpecialCaseList.h │ │ │ ├── StringSaver.h │ │ │ ├── SuffixTree.h │ │ │ ├── SuffixTreeNode.h │ │ │ ├── SwapByteOrder.h │ │ │ ├── SystemUtils.h │ │ │ ├── SystemZ │ │ │ │ └── zOSSupport.h │ │ │ ├── TarWriter.h │ │ │ ├── TargetOpcodes.def │ │ │ ├── TargetSelect.h │ │ │ ├── ThreadPool.h │ │ │ ├── ThreadSafeAllocator.h │ │ │ ├── Threading.h │ │ │ ├── TimeProfiler.h │ │ │ ├── Timer.h │ │ │ ├── ToolOutputFile.h │ │ │ ├── TrailingObjects.h │ │ │ ├── TypeName.h │ │ │ ├── TypeSize.h │ │ │ ├── Unicode.h │ │ │ ├── UnicodeCharRanges.h │ │ │ ├── Valgrind.h │ │ │ ├── VersionTuple.h │ │ │ ├── VirtualFileSystem.h │ │ │ ├── Watchdog.h │ │ │ ├── Win64EH.h │ │ │ ├── Windows │ │ │ │ └── WindowsSupport.h │ │ │ ├── WindowsError.h │ │ │ ├── WithColor.h │ │ │ ├── X86DisassemblerDecoderCommon.h │ │ │ ├── X86FoldTablesUtils.h │ │ │ ├── YAMLParser.h │ │ │ ├── YAMLTraits.h │ │ │ ├── circular_raw_ostream.h │ │ │ ├── raw_os_ostream.h │ │ │ ├── raw_ostream.h │ │ │ ├── raw_sha1_ostream.h │ │ │ ├── raw_socket_stream.h │ │ │ ├── thread.h │ │ │ ├── type_traits.h │ │ │ └── xxhash.h │ │ │ ├── TableGen │ │ │ ├── Automaton.td │ │ │ ├── DirectiveEmitter.h │ │ │ ├── Error.h │ │ │ ├── Main.h │ │ │ ├── Parser.h │ │ │ ├── Record.h │ │ │ ├── SearchableTable.td │ │ │ ├── SetTheory.h │ │ │ ├── StringMatcher.h │ │ │ ├── StringToOffsetTable.h │ │ │ └── TableGenBackend.h │ │ │ ├── Target │ │ │ ├── CGPassBuilderOption.h │ │ │ ├── CodeGenCWrappers.h │ │ │ ├── GenericOpcodes.td │ │ │ ├── GlobalISel │ │ │ │ ├── Combine.td │ │ │ │ ├── RegisterBank.td │ │ │ │ ├── SelectionDAGCompat.td │ │ │ │ └── Target.td │ │ │ ├── Target.td │ │ │ ├── TargetCallingConv.td │ │ │ ├── TargetInstrPredicate.td │ │ │ ├── TargetIntrinsicInfo.h │ │ │ ├── TargetItinerary.td │ │ │ ├── TargetLoweringObjectFile.h │ │ │ ├── TargetMachine.h │ │ │ ├── TargetOptions.h │ │ │ ├── TargetPfmCounters.td │ │ │ ├── TargetSchedule.td │ │ │ └── TargetSelectionDAG.td │ │ │ ├── TargetParser │ │ │ ├── AArch64TargetParser.h │ │ │ ├── ARMTargetParser.def │ │ │ ├── ARMTargetParser.h │ │ │ ├── ARMTargetParserCommon.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CSKYTargetParser.def │ │ │ ├── CSKYTargetParser.h │ │ │ ├── Host.h │ │ │ ├── LoongArchTargetParser.def │ │ │ ├── LoongArchTargetParser.h │ │ │ ├── RISCVTargetParser.h │ │ │ ├── SubtargetFeature.h │ │ │ ├── TargetParser.h │ │ │ ├── Triple.h │ │ │ ├── X86TargetParser.def │ │ │ └── X86TargetParser.h │ │ │ ├── Testing │ │ │ ├── ADT │ │ │ │ ├── StringMap.h │ │ │ │ └── StringMapEntry.h │ │ │ ├── Annotations │ │ │ │ └── Annotations.h │ │ │ └── Support │ │ │ │ ├── Error.h │ │ │ │ └── SupportHelpers.h │ │ │ ├── TextAPI │ │ │ ├── Architecture.def │ │ │ ├── Architecture.h │ │ │ ├── ArchitectureSet.h │ │ │ ├── DylibReader.h │ │ │ ├── InterfaceFile.h │ │ │ ├── PackedVersion.h │ │ │ ├── Platform.h │ │ │ ├── Record.h │ │ │ ├── RecordVisitor.h │ │ │ ├── RecordsSlice.h │ │ │ ├── Symbol.h │ │ │ ├── SymbolSet.h │ │ │ ├── Target.h │ │ │ ├── TextAPIError.h │ │ │ ├── TextAPIReader.h │ │ │ ├── TextAPIWriter.h │ │ │ └── Utils.h │ │ │ ├── ToolDrivers │ │ │ ├── llvm-dlltool │ │ │ │ └── DlltoolDriver.h │ │ │ └── llvm-lib │ │ │ │ └── LibDriver.h │ │ │ ├── Transforms │ │ │ ├── AggressiveInstCombine │ │ │ │ └── AggressiveInstCombine.h │ │ │ ├── CFGuard.h │ │ │ ├── Coroutines │ │ │ │ ├── CoroCleanup.h │ │ │ │ ├── CoroConditionalWrapper.h │ │ │ │ ├── CoroEarly.h │ │ │ │ ├── CoroElide.h │ │ │ │ └── CoroSplit.h │ │ │ ├── HipStdPar │ │ │ │ └── HipStdPar.h │ │ │ ├── IPO.h │ │ │ ├── IPO │ │ │ │ ├── AlwaysInliner.h │ │ │ │ ├── Annotation2Metadata.h │ │ │ │ ├── ArgumentPromotion.h │ │ │ │ ├── Attributor.h │ │ │ │ ├── BlockExtractor.h │ │ │ │ ├── CalledValuePropagation.h │ │ │ │ ├── ConstantMerge.h │ │ │ │ ├── CrossDSOCFI.h │ │ │ │ ├── DeadArgumentElimination.h │ │ │ │ ├── ElimAvailExtern.h │ │ │ │ ├── EmbedBitcodePass.h │ │ │ │ ├── ExtractGV.h │ │ │ │ ├── ForceFunctionAttrs.h │ │ │ │ ├── FunctionAttrs.h │ │ │ │ ├── FunctionImport.h │ │ │ │ ├── FunctionSpecialization.h │ │ │ │ ├── GlobalDCE.h │ │ │ │ ├── GlobalOpt.h │ │ │ │ ├── GlobalSplit.h │ │ │ │ ├── HotColdSplitting.h │ │ │ │ ├── IROutliner.h │ │ │ │ ├── InferFunctionAttrs.h │ │ │ │ ├── Inliner.h │ │ │ │ ├── Internalize.h │ │ │ │ ├── LoopExtractor.h │ │ │ │ ├── LowerTypeTests.h │ │ │ │ ├── MemProfContextDisambiguation.h │ │ │ │ ├── MergeFunctions.h │ │ │ │ ├── ModuleInliner.h │ │ │ │ ├── OpenMPOpt.h │ │ │ │ ├── PartialInlining.h │ │ │ │ ├── ProfiledCallGraph.h │ │ │ │ ├── SCCP.h │ │ │ │ ├── SampleContextTracker.h │ │ │ │ ├── SampleProfile.h │ │ │ │ ├── SampleProfileProbe.h │ │ │ │ ├── StripDeadPrototypes.h │ │ │ │ ├── StripSymbols.h │ │ │ │ ├── SyntheticCountsPropagation.h │ │ │ │ ├── ThinLTOBitcodeWriter.h │ │ │ │ └── WholeProgramDevirt.h │ │ │ ├── InstCombine │ │ │ │ ├── InstCombine.h │ │ │ │ └── InstCombiner.h │ │ │ ├── Instrumentation.h │ │ │ ├── Instrumentation │ │ │ │ ├── AddressSanitizer.h │ │ │ │ ├── AddressSanitizerCommon.h │ │ │ │ ├── AddressSanitizerOptions.h │ │ │ │ ├── BlockCoverageInference.h │ │ │ │ ├── BoundsChecking.h │ │ │ │ ├── CFGMST.h │ │ │ │ ├── CGProfile.h │ │ │ │ ├── ControlHeightReduction.h │ │ │ │ ├── DataFlowSanitizer.h │ │ │ │ ├── GCOVProfiler.h │ │ │ │ ├── HWAddressSanitizer.h │ │ │ │ ├── InstrOrderFile.h │ │ │ │ ├── InstrProfiling.h │ │ │ │ ├── KCFI.h │ │ │ │ ├── MemProfiler.h │ │ │ │ ├── MemorySanitizer.h │ │ │ │ ├── PGOInstrumentation.h │ │ │ │ ├── PoisonChecking.h │ │ │ │ ├── SanitizerBinaryMetadata.h │ │ │ │ ├── SanitizerCoverage.h │ │ │ │ └── ThreadSanitizer.h │ │ │ ├── ObjCARC.h │ │ │ ├── Scalar.h │ │ │ ├── Scalar │ │ │ │ ├── ADCE.h │ │ │ │ ├── AlignmentFromAssumptions.h │ │ │ │ ├── AnnotationRemarks.h │ │ │ │ ├── BDCE.h │ │ │ │ ├── CallSiteSplitting.h │ │ │ │ ├── ConstantHoisting.h │ │ │ │ ├── ConstraintElimination.h │ │ │ │ ├── CorrelatedValuePropagation.h │ │ │ │ ├── DCE.h │ │ │ │ ├── DFAJumpThreading.h │ │ │ │ ├── DeadStoreElimination.h │ │ │ │ ├── DivRemPairs.h │ │ │ │ ├── EarlyCSE.h │ │ │ │ ├── FlattenCFG.h │ │ │ │ ├── Float2Int.h │ │ │ │ ├── GVN.h │ │ │ │ ├── GVNExpression.h │ │ │ │ ├── GuardWidening.h │ │ │ │ ├── IVUsersPrinter.h │ │ │ │ ├── IndVarSimplify.h │ │ │ │ ├── InductiveRangeCheckElimination.h │ │ │ │ ├── InferAddressSpaces.h │ │ │ │ ├── InferAlignment.h │ │ │ │ ├── InstSimplifyPass.h │ │ │ │ ├── JumpThreading.h │ │ │ │ ├── LICM.h │ │ │ │ ├── LoopAccessAnalysisPrinter.h │ │ │ │ ├── LoopBoundSplit.h │ │ │ │ ├── LoopDataPrefetch.h │ │ │ │ ├── LoopDeletion.h │ │ │ │ ├── LoopDistribute.h │ │ │ │ ├── LoopFlatten.h │ │ │ │ ├── LoopFuse.h │ │ │ │ ├── LoopIdiomRecognize.h │ │ │ │ ├── LoopInstSimplify.h │ │ │ │ ├── LoopInterchange.h │ │ │ │ ├── LoopLoadElimination.h │ │ │ │ ├── LoopPassManager.h │ │ │ │ ├── LoopPredication.h │ │ │ │ ├── LoopReroll.h │ │ │ │ ├── LoopRotation.h │ │ │ │ ├── LoopSimplifyCFG.h │ │ │ │ ├── LoopSink.h │ │ │ │ ├── LoopStrengthReduce.h │ │ │ │ ├── LoopUnrollAndJamPass.h │ │ │ │ ├── LoopUnrollPass.h │ │ │ │ ├── LoopVersioningLICM.h │ │ │ │ ├── LowerAtomicPass.h │ │ │ │ ├── LowerConstantIntrinsics.h │ │ │ │ ├── LowerExpectIntrinsic.h │ │ │ │ ├── LowerGuardIntrinsic.h │ │ │ │ ├── LowerMatrixIntrinsics.h │ │ │ │ ├── LowerWidenableCondition.h │ │ │ │ ├── MakeGuardsExplicit.h │ │ │ │ ├── MemCpyOptimizer.h │ │ │ │ ├── MergeICmps.h │ │ │ │ ├── MergedLoadStoreMotion.h │ │ │ │ ├── NaryReassociate.h │ │ │ │ ├── NewGVN.h │ │ │ │ ├── PartiallyInlineLibCalls.h │ │ │ │ ├── PlaceSafepoints.h │ │ │ │ ├── Reassociate.h │ │ │ │ ├── Reg2Mem.h │ │ │ │ ├── RewriteStatepointsForGC.h │ │ │ │ ├── SCCP.h │ │ │ │ ├── SROA.h │ │ │ │ ├── ScalarizeMaskedMemIntrin.h │ │ │ │ ├── Scalarizer.h │ │ │ │ ├── SeparateConstOffsetFromGEP.h │ │ │ │ ├── SimpleLoopUnswitch.h │ │ │ │ ├── SimplifyCFG.h │ │ │ │ ├── Sink.h │ │ │ │ ├── SpeculativeExecution.h │ │ │ │ ├── StraightLineStrengthReduce.h │ │ │ │ ├── StructurizeCFG.h │ │ │ │ ├── TLSVariableHoist.h │ │ │ │ ├── TailRecursionElimination.h │ │ │ │ └── WarnMissedTransforms.h │ │ │ ├── Utils.h │ │ │ ├── Utils │ │ │ │ ├── AMDGPUEmitPrintf.h │ │ │ │ ├── ASanStackFrameLayout.h │ │ │ │ ├── AddDiscriminators.h │ │ │ │ ├── AssumeBundleBuilder.h │ │ │ │ ├── BasicBlockUtils.h │ │ │ │ ├── BreakCriticalEdges.h │ │ │ │ ├── BuildLibCalls.h │ │ │ │ ├── BypassSlowDivision.h │ │ │ │ ├── CallGraphUpdater.h │ │ │ │ ├── CallPromotionUtils.h │ │ │ │ ├── CanonicalizeAliases.h │ │ │ │ ├── CanonicalizeFreezeInLoops.h │ │ │ │ ├── Cloning.h │ │ │ │ ├── CodeExtractor.h │ │ │ │ ├── CodeLayout.h │ │ │ │ ├── CodeMoverUtils.h │ │ │ │ ├── CountVisits.h │ │ │ │ ├── CtorUtils.h │ │ │ │ ├── DXILUpgrade.h │ │ │ │ ├── Debugify.h │ │ │ │ ├── EntryExitInstrumenter.h │ │ │ │ ├── EscapeEnumerator.h │ │ │ │ ├── Evaluator.h │ │ │ │ ├── FixIrreducible.h │ │ │ │ ├── FunctionComparator.h │ │ │ │ ├── FunctionImportUtils.h │ │ │ │ ├── GlobalStatus.h │ │ │ │ ├── GuardUtils.h │ │ │ │ ├── HelloWorld.h │ │ │ │ ├── InjectTLIMappings.h │ │ │ │ ├── InstructionNamer.h │ │ │ │ ├── InstructionWorklist.h │ │ │ │ ├── IntegerDivision.h │ │ │ │ ├── LCSSA.h │ │ │ │ ├── LibCallsShrinkWrap.h │ │ │ │ ├── Local.h │ │ │ │ ├── LoopConstrainer.h │ │ │ │ ├── LoopPeel.h │ │ │ │ ├── LoopRotationUtils.h │ │ │ │ ├── LoopSimplify.h │ │ │ │ ├── LoopUtils.h │ │ │ │ ├── LoopVersioning.h │ │ │ │ ├── LowerAtomic.h │ │ │ │ ├── LowerGlobalDtors.h │ │ │ │ ├── LowerIFunc.h │ │ │ │ ├── LowerInvoke.h │ │ │ │ ├── LowerMemIntrinsics.h │ │ │ │ ├── LowerSwitch.h │ │ │ │ ├── MatrixUtils.h │ │ │ │ ├── Mem2Reg.h │ │ │ │ ├── MemoryOpRemark.h │ │ │ │ ├── MemoryTaggingSupport.h │ │ │ │ ├── MetaRenamer.h │ │ │ │ ├── MisExpect.h │ │ │ │ ├── ModuleUtils.h │ │ │ │ ├── MoveAutoInit.h │ │ │ │ ├── NameAnonGlobals.h │ │ │ │ ├── PredicateInfo.h │ │ │ │ ├── PromoteMemToReg.h │ │ │ │ ├── RelLookupTableConverter.h │ │ │ │ ├── SCCPSolver.h │ │ │ │ ├── SSAUpdater.h │ │ │ │ ├── SSAUpdaterBulk.h │ │ │ │ ├── SSAUpdaterImpl.h │ │ │ │ ├── SampleProfileInference.h │ │ │ │ ├── SampleProfileLoaderBaseImpl.h │ │ │ │ ├── SampleProfileLoaderBaseUtil.h │ │ │ │ ├── SanitizerStats.h │ │ │ │ ├── ScalarEvolutionExpander.h │ │ │ │ ├── SimplifyCFGOptions.h │ │ │ │ ├── SimplifyIndVar.h │ │ │ │ ├── SimplifyLibCalls.h │ │ │ │ ├── SizeOpts.h │ │ │ │ ├── SplitModule.h │ │ │ │ ├── StripGCRelocates.h │ │ │ │ ├── StripNonLineTableDebugInfo.h │ │ │ │ ├── SymbolRewriter.h │ │ │ │ ├── UnifyFunctionExitNodes.h │ │ │ │ ├── UnifyLoopExits.h │ │ │ │ ├── UnrollLoop.h │ │ │ │ ├── VNCoercion.h │ │ │ │ └── ValueMapper.h │ │ │ └── Vectorize │ │ │ │ ├── LoadStoreVectorizer.h │ │ │ │ ├── LoopVectorizationLegality.h │ │ │ │ ├── LoopVectorize.h │ │ │ │ ├── SLPVectorizer.h │ │ │ │ └── VectorCombine.h │ │ │ ├── WindowsDriver │ │ │ ├── MSVCPaths.h │ │ │ └── MSVCSetupApi.h │ │ │ ├── WindowsManifest │ │ │ └── WindowsManifestMerger.h │ │ │ ├── WindowsResource │ │ │ ├── ResourceProcessor.h │ │ │ ├── ResourceScriptToken.h │ │ │ └── ResourceScriptTokenList.h │ │ │ └── XRay │ │ │ ├── BlockIndexer.h │ │ │ ├── BlockPrinter.h │ │ │ ├── BlockVerifier.h │ │ │ ├── FDRLogBuilder.h │ │ │ ├── FDRRecordConsumer.h │ │ │ ├── FDRRecordProducer.h │ │ │ ├── FDRRecords.h │ │ │ ├── FDRTraceExpander.h │ │ │ ├── FDRTraceWriter.h │ │ │ ├── FileHeaderReader.h │ │ │ ├── Graph.h │ │ │ ├── InstrumentationMap.h │ │ │ ├── Profile.h │ │ │ ├── RecordPrinter.h │ │ │ ├── Trace.h │ │ │ ├── XRayRecord.h │ │ │ └── YAMLXRayRecord.h │ │ ├── lib │ │ ├── LLVM-C.exp │ │ ├── LLVM-C.lib │ │ ├── LTO.exp │ │ ├── LTO.lib │ │ ├── RelWithDebInfo │ │ │ ├── cling-demo.exp │ │ │ └── cling-demo.lib │ │ ├── Remarks.exp │ │ ├── Remarks.lib │ │ ├── clang │ │ │ ├── 16 │ │ │ │ └── include │ │ │ │ │ ├── __clang_cuda_builtin_vars.h │ │ │ │ │ ├── __clang_cuda_cmath.h │ │ │ │ │ ├── __clang_cuda_complex_builtins.h │ │ │ │ │ ├── __clang_cuda_device_functions.h │ │ │ │ │ ├── __clang_cuda_intrinsics.h │ │ │ │ │ ├── __clang_cuda_libdevice_declares.h │ │ │ │ │ ├── __clang_cuda_math.h │ │ │ │ │ ├── __clang_cuda_math_forward_declares.h │ │ │ │ │ ├── __clang_cuda_runtime_wrapper.h │ │ │ │ │ ├── __clang_cuda_texture_intrinsics.h │ │ │ │ │ ├── __clang_hip_cmath.h │ │ │ │ │ ├── __clang_hip_libdevice_declares.h │ │ │ │ │ ├── __clang_hip_math.h │ │ │ │ │ ├── __clang_hip_runtime_wrapper.h │ │ │ │ │ ├── __clang_hip_stdlib.h │ │ │ │ │ ├── __stddef_max_align_t.h │ │ │ │ │ ├── __wmmintrin_aes.h │ │ │ │ │ ├── __wmmintrin_pclmul.h │ │ │ │ │ ├── adxintrin.h │ │ │ │ │ ├── altivec.h │ │ │ │ │ ├── ammintrin.h │ │ │ │ │ ├── amxfp16intrin.h │ │ │ │ │ ├── amxintrin.h │ │ │ │ │ ├── arm64intr.h │ │ │ │ │ ├── arm_acle.h │ │ │ │ │ ├── arm_cmse.h │ │ │ │ │ ├── arm_neon_sve_bridge.h │ │ │ │ │ ├── armintr.h │ │ │ │ │ ├── avx2intrin.h │ │ │ │ │ ├── avx512bf16intrin.h │ │ │ │ │ ├── avx512bitalgintrin.h │ │ │ │ │ ├── avx512bwintrin.h │ │ │ │ │ ├── avx512cdintrin.h │ │ │ │ │ ├── avx512dqintrin.h │ │ │ │ │ ├── avx512erintrin.h │ │ │ │ │ ├── avx512fintrin.h │ │ │ │ │ ├── avx512fp16intrin.h │ │ │ │ │ ├── avx512ifmaintrin.h │ │ │ │ │ ├── avx512ifmavlintrin.h │ │ │ │ │ ├── avx512pfintrin.h │ │ │ │ │ ├── avx512vbmi2intrin.h │ │ │ │ │ ├── avx512vbmiintrin.h │ │ │ │ │ ├── avx512vbmivlintrin.h │ │ │ │ │ ├── avx512vlbf16intrin.h │ │ │ │ │ ├── avx512vlbitalgintrin.h │ │ │ │ │ ├── avx512vlbwintrin.h │ │ │ │ │ ├── avx512vlcdintrin.h │ │ │ │ │ ├── avx512vldqintrin.h │ │ │ │ │ ├── avx512vlfp16intrin.h │ │ │ │ │ ├── avx512vlintrin.h │ │ │ │ │ ├── avx512vlvbmi2intrin.h │ │ │ │ │ ├── avx512vlvnniintrin.h │ │ │ │ │ ├── avx512vlvp2intersectintrin.h │ │ │ │ │ ├── avx512vnniintrin.h │ │ │ │ │ ├── avx512vp2intersectintrin.h │ │ │ │ │ ├── avx512vpopcntdqintrin.h │ │ │ │ │ ├── avx512vpopcntdqvlintrin.h │ │ │ │ │ ├── avxifmaintrin.h │ │ │ │ │ ├── avxintrin.h │ │ │ │ │ ├── avxneconvertintrin.h │ │ │ │ │ ├── avxvnniint8intrin.h │ │ │ │ │ ├── avxvnniintrin.h │ │ │ │ │ ├── bmi2intrin.h │ │ │ │ │ ├── bmiintrin.h │ │ │ │ │ ├── builtins.h │ │ │ │ │ ├── cet.h │ │ │ │ │ ├── cetintrin.h │ │ │ │ │ ├── cldemoteintrin.h │ │ │ │ │ ├── clflushoptintrin.h │ │ │ │ │ ├── clwbintrin.h │ │ │ │ │ ├── clzerointrin.h │ │ │ │ │ ├── cmpccxaddintrin.h │ │ │ │ │ ├── cpuid.h │ │ │ │ │ ├── crc32intrin.h │ │ │ │ │ ├── cuda_wrappers │ │ │ │ │ ├── algorithm │ │ │ │ │ ├── cmath │ │ │ │ │ ├── complex │ │ │ │ │ └── new │ │ │ │ │ ├── emmintrin.h │ │ │ │ │ ├── enqcmdintrin.h │ │ │ │ │ ├── f16cintrin.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── fma4intrin.h │ │ │ │ │ ├── fmaintrin.h │ │ │ │ │ ├── fxsrintrin.h │ │ │ │ │ ├── gfniintrin.h │ │ │ │ │ ├── hexagon_circ_brev_intrinsics.h │ │ │ │ │ ├── hexagon_protos.h │ │ │ │ │ ├── hexagon_types.h │ │ │ │ │ ├── hlsl.h │ │ │ │ │ ├── hlsl │ │ │ │ │ ├── hlsl_basic_types.h │ │ │ │ │ └── hlsl_intrinsics.h │ │ │ │ │ ├── hresetintrin.h │ │ │ │ │ ├── htmintrin.h │ │ │ │ │ ├── htmxlintrin.h │ │ │ │ │ ├── hvx_hexagon_protos.h │ │ │ │ │ ├── ia32intrin.h │ │ │ │ │ ├── immintrin.h │ │ │ │ │ ├── intrin.h │ │ │ │ │ ├── inttypes.h │ │ │ │ │ ├── invpcidintrin.h │ │ │ │ │ ├── iso646.h │ │ │ │ │ ├── keylockerintrin.h │ │ │ │ │ ├── larchintrin.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── lwpintrin.h │ │ │ │ │ ├── lzcntintrin.h │ │ │ │ │ ├── mm3dnow.h │ │ │ │ │ ├── mm_malloc.h │ │ │ │ │ ├── mmintrin.h │ │ │ │ │ ├── module.modulemap │ │ │ │ │ ├── movdirintrin.h │ │ │ │ │ ├── msa.h │ │ │ │ │ ├── mwaitxintrin.h │ │ │ │ │ ├── nmmintrin.h │ │ │ │ │ ├── opencl-c-base.h │ │ │ │ │ ├── opencl-c.h │ │ │ │ │ ├── openmp_wrappers │ │ │ │ │ ├── __clang_openmp_device_functions.h │ │ │ │ │ ├── cmath │ │ │ │ │ ├── complex │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── complex_cmath.h │ │ │ │ │ ├── math.h │ │ │ │ │ └── new │ │ │ │ │ ├── pconfigintrin.h │ │ │ │ │ ├── pkuintrin.h │ │ │ │ │ ├── pmmintrin.h │ │ │ │ │ ├── popcntintrin.h │ │ │ │ │ ├── ppc_wrappers │ │ │ │ │ ├── bmi2intrin.h │ │ │ │ │ ├── bmiintrin.h │ │ │ │ │ ├── emmintrin.h │ │ │ │ │ ├── immintrin.h │ │ │ │ │ ├── mm_malloc.h │ │ │ │ │ ├── mmintrin.h │ │ │ │ │ ├── pmmintrin.h │ │ │ │ │ ├── smmintrin.h │ │ │ │ │ ├── tmmintrin.h │ │ │ │ │ ├── x86gprintrin.h │ │ │ │ │ ├── x86intrin.h │ │ │ │ │ └── xmmintrin.h │ │ │ │ │ ├── prfchiintrin.h │ │ │ │ │ ├── prfchwintrin.h │ │ │ │ │ ├── ptwriteintrin.h │ │ │ │ │ ├── raointintrin.h │ │ │ │ │ ├── rdpruintrin.h │ │ │ │ │ ├── rdseedintrin.h │ │ │ │ │ ├── rtmintrin.h │ │ │ │ │ ├── s390intrin.h │ │ │ │ │ ├── serializeintrin.h │ │ │ │ │ ├── sgxintrin.h │ │ │ │ │ ├── shaintrin.h │ │ │ │ │ ├── smmintrin.h │ │ │ │ │ ├── stdalign.h │ │ │ │ │ ├── stdarg.h │ │ │ │ │ ├── stdatomic.h │ │ │ │ │ ├── stdbool.h │ │ │ │ │ ├── stddef.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ ├── stdnoreturn.h │ │ │ │ │ ├── tbmintrin.h │ │ │ │ │ ├── tgmath.h │ │ │ │ │ ├── tmmintrin.h │ │ │ │ │ ├── tsxldtrkintrin.h │ │ │ │ │ ├── uintrintrin.h │ │ │ │ │ ├── unwind.h │ │ │ │ │ ├── vadefs.h │ │ │ │ │ ├── vaesintrin.h │ │ │ │ │ ├── varargs.h │ │ │ │ │ ├── vecintrin.h │ │ │ │ │ ├── velintrin.h │ │ │ │ │ ├── velintrin_approx.h │ │ │ │ │ ├── velintrin_gen.h │ │ │ │ │ ├── vpclmulqdqintrin.h │ │ │ │ │ ├── waitpkgintrin.h │ │ │ │ │ ├── wasm_simd128.h │ │ │ │ │ ├── wbnoinvdintrin.h │ │ │ │ │ ├── wmmintrin.h │ │ │ │ │ ├── x86gprintrin.h │ │ │ │ │ ├── x86intrin.h │ │ │ │ │ ├── xmmintrin.h │ │ │ │ │ ├── xopintrin.h │ │ │ │ │ ├── xsavecintrin.h │ │ │ │ │ ├── xsaveintrin.h │ │ │ │ │ ├── xsaveoptintrin.h │ │ │ │ │ ├── xsavesintrin.h │ │ │ │ │ └── xtestintrin.h │ │ │ └── 18 │ │ │ │ └── include │ │ │ │ ├── __clang_cuda_builtin_vars.h │ │ │ │ ├── __clang_cuda_cmath.h │ │ │ │ ├── __clang_cuda_complex_builtins.h │ │ │ │ ├── __clang_cuda_device_functions.h │ │ │ │ ├── __clang_cuda_intrinsics.h │ │ │ │ ├── __clang_cuda_libdevice_declares.h │ │ │ │ ├── __clang_cuda_math.h │ │ │ │ ├── __clang_cuda_math_forward_declares.h │ │ │ │ ├── __clang_cuda_runtime_wrapper.h │ │ │ │ ├── __clang_cuda_texture_intrinsics.h │ │ │ │ ├── __clang_hip_cmath.h │ │ │ │ ├── __clang_hip_libdevice_declares.h │ │ │ │ ├── __clang_hip_math.h │ │ │ │ ├── __clang_hip_runtime_wrapper.h │ │ │ │ ├── __clang_hip_stdlib.h │ │ │ │ ├── __stdarg___gnuc_va_list.h │ │ │ │ ├── __stdarg___va_copy.h │ │ │ │ ├── __stdarg_va_arg.h │ │ │ │ ├── __stdarg_va_copy.h │ │ │ │ ├── __stdarg_va_list.h │ │ │ │ ├── __stddef_max_align_t.h │ │ │ │ ├── __stddef_null.h │ │ │ │ ├── __stddef_nullptr_t.h │ │ │ │ ├── __stddef_offsetof.h │ │ │ │ ├── __stddef_ptrdiff_t.h │ │ │ │ ├── __stddef_rsize_t.h │ │ │ │ ├── __stddef_size_t.h │ │ │ │ ├── __stddef_unreachable.h │ │ │ │ ├── __stddef_wchar_t.h │ │ │ │ ├── __stddef_wint_t.h │ │ │ │ ├── __wmmintrin_aes.h │ │ │ │ ├── __wmmintrin_pclmul.h │ │ │ │ ├── adcintrin.h │ │ │ │ ├── adxintrin.h │ │ │ │ ├── altivec.h │ │ │ │ ├── ammintrin.h │ │ │ │ ├── amxcomplexintrin.h │ │ │ │ ├── amxfp16intrin.h │ │ │ │ ├── amxintrin.h │ │ │ │ ├── arm64intr.h │ │ │ │ ├── arm_acle.h │ │ │ │ ├── arm_cmse.h │ │ │ │ ├── arm_neon_sve_bridge.h │ │ │ │ ├── armintr.h │ │ │ │ ├── avx2intrin.h │ │ │ │ ├── avx512bf16intrin.h │ │ │ │ ├── avx512bitalgintrin.h │ │ │ │ ├── avx512bwintrin.h │ │ │ │ ├── avx512cdintrin.h │ │ │ │ ├── avx512dqintrin.h │ │ │ │ ├── avx512erintrin.h │ │ │ │ ├── avx512fintrin.h │ │ │ │ ├── avx512fp16intrin.h │ │ │ │ ├── avx512ifmaintrin.h │ │ │ │ ├── avx512ifmavlintrin.h │ │ │ │ ├── avx512pfintrin.h │ │ │ │ ├── avx512vbmi2intrin.h │ │ │ │ ├── avx512vbmiintrin.h │ │ │ │ ├── avx512vbmivlintrin.h │ │ │ │ ├── avx512vlbf16intrin.h │ │ │ │ ├── avx512vlbitalgintrin.h │ │ │ │ ├── avx512vlbwintrin.h │ │ │ │ ├── avx512vlcdintrin.h │ │ │ │ ├── avx512vldqintrin.h │ │ │ │ ├── avx512vlfp16intrin.h │ │ │ │ ├── avx512vlintrin.h │ │ │ │ ├── avx512vlvbmi2intrin.h │ │ │ │ ├── avx512vlvnniintrin.h │ │ │ │ ├── avx512vlvp2intersectintrin.h │ │ │ │ ├── avx512vnniintrin.h │ │ │ │ ├── avx512vp2intersectintrin.h │ │ │ │ ├── avx512vpopcntdqintrin.h │ │ │ │ ├── avx512vpopcntdqvlintrin.h │ │ │ │ ├── avxifmaintrin.h │ │ │ │ ├── avxintrin.h │ │ │ │ ├── avxneconvertintrin.h │ │ │ │ ├── avxvnniint16intrin.h │ │ │ │ ├── avxvnniint8intrin.h │ │ │ │ ├── avxvnniintrin.h │ │ │ │ ├── bmi2intrin.h │ │ │ │ ├── bmiintrin.h │ │ │ │ ├── builtins.h │ │ │ │ ├── cet.h │ │ │ │ ├── cetintrin.h │ │ │ │ ├── cldemoteintrin.h │ │ │ │ ├── clflushoptintrin.h │ │ │ │ ├── clwbintrin.h │ │ │ │ ├── clzerointrin.h │ │ │ │ ├── cmpccxaddintrin.h │ │ │ │ ├── cpuid.h │ │ │ │ ├── crc32intrin.h │ │ │ │ ├── cuda_wrappers │ │ │ │ ├── algorithm │ │ │ │ ├── bits │ │ │ │ │ ├── basic_string.h │ │ │ │ │ ├── basic_string.tcc │ │ │ │ │ └── shared_ptr_base.h │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ └── new │ │ │ │ ├── emmintrin.h │ │ │ │ ├── enqcmdintrin.h │ │ │ │ ├── f16cintrin.h │ │ │ │ ├── float.h │ │ │ │ ├── fma4intrin.h │ │ │ │ ├── fmaintrin.h │ │ │ │ ├── fxsrintrin.h │ │ │ │ ├── gfniintrin.h │ │ │ │ ├── hexagon_circ_brev_intrinsics.h │ │ │ │ ├── hexagon_protos.h │ │ │ │ ├── hexagon_types.h │ │ │ │ ├── hlsl.h │ │ │ │ ├── hlsl │ │ │ │ ├── hlsl_basic_types.h │ │ │ │ └── hlsl_intrinsics.h │ │ │ │ ├── hresetintrin.h │ │ │ │ ├── htmintrin.h │ │ │ │ ├── htmxlintrin.h │ │ │ │ ├── hvx_hexagon_protos.h │ │ │ │ ├── ia32intrin.h │ │ │ │ ├── immintrin.h │ │ │ │ ├── intrin.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── invpcidintrin.h │ │ │ │ ├── iso646.h │ │ │ │ ├── keylockerintrin.h │ │ │ │ ├── larchintrin.h │ │ │ │ ├── lasxintrin.h │ │ │ │ ├── limits.h │ │ │ │ ├── llvm_libc_wrappers │ │ │ │ ├── assert.h │ │ │ │ ├── ctype.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ └── time.h │ │ │ │ ├── lsxintrin.h │ │ │ │ ├── lwpintrin.h │ │ │ │ ├── lzcntintrin.h │ │ │ │ ├── mm3dnow.h │ │ │ │ ├── mm_malloc.h │ │ │ │ ├── mmintrin.h │ │ │ │ ├── module.modulemap │ │ │ │ ├── movdirintrin.h │ │ │ │ ├── msa.h │ │ │ │ ├── mwaitxintrin.h │ │ │ │ ├── nmmintrin.h │ │ │ │ ├── opencl-c-base.h │ │ │ │ ├── opencl-c.h │ │ │ │ ├── openmp_wrappers │ │ │ │ ├── __clang_openmp_device_functions.h │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── complex.h │ │ │ │ ├── complex_cmath.h │ │ │ │ ├── math.h │ │ │ │ └── new │ │ │ │ ├── pconfigintrin.h │ │ │ │ ├── pkuintrin.h │ │ │ │ ├── pmmintrin.h │ │ │ │ ├── popcntintrin.h │ │ │ │ ├── ppc_wrappers │ │ │ │ ├── bmi2intrin.h │ │ │ │ ├── bmiintrin.h │ │ │ │ ├── emmintrin.h │ │ │ │ ├── immintrin.h │ │ │ │ ├── mm_malloc.h │ │ │ │ ├── mmintrin.h │ │ │ │ ├── nmmintrin.h │ │ │ │ ├── pmmintrin.h │ │ │ │ ├── smmintrin.h │ │ │ │ ├── tmmintrin.h │ │ │ │ ├── x86gprintrin.h │ │ │ │ ├── x86intrin.h │ │ │ │ └── xmmintrin.h │ │ │ │ ├── prfchiintrin.h │ │ │ │ ├── prfchwintrin.h │ │ │ │ ├── ptwriteintrin.h │ │ │ │ ├── raointintrin.h │ │ │ │ ├── rdpruintrin.h │ │ │ │ ├── rdseedintrin.h │ │ │ │ ├── riscv_bitmanip.h │ │ │ │ ├── riscv_crypto.h │ │ │ │ ├── riscv_ntlh.h │ │ │ │ ├── rtmintrin.h │ │ │ │ ├── s390intrin.h │ │ │ │ ├── serializeintrin.h │ │ │ │ ├── sgxintrin.h │ │ │ │ ├── sha512intrin.h │ │ │ │ ├── shaintrin.h │ │ │ │ ├── sifive_vector.h │ │ │ │ ├── sm3intrin.h │ │ │ │ ├── sm4intrin.h │ │ │ │ ├── smmintrin.h │ │ │ │ ├── stdalign.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdatomic.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stdckdint.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdnoreturn.h │ │ │ │ ├── tbmintrin.h │ │ │ │ ├── tgmath.h │ │ │ │ ├── tmmintrin.h │ │ │ │ ├── tsxldtrkintrin.h │ │ │ │ ├── uintrintrin.h │ │ │ │ ├── unwind.h │ │ │ │ ├── usermsrintrin.h │ │ │ │ ├── vadefs.h │ │ │ │ ├── vaesintrin.h │ │ │ │ ├── varargs.h │ │ │ │ ├── vecintrin.h │ │ │ │ ├── velintrin.h │ │ │ │ ├── velintrin_approx.h │ │ │ │ ├── velintrin_gen.h │ │ │ │ ├── vpclmulqdqintrin.h │ │ │ │ ├── waitpkgintrin.h │ │ │ │ ├── wasm_simd128.h │ │ │ │ ├── wbnoinvdintrin.h │ │ │ │ ├── wmmintrin.h │ │ │ │ ├── x86gprintrin.h │ │ │ │ ├── x86intrin.h │ │ │ │ ├── xmmintrin.h │ │ │ │ ├── xopintrin.h │ │ │ │ ├── xsavecintrin.h │ │ │ │ ├── xsaveintrin.h │ │ │ │ ├── xsaveoptintrin.h │ │ │ │ ├── xsavesintrin.h │ │ │ │ └── xtestintrin.h │ │ ├── libclang.exp │ │ ├── libclang.lib │ │ ├── libcling.exp │ │ ├── libcling.lib │ │ ├── libclingJupyter.exp │ │ └── libclingJupyter.lib │ │ ├── libllvm-c.args │ │ └── libllvm-c.exports └── UEClingIncludePaths │ ├── .editorconfig │ ├── JsonGenerator.cs │ └── UEClingIncludePathsPlugin.ubtplugin.csproj └── UECling.uplugin /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/EBP_RunCppScript_Example.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Content/EBP_RunCppScript_Example.uasset -------------------------------------------------------------------------------- /Content/EBP_RunCppScript_Math.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Content/EBP_RunCppScript_Math.uasset -------------------------------------------------------------------------------- /Content/MemberStruct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Content/MemberStruct.uasset -------------------------------------------------------------------------------- /Content/OtherBlueprint.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Content/OtherBlueprint.uasset -------------------------------------------------------------------------------- /Content/TestBPStruct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Content/TestBPStruct.uasset -------------------------------------------------------------------------------- /Resources/Font/DroidSans.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/Font/DroidSans.tps -------------------------------------------------------------------------------- /Resources/Font/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/Font/DroidSansMono.ttf -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/UI/CodeEditor_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/CodeEditor_16x.png -------------------------------------------------------------------------------- /Resources/UI/FolderClosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/FolderClosed.png -------------------------------------------------------------------------------- /Resources/UI/FolderOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/FolderOpen.png -------------------------------------------------------------------------------- /Resources/UI/GenericFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/GenericFile.png -------------------------------------------------------------------------------- /Resources/UI/SaveAll_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/SaveAll_40x.png -------------------------------------------------------------------------------- /Resources/UI/Save_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/Save_40x.png -------------------------------------------------------------------------------- /Resources/UI/TextBlockHighlightShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/TextBlockHighlightShape.png -------------------------------------------------------------------------------- /Resources/UI/TextEditorBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Resources/UI/TextEditorBorder.png -------------------------------------------------------------------------------- /Source/ClingEditor/ClingEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/ClingEditor.Build.cs -------------------------------------------------------------------------------- /Source/ClingEditor/Private/ClingCommandExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/ClingCommandExecutor.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/ClingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/ClingEditor.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/ClingEditorSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/ClingEditorSetting.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/CppHighLight/CodeEditorStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/CppHighLight/CodeEditorStyle.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/CppHighLight/SyntaxTextStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/CppHighLight/SyntaxTextStyle.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/Customization/CodeStringCustomization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/Customization/CodeStringCustomization.cpp -------------------------------------------------------------------------------- /Source/ClingEditor/Private/Customization/CodeStringCustomization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/Customization/CodeStringCustomization.h -------------------------------------------------------------------------------- /Source/ClingEditor/Private/PrivateAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Private/PrivateAccessor.hpp -------------------------------------------------------------------------------- /Source/ClingEditor/Public/ClingCommandExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Public/ClingCommandExecutor.h -------------------------------------------------------------------------------- /Source/ClingEditor/Public/ClingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Public/ClingEditor.h -------------------------------------------------------------------------------- /Source/ClingEditor/Public/ClingEditorSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Public/ClingEditorSetting.h -------------------------------------------------------------------------------- /Source/ClingEditor/Public/CppHighLight/CodeEditorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Public/CppHighLight/CodeEditorStyle.h -------------------------------------------------------------------------------- /Source/ClingEditor/Public/CppHighLight/SyntaxTextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingEditor/Public/CppHighLight/SyntaxTextStyle.h -------------------------------------------------------------------------------- /Source/ClingKismet/ClingKismet.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/ClingKismet.Build.cs -------------------------------------------------------------------------------- /Source/ClingKismet/Private/ClingKismet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Private/ClingKismet.cpp -------------------------------------------------------------------------------- /Source/ClingKismet/Private/K2Node_ExecuteCppScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Private/K2Node_ExecuteCppScript.cpp -------------------------------------------------------------------------------- /Source/ClingKismet/Private/RecoverCodeGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Private/RecoverCodeGeneration.cpp -------------------------------------------------------------------------------- /Source/ClingKismet/Private/RecoverCodeGeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Private/RecoverCodeGeneration.h -------------------------------------------------------------------------------- /Source/ClingKismet/Public/ClingKismet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Public/ClingKismet.h -------------------------------------------------------------------------------- /Source/ClingKismet/Public/ClingScriptMarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Public/ClingScriptMarks.h -------------------------------------------------------------------------------- /Source/ClingKismet/Public/K2Node_ExecuteCppScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingKismet/Public/K2Node_ExecuteCppScript.h -------------------------------------------------------------------------------- /Source/ClingRuntime/ClingRuntime.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/ClingRuntime.Build.cs -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingBlueprintFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingBlueprintFunctionLibrary.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingLog/ClingLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingLog/ClingLog.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingLog/LogRedirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingLog/LogRedirector.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingLog/LogRedirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingLog/LogRedirector.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingRuntime.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/ClingSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/ClingSetting.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/CodeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/CodeString.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/MyTestInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/MyTestInterpreter.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Private/Registry/PtrRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Private/Registry/PtrRegistry.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/ClingBlueprintFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/ClingBlueprintFunctionLibrary.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/ClingLog/ClingLog.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "CoreMinimal.h" 4 | DECLARE_LOG_CATEGORY_EXTERN(LogCling, Log, All); -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/ClingRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/ClingRuntime.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/ClingSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/ClingSetting.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/CodeString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/CodeString.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/MyTestInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/MyTestInterpreter.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/Registry/PtrRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/Registry/PtrRegistry.h -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/TestStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/TestStatic.cpp -------------------------------------------------------------------------------- /Source/ClingRuntime/Public/TestStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingRuntime/Public/TestStatic.h -------------------------------------------------------------------------------- /Source/ClingScript/ClingScript.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingScript/ClingScript.Build.cs -------------------------------------------------------------------------------- /Source/ClingScript/Private/ClingScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingScript/Private/ClingScript.cpp -------------------------------------------------------------------------------- /Source/ClingScript/Public/ClingScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ClingScript/Public/ClingScript.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/ClingLibrary.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/ClingLibrary.Build.cs -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/ClingLibrary.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/ClingLibrary.tps -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/bin/cling-demo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/bin/cling-demo.dll -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/BuildSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/BuildSystem.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXDiagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXDiagnostic.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXErrorCode.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXFile.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXSourceLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXSourceLocation.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/CXString.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Documentation.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/ExternC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/ExternC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Index.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Platform.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang-c/Rewrite.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/APINotes/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/APINotes/Types.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/ARCMigrate/ARCMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/ARCMigrate/ARCMT.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/APValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/APValue.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AST.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTConcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTConcept.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTConsumer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTContext.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDiagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDiagnostic.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDumper.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDumperUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTDumperUtils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTFwd.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTImportError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTImportError.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTImporter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTLambda.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTTypeTraits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ASTVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Attr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AttrIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AttrIterator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AttrVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/AttrVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Availability.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/BaseSubobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/BaseSubobject.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/BuiltinTypes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/BuiltinTypes.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CXXInheritance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CXXInheritance.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CanonicalType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CanonicalType.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CharUnits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CharUnits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Comment.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentLexer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentParser.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentSema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentSema.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/CommentVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DataCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DataCollection.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Decl.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclAccessPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclAccessPair.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclBase.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclCXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclCXX.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclFriend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclFriend.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclGroup.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclLookups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclLookups.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclObjC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclObjCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclObjCCommon.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclOpenMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclOpenMP.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclTemplate.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/DeclVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Expr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprCXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprCXX.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprConcepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprConcepts.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprObjC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprOpenMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ExprOpenMP.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/FormatString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/FormatString.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/GlobalDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/GlobalDecl.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/IgnoreExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/IgnoreExpr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/JSONNodeDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/JSONNodeDumper.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/LambdaCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/LambdaCapture.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/LocInfoType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/LocInfoType.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Mangle.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/NSAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/NSAPI.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ODRHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ODRHash.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OSLog.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OpenMPClause.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OpenMPClause.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OperationKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/OperationKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ParentMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/ParentMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/PrettyPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/PrettyPrinter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/QualTypeNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/QualTypeNames.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Randstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Randstruct.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/RawCommentList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/RawCommentList.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/RecordLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/RecordLayout.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Redeclarable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Redeclarable.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Stmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Stmt.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtCXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtCXX.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtIterator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtObjC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtObjC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtOpenMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtOpenMP.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/StmtVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TemplateBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TemplateBase.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TemplateName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TemplateName.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TextNodeDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TextNodeDumper.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/Type.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLoc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLocNodes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLocNodes.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLocVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeLocVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeOrdering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeOrdering.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/TypeVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/UnresolvedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/UnresolvedSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/VTTBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/VTTBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/VTableBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/AST/VTableBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/AnyCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/AnyCall.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/BodyFarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/BodyFarm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/CFG.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/CallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/CallGraph.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/IssueHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Analysis/IssueHash.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ABI.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ASTNode.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ASTNode.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Attr.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Attr.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/AttrDocs.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/AttrDocs.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/AttrKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/AttrKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Attributes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/BitmaskEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/BitmaskEnum.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Builtins.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Builtins.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Builtins.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/BuiltinsVE.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/BuiltinsVE.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CLWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CLWarnings.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CapturedStmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CapturedStmt.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CharInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/CharInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Cuda.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/DeclNodes.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/DeclNodes.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Diagnostic.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Diagnostic.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Diagnostic.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FPOptions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FPOptions.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Features.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Features.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FileEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FileEntry.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/FileManager.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/HLSLRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/HLSLRuntime.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/JsonSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/JsonSupport.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LLVM.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Lambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Lambda.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LangOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LangOptions.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LangStandard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/LangStandard.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Linkage.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/MacroBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/MacroBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/MakeSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/MakeSupport.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Module.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ObjCRuntime.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/OpenACCKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/OpenACCKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/OpenMPKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/OpenMPKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PPCTypes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PPCTypes.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PlistSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PlistSupport.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PragmaKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/PragmaKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ProfileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/ProfileList.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sanitizers.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sanitizers.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sanitizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sanitizers.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sarif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Sarif.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Specifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Specifiers.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Stack.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/StmtNodes.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/StmtNodes.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/SyncScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/SyncScope.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetCXXABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetCXXABI.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetID.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TargetInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Thunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Thunk.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TokenKinds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TokenKinds.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TokenKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TokenKinds.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TypeNodes.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TypeNodes.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/TypeTraits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Version.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Version.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Version.inc.in -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/Visibility.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/XRayInstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/XRayInstr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/XRayLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/XRayLists.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_bf16.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_bf16.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_cde.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_cde.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_fp16.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_fp16.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_mve.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_mve.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_neon.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_neon.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_sme.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_sme.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_sve.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Basic/arm_sve.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Action.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Compilation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Compilation.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Distro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Distro.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Driver.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/InputInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/InputInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Job.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Multilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Multilib.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Options.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Options.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Options.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Phases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Phases.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Tool.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Types.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Types.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Types.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/Util.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/XRayArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Driver/XRayArgs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/Commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/Commit.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/FileOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/FileOffset.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/Rewriters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Edit/Rewriters.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/ExtractAPI/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/ExtractAPI/API.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Format/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Format/Format.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Frontend/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Frontend/Utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/HeaderMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/HeaderMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Lexer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/MacroArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/MacroArgs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/MacroInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/MacroInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/ModuleMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/ModuleMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/PPCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/PPCallbacks.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Pragma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Pragma.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/Token.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/TokenLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Lex/TokenLexer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/LoopHint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/LoopHint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/ParseAST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/ParseAST.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Parse/Parser.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/DeclSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/DeclSpec.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Designator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Designator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Lookup.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Overload.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Ownership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Ownership.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/ParsedAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/ParsedAttr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Scope.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/ScopeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/ScopeInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Sema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Sema.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/SemaLambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/SemaLambda.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Template.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Sema/Weak.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Testing/TestAST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Testing/TestAST.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Tooling/FixIt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Tooling/FixIt.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/clang/Tooling/Tooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/clang/Tooling/Tooling.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling-demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling-demo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/AST.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Casting.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Output.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Paths.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Platform.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/UTF8.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/Utils/Utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/boost.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/boost.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/cint/multimap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/cint/multimap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/cint/multiset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/cint/multiset -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/cuda.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/cuda.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/libc.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/libc.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/module.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/std.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/cling/std.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/cling/vc.modulemap: -------------------------------------------------------------------------------- 1 | module Vc { 2 | header "Vc/Vc" 3 | export * 4 | } 5 | -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Analysis.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/BitReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/BitReader.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/BitWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/BitWriter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Comdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Comdat.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Core.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/DataTypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/DebugInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Deprecated.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Disassembler.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Error.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/ErrorHandling.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/ExternC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/ExternC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/IRReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/IRReader.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/LLJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/LLJIT.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/LLJITUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/LLJITUtils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Linker.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Object.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Orc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Orc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/OrcEE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/OrcEE.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Remarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Remarks.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Support.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Target.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/TargetMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/TargetMachine.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/Types.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/blake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/blake3.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/lto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm-c/lto.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ADL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ADL.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APFixedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APFixedPoint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APFloat.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APInt.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APSInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/APSInt.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Any.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ArrayRef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/BitVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Bitfields.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/BitmaskEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/BitmaskEnum.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Bitset.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseMapInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/DenseSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/EpochTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/EpochTracker.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/FoldingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/FoldingSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/GraphTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/GraphTraits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Hashing.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ImmutableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ImmutableMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ImmutableSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ImmutableSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IndexedMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IndexedMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntEqClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntEqClasses.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntervalMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntervalMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntervalTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/IntervalTree.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/MapVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/MapVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PackedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PackedVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PagedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PagedVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PointerUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/PointerUnion.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SCCIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SCCIterator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/STLExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/STLExtras.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ScopeExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ScopeExit.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Sequence.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SetVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SetVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallPtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallPtrSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallString.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SmallVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/SparseSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Statistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Statistic.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringExtras.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringSet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/StringSwitch.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Twine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Twine.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/TypeSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/TypeSwitch.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Uniformity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/Uniformity.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/UniqueVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/UniqueVector.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/bit.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/identity.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist_base.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/ilist_node.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/iterator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/simple_ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ADT/simple_ilist.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/CFG.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/DDG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/DDG.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/EHUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/EHUtils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/IVUsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/IVUsers.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Lint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Lint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Loads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Loads.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Passes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Analysis/Trace.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/AsmParser/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/AsmParser/Parser.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/BinaryFormat/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/BinaryFormat/ELF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Analysis.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/CFIFixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/CFIFixup.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/DIE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/DIE.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/FastISel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/FastISel.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Passes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/RDFGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/RDFGraph.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Register.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Spiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/CodeGen/Spiller.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Config/Targets.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Config/Targets.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Config/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/DWP/DWP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/DWP/DWP.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/DWP/DWPError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/DWP/DWPError.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Demangle/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Demangle/Utility.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Argument.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Assumptions.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/AttributeMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/AttributeMask.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Attributes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Attributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Attributes.inc -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/AutoUpgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/AutoUpgrade.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/BasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/BasicBlock.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/BuiltinGCs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/BuiltinGCs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CFG.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CallingConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CallingConv.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Comdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Comdat.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Constant.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ConstantFold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ConstantFold.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ConstantRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ConstantRange.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Constants.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CycleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/CycleInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DIBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DIBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DataLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DataLayout.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DebugInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DebugLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DebugLoc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DerivedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DerivedTypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DerivedUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/DerivedUser.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Dominators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Dominators.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/FMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/FMF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/FPEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/FPEnv.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Function.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GCStrategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GCStrategy.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalAlias.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalIFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalIFunc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalObject.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/GlobalValue.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IRBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InlineAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InlineAsm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstIterator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstVisitor.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/InstrTypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instruction.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instruction.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instruction.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Instructions.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicInst.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Intrinsics.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsARM.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsBPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsBPF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsVE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsVE.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/IntrinsicsX86.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/LLVMContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/LLVMContext.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/MDBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/MDBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Mangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Mangler.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/MatrixBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/MatrixBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Metadata.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Metadata.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Metadata.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Module.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/NoFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/NoFolder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/OperandTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/OperandTraits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Operator.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/OptBisect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/OptBisect.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PassManager.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PatternMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PatternMatch.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PrintPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PrintPasses.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ProfDataUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ProfDataUtils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PseudoProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/PseudoProbe.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/SSAContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/SSAContext.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Statepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Statepoint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/TrackingMDRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/TrackingMDRef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Type.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/TypeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/TypeFinder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Use.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/UseListOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/UseListOrder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/User.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Value.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Value.def -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Value.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ValueHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ValueHandle.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ValueMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/ValueMap.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/VectorBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/VectorBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/IR/Verifier.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/InitializePasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/InitializePasses.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/Config.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/LTO.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/LTOBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LTO/LTOBackend.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LinkAllIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LinkAllIR.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LinkAllPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/LinkAllPasses.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Linker/IRMover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Linker/IRMover.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Linker/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Linker/Linker.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/ConstantPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/ConstantPools.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/LaneBitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/LaneBitmask.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmBackend.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoCOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoCOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoELF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoGOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoGOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoWasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmInfoWasm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmLayout.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAsmMacro.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAssembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCAssembler.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCCodeEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCCodeEmitter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCCodeView.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCContext.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDecoderOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDecoderOps.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDirectives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDirectives.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCDwarf.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCELFStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCELFStreamer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCExpr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCFixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCFixup.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCFragment.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInst.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstPrinter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstrDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstrDesc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCInstrInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCLabel.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCPseudoProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCPseudoProbe.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCRegister.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSchedule.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSection.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionCOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionCOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionELF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionGOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionGOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionWasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSectionWasm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCStreamer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbol.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolCOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolCOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolELF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolGOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolGOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolMachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolMachO.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolWasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolWasm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolXCOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCSymbolXCOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCValue.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCWin64EH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCWin64EH.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCWinEH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/MCWinEH.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/SectionKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MC/SectionKind.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/CodeEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/CodeEmitter.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Context.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/InstrBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/InstrBuilder.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Instruction.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Pipeline.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/SourceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/SourceMgr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Stages/Stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Stages/Stage.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/Support.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/MCA/View.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ObjCopy/ObjCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ObjCopy/ObjCopy.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Archive.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Binary.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/BuildID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/BuildID.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/COFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/COFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/ELF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/ELFTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/ELFTypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Error.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/GOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/GOFF.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/IRSymtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/IRSymtab.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/MachO.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Minidump.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/TapiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/TapiFile.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Object/Wasm.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ObjectYAML/YAML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ObjectYAML/YAML.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/Arg.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/ArgList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/ArgList.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/OptTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/OptTable.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/Option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Option/Option.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Pass.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassInfo.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassRegistry.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/PassSupport.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ProfileData/GCOV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/ProfileData/GCOV.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Remarks/Remark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Remarks/Remark.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ARMEHABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ARMEHABI.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ARMWinEH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ARMWinEH.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Atomic.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/BCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/BCD.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/BLAKE3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/BLAKE3.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Base64.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CFGDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CFGDiff.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/COM.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CRC.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Caching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Caching.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Capacity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Capacity.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Casting.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Chrono.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CodeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/CodeGen.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/DJB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/DJB.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Debug.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Duration.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Endian.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Errc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Errc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Errno.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Error.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ErrorOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ErrorOr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Format.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/InitLLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/InitLLVM.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/JSON.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/LEB128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/LEB128.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Locale.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/MD5.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/MemAlloc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Memory.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ModRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/ModRef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Mutex.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Parallel.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Path.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Process.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Program.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/RWMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/RWMutex.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Recycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Recycler.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Regex.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Registry.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SHA1.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SHA256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SHA256.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SMLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SMLoc.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SMTAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/SMTAPI.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Signals.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Timer.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/TypeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/TypeName.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/TypeSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/TypeSize.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Unicode.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Valgrind.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Watchdog.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Win64EH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/Win64EH.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/thread.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Support/xxhash.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Error.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Main.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Parser.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TableGen/Record.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Target/Target.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Target/Target.td -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Platform.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Record.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Symbol.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Target.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/TextAPI/Utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Transforms/IPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Transforms/IPO.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Transforms/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/Transforms/Utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/FDRRecords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/FDRRecords.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Graph.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Profile.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/Trace.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/XRayRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/include/llvm/XRay/XRayRecord.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/LLVM-C.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/LLVM-C.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/LLVM-C.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/LLVM-C.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/LTO.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/LTO.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/LTO.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/LTO.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/Remarks.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/Remarks.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/Remarks.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/Remarks.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/altivec.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/arm_acle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/arm_acle.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/arm_cmse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/arm_cmse.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/armintr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/armintr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/builtins.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/cet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/cet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/cpuid.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/float.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/hlsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/hlsl.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/intrin.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/inttypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/iso646.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/limits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/mm3dnow.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/mmintrin.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/msa.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/opencl-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/opencl-c.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdalign.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdarg.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdbool.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stddef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/stdint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/tgmath.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/unwind.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/vadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/vadefs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/16/include/varargs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/altivec.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/arm_acle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/arm_acle.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/arm_cmse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/arm_cmse.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/armintr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/armintr.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/builtins.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/cet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/cet.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/cpuid.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/float.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/hlsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/hlsl.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/intrin.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/inttypes.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/iso646.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/limits.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/mm3dnow.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/mmintrin.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/msa.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/opencl-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/opencl-c.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdalign.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdarg.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdbool.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stddef.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/stdint.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/tgmath.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/unwind.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/vadefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/vadefs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/clang/18/include/varargs.h -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libclang.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libclang.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libclang.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libclang.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libcling.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libcling.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libcling.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libcling.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libclingJupyter.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libclingJupyter.exp -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/lib/libclingJupyter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/lib/libclingJupyter.lib -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/libllvm-c.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/libllvm-c.args -------------------------------------------------------------------------------- /Source/ThirdParty/ClingLibrary/LLVM/libllvm-c.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/ThirdParty/ClingLibrary/LLVM/libllvm-c.exports -------------------------------------------------------------------------------- /Source/UEClingIncludePaths/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/UEClingIncludePaths/.editorconfig -------------------------------------------------------------------------------- /Source/UEClingIncludePaths/JsonGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/Source/UEClingIncludePaths/JsonGenerator.cs -------------------------------------------------------------------------------- /UECling.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evianaive/UECling/HEAD/UECling.uplugin --------------------------------------------------------------------------------