├── BitCodeInterpreter.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── jintao.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jintao.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── BitCodeInterpreter ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BitCodeInterpreter │ └── llvm │ │ ├── ADT │ │ ├── APFixedPoint.h │ │ ├── APFloat.h │ │ ├── APInt.h │ │ ├── APSInt.h │ │ ├── AllocatorList.h │ │ ├── Any.h │ │ ├── ArrayRef.h │ │ ├── BitVector.h │ │ ├── Bitfields.h │ │ ├── BitmaskEnum.h │ │ ├── BreadthFirstIterator.h │ │ ├── CachedHashString.h │ │ ├── CoalescingBitVector.h │ │ ├── DAGDeltaAlgorithm.h │ │ ├── DeltaAlgorithm.h │ │ ├── DenseMap.h │ │ ├── DenseMapInfo.h │ │ ├── DenseSet.h │ │ ├── DepthFirstIterator.h │ │ ├── DirectedGraph.h │ │ ├── EnumeratedArray.h │ │ ├── EpochTracker.h │ │ ├── EquivalenceClasses.h │ │ ├── FloatingPointMode.h │ │ ├── FoldingSet.h │ │ ├── FunctionExtras.h │ │ ├── GraphTraits.h │ │ ├── Hashing.h │ │ ├── ImmutableList.h │ │ ├── ImmutableMap.h │ │ ├── ImmutableSet.h │ │ ├── IndexedMap.h │ │ ├── IntEqClasses.h │ │ ├── IntervalMap.h │ │ ├── IntrusiveRefCntPtr.h │ │ ├── MapVector.h │ │ ├── None.h │ │ ├── Optional.h │ │ ├── PackedVector.h │ │ ├── PointerEmbeddedInt.h │ │ ├── PointerIntPair.h │ │ ├── PointerSumType.h │ │ ├── PointerUnion.h │ │ ├── PostOrderIterator.h │ │ ├── PriorityQueue.h │ │ ├── PriorityWorklist.h │ │ ├── SCCIterator.h │ │ ├── STLExtras.h │ │ ├── ScopeExit.h │ │ ├── ScopedHashTable.h │ │ ├── Sequence.h │ │ ├── SetOperations.h │ │ ├── SetVector.h │ │ ├── SmallBitVector.h │ │ ├── SmallPtrSet.h │ │ ├── SmallSet.h │ │ ├── SmallString.h │ │ ├── SmallVector.h │ │ ├── SparseBitVector.h │ │ ├── SparseMultiSet.h │ │ ├── SparseSet.h │ │ ├── Statistic.h │ │ ├── StringExtras.h │ │ ├── StringMap.h │ │ ├── StringMapEntry.h │ │ ├── StringRef.h │ │ ├── StringSet.h │ │ ├── StringSwitch.h │ │ ├── TinyPtrVector.h │ │ ├── Triple.h │ │ ├── Twine.h │ │ ├── TypeSwitch.h │ │ ├── UniqueVector.h │ │ ├── Waymarking.h │ │ ├── bit.h │ │ ├── edit_distance.h │ │ ├── fallible_iterator.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 │ │ ├── AsmParser │ │ ├── LLLexer.cpp │ │ ├── LLLexer.h │ │ ├── LLParser.cpp │ │ ├── LLParser.h │ │ ├── LLToken.h │ │ ├── Parser.cpp │ │ ├── Parser.h │ │ └── SlotMapping.h │ │ ├── Basic │ │ └── LLVM.h │ │ ├── BinaryFormat │ │ ├── COFF.h │ │ ├── Dwarf.cpp │ │ ├── Dwarf.def │ │ ├── Dwarf.h │ │ ├── ELF.h │ │ ├── MachO.cpp │ │ ├── MachO.def │ │ ├── MachO.h │ │ ├── Magic.cpp │ │ ├── Magic.h │ │ └── XCOFF.h │ │ ├── Bitcode │ │ ├── BitReader.cpp │ │ ├── BitcodeAnalyzer.cpp │ │ ├── BitcodeAnalyzer.h │ │ ├── BitcodeCommon.h │ │ ├── BitcodeReader.cpp │ │ ├── BitcodeReader.h │ │ ├── LLVMBitCodes.h │ │ ├── MetadataLoader.cpp │ │ ├── MetadataLoader.h │ │ ├── ValueList.cpp │ │ └── ValueList.h │ │ ├── Bitstream │ │ ├── BitCodes.h │ │ ├── BitstreamReader.cpp │ │ ├── BitstreamReader.h │ │ └── BitstreamWriter.h │ │ ├── CodeGen │ │ ├── IntrinsicLowering.cpp │ │ └── IntrinsicLowering.h │ │ ├── Config │ │ ├── AsmParsers.def │ │ ├── AsmPrinters.def │ │ ├── Disassemblers.def │ │ ├── Targets.def │ │ ├── abi-breaking.h │ │ ├── config.h │ │ └── llvm-config.h │ │ ├── DebugInfo │ │ ├── CodeView │ │ │ ├── CVRecord.h │ │ │ ├── CodeView.h │ │ │ ├── CodeViewError.h │ │ │ ├── CodeViewRegisters.def │ │ │ ├── CodeViewSymbols.def │ │ │ ├── CodeViewTypes.def │ │ │ ├── Line.h │ │ │ ├── RecordSerialization.h │ │ │ ├── SymbolRecord.h │ │ │ └── TypeIndex.h │ │ └── DIContext.h │ │ ├── Demangle │ │ ├── Demangle.cpp │ │ ├── Demangle.h │ │ ├── DemangleConfig.h │ │ ├── ItaniumDemangle.cpp │ │ ├── ItaniumDemangle.h │ │ ├── MicrosoftDemangle.cpp │ │ ├── MicrosoftDemangle.h │ │ ├── MicrosoftDemangleNodes.cpp │ │ ├── MicrosoftDemangleNodes.h │ │ ├── StringView.h │ │ └── Utility.h │ │ ├── ExecutionEngine │ │ ├── ExecutionEngine.cpp │ │ ├── ExecutionEngine.h │ │ ├── GenericValue.h │ │ ├── ObjectCache.h │ │ └── OrcV1Deprecation.h │ │ ├── IR │ │ ├── AbstractCallSite.h │ │ ├── Argument.h │ │ ├── AssemblyAnnotationWriter.h │ │ ├── Assumptions.h │ │ ├── Attributes.h │ │ ├── Attributes.inc │ │ ├── Attributes.td │ │ ├── AutoUpgrade.h │ │ ├── BasicBlock.h │ │ ├── CFG.h │ │ ├── CallingConv.h │ │ ├── Comdat.h │ │ ├── Constant.h │ │ ├── ConstantFolder.h │ │ ├── ConstantRange.h │ │ ├── Constants.h │ │ ├── ConstrainedOps.def │ │ ├── DIBuilder.h │ │ ├── DataLayout.h │ │ ├── DebugInfo.h │ │ ├── DebugInfoFlags.def │ │ ├── DebugInfoMetadata.h │ │ ├── DebugLoc.h │ │ ├── DerivedTypes.h │ │ ├── DerivedUser.h │ │ ├── DiagnosticHandler.h │ │ ├── DiagnosticInfo.h │ │ ├── DiagnosticPrinter.h │ │ ├── Dominators.h │ │ ├── FPEnv.h │ │ ├── FixedMetadataKinds.def │ │ ├── FixedPointBuilder.h │ │ ├── Function.h │ │ ├── GVMaterializer.h │ │ ├── GetElementPtrTypeIterator.h │ │ ├── GlobalAlias.h │ │ ├── GlobalIFunc.h │ │ ├── GlobalIndirectSymbol.h │ │ ├── GlobalObject.h │ │ ├── GlobalPtrAuthInfo.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 │ │ ├── Intrinsics.td │ │ ├── IntrinsicsAArch64.h │ │ ├── IntrinsicsAMDGPU.h │ │ ├── IntrinsicsARM.h │ │ ├── IntrinsicsBPF.h │ │ ├── IntrinsicsHexagon.h │ │ ├── IntrinsicsMips.h │ │ ├── IntrinsicsNVPTX.h │ │ ├── IntrinsicsPowerPC.h │ │ ├── IntrinsicsR600.h │ │ ├── IntrinsicsRISCV.h │ │ ├── IntrinsicsS390.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 │ │ ├── ProfileSummary.h │ │ ├── PseudoProbe.h │ │ ├── RuntimeLibcalls.def │ │ ├── SafepointIRVerifier.h │ │ ├── Statepoint.h │ │ ├── StructuralHash.h │ │ ├── SymbolTableListTraits.h │ │ ├── TrackingMDRef.h │ │ ├── Type.h │ │ ├── TypeFinder.h │ │ ├── Use.h │ │ ├── UseListOrder.h │ │ ├── User.h │ │ ├── VPIntrinsics.def │ │ ├── Value.def │ │ ├── Value.h │ │ ├── ValueHandle.h │ │ ├── ValueMap.h │ │ ├── ValueSymbolTable.h │ │ └── Verifier.h │ │ ├── IRReader │ │ ├── IRReader.cpp │ │ └── IRReader.h │ │ ├── InitializePasses.h │ │ ├── Interpreter │ │ ├── Execution.cpp │ │ ├── ExternalFunctions.cpp │ │ ├── Interpreter.cpp │ │ └── Interpreter.h │ │ ├── MC │ │ ├── ConstantPools.cpp │ │ ├── ConstantPools.h │ │ ├── LaneBitmask.h │ │ ├── MCAsmBackend.h │ │ ├── MCAsmInfo.h │ │ ├── MCAsmLayout.h │ │ ├── MCAsmMacro.h │ │ ├── MCAssembler.cpp │ │ ├── MCAssembler.h │ │ ├── MCCodeEmitter.cpp │ │ ├── MCCodeEmitter.h │ │ ├── MCCodeView.cpp │ │ ├── MCCodeView.h │ │ ├── MCContext.cpp │ │ ├── MCContext.h │ │ ├── MCDirectives.h │ │ ├── MCDwarf.cpp │ │ ├── MCDwarf.h │ │ ├── MCExpr.cpp │ │ ├── MCExpr.h │ │ ├── MCFixedLenDisassembler.h │ │ ├── MCFixup.h │ │ ├── MCFixupKindInfo.h │ │ ├── MCFragment.cpp │ │ ├── MCFragment.h │ │ ├── MCInst.cpp │ │ ├── MCInst.h │ │ ├── MCInstBuilder.h │ │ ├── MCInstPrinter.cpp │ │ ├── MCInstPrinter.h │ │ ├── MCInstrAnalysis.cpp │ │ ├── MCInstrAnalysis.h │ │ ├── MCInstrDesc.cpp │ │ ├── MCInstrDesc.h │ │ ├── MCInstrInfo.cpp │ │ ├── MCInstrInfo.h │ │ ├── MCInstrItineraries.h │ │ ├── MCLabel.cpp │ │ ├── MCLabel.h │ │ ├── MCLinkerOptimizationHint.cpp │ │ ├── MCLinkerOptimizationHint.h │ │ ├── MCMachOStreamer.cpp │ │ ├── MCMachObjectTargetWriter.cpp │ │ ├── MCMachObjectWriter.h │ │ ├── MCNullStreamer.cpp │ │ ├── MCObjectFileInfo.cpp │ │ ├── MCObjectFileInfo.h │ │ ├── MCObjectStreamer.cpp │ │ ├── MCObjectStreamer.h │ │ ├── MCObjectWriter.cpp │ │ ├── MCObjectWriter.h │ │ ├── MCParser │ │ │ ├── AsmCond.h │ │ │ ├── AsmLexer.cpp │ │ │ ├── AsmLexer.h │ │ │ ├── AsmParser.cpp │ │ │ ├── DarwinAsmParser.cpp │ │ │ ├── MCAsmLexer.cpp │ │ │ ├── MCAsmLexer.h │ │ │ ├── MCAsmParser.cpp │ │ │ ├── MCAsmParser.h │ │ │ ├── MCAsmParserExtension.cpp │ │ │ ├── MCAsmParserExtension.h │ │ │ ├── MCAsmParserUtils.h │ │ │ ├── MCParsedAsmOperand.h │ │ │ ├── MCTargetAsmParser.cpp │ │ │ └── MCTargetAsmParser.h │ │ ├── MCPseudoProbe.cpp │ │ ├── MCPseudoProbe.h │ │ ├── MCRegister.h │ │ ├── MCRegisterInfo.cpp │ │ ├── MCRegisterInfo.h │ │ ├── MCSchedule.cpp │ │ ├── MCSchedule.h │ │ ├── MCSection.cpp │ │ ├── MCSection.h │ │ ├── MCSectionMachO.cpp │ │ ├── MCSectionMachO.h │ │ ├── MCStreamer.cpp │ │ ├── MCStreamer.h │ │ ├── MCSubtargetInfo.cpp │ │ ├── MCSubtargetInfo.h │ │ ├── MCSymbol.cpp │ │ ├── MCSymbol.h │ │ ├── MCSymbolMachO.h │ │ ├── MCTargetOptions.cpp │ │ ├── MCTargetOptions.h │ │ ├── MCTargetOptionsCommandFlags.cpp │ │ ├── MCTargetOptionsCommandFlags.h │ │ ├── MCValue.cpp │ │ ├── MCValue.h │ │ ├── MCWinEH.h │ │ ├── MachObjectWriter.cpp │ │ ├── MachineLocation.h │ │ ├── SectionKind.h │ │ ├── StringTableBuilder.cpp │ │ ├── StringTableBuilder.h │ │ ├── SubtargetFeature.cpp │ │ └── SubtargetFeature.h │ │ ├── Object │ │ ├── Archive.cpp │ │ ├── Archive.h │ │ ├── ArchiveWriter.cpp │ │ ├── ArchiveWriter.h │ │ ├── Binary.cpp │ │ ├── Binary.h │ │ ├── COFF.h │ │ ├── COFFImportFile.cpp │ │ ├── COFFImportFile.h │ │ ├── CVDebugRecord.h │ │ ├── Error.cpp │ │ ├── Error.h │ │ ├── IRObjectFile.cpp │ │ ├── IRObjectFile.h │ │ ├── IRSymtab.cpp │ │ ├── IRSymtab.h │ │ ├── MachO.h │ │ ├── MachOObjectFile.cpp │ │ ├── MachOUniversal.cpp │ │ ├── MachOUniversal.h │ │ ├── ModuleSymbolTable.cpp │ │ ├── ModuleSymbolTable.h │ │ ├── ObjectFile.cpp │ │ ├── ObjectFile.h │ │ ├── RecordStreamer.cpp │ │ ├── RecordStreamer.h │ │ ├── SymbolicFile.cpp │ │ ├── SymbolicFile.h │ │ └── Wasm.h │ │ ├── Pass.h │ │ ├── PassAnalysisSupport.h │ │ ├── PassInfo.h │ │ ├── PassRegistry.h │ │ ├── PassSupport.h │ │ ├── Remarks │ │ ├── BitstreamRemarkContainer.h │ │ ├── BitstreamRemarkParser 2.h │ │ ├── BitstreamRemarkParser.cpp │ │ ├── BitstreamRemarkParser.h │ │ ├── BitstreamRemarkSerializer.cpp │ │ ├── BitstreamRemarkSerializer.h │ │ ├── Remark.cpp │ │ ├── Remark.h │ │ ├── RemarkFormat.cpp │ │ ├── RemarkFormat.h │ │ ├── RemarkParser.cpp │ │ ├── RemarkParser.h │ │ ├── RemarkSerializer.cpp │ │ ├── RemarkSerializer.h │ │ ├── RemarkStreamer.cpp │ │ ├── RemarkStreamer.h │ │ ├── RemarkStringTable.cpp │ │ ├── RemarkStringTable.h │ │ ├── YAMLRemarkParser.cpp │ │ ├── YAMLRemarkParser.h │ │ ├── YAMLRemarkSerializer.cpp │ │ └── YAMLRemarkSerializer.h │ │ ├── Support │ │ ├── AArch64TargetParser.def │ │ ├── AArch64TargetParser.h │ │ ├── AMDGPUMetadata.h │ │ ├── AMDHSAKernelDescriptor.h │ │ ├── ARMAttributeParser.h │ │ ├── ARMBuildAttributes.h │ │ ├── ARMEHABI.h │ │ ├── ARMTargetParser.def │ │ ├── ARMTargetParser.h │ │ ├── ARMWinEH.h │ │ ├── AlignOf.h │ │ ├── Alignment.h │ │ ├── Allocator.h │ │ ├── AllocatorBase.h │ │ ├── ArrayRecycler.h │ │ ├── Atomic.h │ │ ├── AtomicOrdering.h │ │ ├── Automaton.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 │ │ ├── COM.h │ │ ├── CRC.h │ │ ├── CachePruning.h │ │ ├── Capacity.h │ │ ├── Casting.h │ │ ├── CheckedArithmetic.h │ │ ├── Chrono.h │ │ ├── CodeGen.h │ │ ├── CodeGenCoverage.h │ │ ├── CommandLine.h │ │ ├── Compiler.h │ │ ├── Compression.h │ │ ├── ConvertUTF.h │ │ ├── CrashRecoveryContext.h │ │ ├── DJB.h │ │ ├── DOTGraphTraits.h │ │ ├── DataExtractor.h │ │ ├── DataTypes.h │ │ ├── Debug.h │ │ ├── DebugCounter.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 │ │ ├── GlobPattern.h │ │ ├── GraphWriter.h │ │ ├── Host.h │ │ ├── InitLLVM.h │ │ ├── InstructionCost.h │ │ ├── ItaniumManglingCanonicalizer.h │ │ ├── JSON.h │ │ ├── KnownBits.h │ │ ├── LEB128.h │ │ ├── LICENSE.TXT │ │ ├── LineIterator.h │ │ ├── Locale.h │ │ ├── LockFileManager.h │ │ ├── LowLevelTypeImpl.h │ │ ├── MD5.h │ │ ├── MSVCErrorWorkarounds.h │ │ ├── MachineValueType.h │ │ ├── ManagedStatic.h │ │ ├── MathExtras.h │ │ ├── MemAlloc.h │ │ ├── Memory.h │ │ ├── MemoryBuffer.h │ │ ├── MemoryBufferRef.h │ │ ├── MipsABIFlags.h │ │ ├── Mutex.h │ │ ├── NativeFormatting.h │ │ ├── OnDiskHashTable.h │ │ ├── OptimizedStructLayout.h │ │ ├── Parallel.h │ │ ├── Path.h │ │ ├── PluginLoader.h │ │ ├── PointerLikeTypeTraits.h │ │ ├── PrettyStackTrace.h │ │ ├── Printable.h │ │ ├── Process.h │ │ ├── Program.h │ │ ├── RISCVAttributeParser.h │ │ ├── RISCVAttributes.h │ │ ├── RISCVTargetParser.def │ │ ├── RWMutex.h │ │ ├── RandomNumberGenerator.h │ │ ├── Recycler.h │ │ ├── RecyclingAllocator.h │ │ ├── Regex.h │ │ ├── Registry.h │ │ ├── ReverseIteration.h │ │ ├── SHA1.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 │ │ ├── SwapByteOrder.h │ │ ├── SymbolRemappingReader.h │ │ ├── SystemUtils.h │ │ ├── TarWriter.h │ │ ├── TargetOpcodes.def │ │ ├── TargetParser.h │ │ ├── TargetRegistry.h │ │ ├── TargetSelect.h │ │ ├── TaskQueue.h │ │ ├── ThreadLocal.h │ │ ├── ThreadPool.h │ │ ├── Threading.h │ │ ├── TimeProfiler.h │ │ ├── Timer.h │ │ ├── ToolOutputFile.h │ │ ├── TrailingObjects.h │ │ ├── TrigramIndex.h │ │ ├── TypeName.h │ │ ├── TypeSize.h │ │ ├── Unicode.h │ │ ├── UnicodeCharRanges.h │ │ ├── Valgrind.h │ │ ├── VersionTuple.h │ │ ├── VirtualFileSystem.h │ │ ├── Watchdog.h │ │ ├── Win64EH.h │ │ ├── WindowsError.h │ │ ├── WithColor.h │ │ ├── X86DisassemblerDecoderCommon.h │ │ ├── X86TargetParser.def │ │ ├── X86TargetParser.h │ │ ├── YAMLParser.h │ │ ├── YAMLTraits.h │ │ ├── circular_raw_ostream.h │ │ ├── raw_os_ostream.h │ │ ├── raw_ostream.h │ │ ├── raw_sha1_ostream.h │ │ ├── thread.h │ │ ├── type_traits.h │ │ └── xxhash.h │ │ ├── lib │ │ ├── IR │ │ │ ├── AbstractCallSite.cpp │ │ │ ├── AsmWriter.cpp │ │ │ ├── Assumptions.cpp │ │ │ ├── AttributeImpl.h │ │ │ ├── Attributes.cpp │ │ │ ├── AutoUpgrade.cpp │ │ │ ├── BasicBlock.cpp │ │ │ ├── Comdat.cpp │ │ │ ├── ConstantFold.cpp │ │ │ ├── ConstantFold.h │ │ │ ├── ConstantRange.cpp │ │ │ ├── Constants.cpp │ │ │ ├── ConstantsContext.h │ │ │ ├── Core.cpp │ │ │ ├── DIBuilder.cpp │ │ │ ├── DataLayout.cpp │ │ │ ├── DebugInfo.cpp │ │ │ ├── DebugInfoMetadata.cpp │ │ │ ├── DebugLoc.cpp │ │ │ ├── DiagnosticHandler.cpp │ │ │ ├── DiagnosticInfo.cpp │ │ │ ├── DiagnosticPrinter.cpp │ │ │ ├── Dominators.cpp │ │ │ ├── FPEnv.cpp │ │ │ ├── Function.cpp │ │ │ ├── GVMaterializer.cpp │ │ │ ├── GlobalPtrAuthInfo.cpp │ │ │ ├── Globals.cpp │ │ │ ├── IRBuilder.cpp │ │ │ ├── IRPrintingPasses.cpp │ │ │ ├── InlineAsm.cpp │ │ │ ├── Instruction.cpp │ │ │ ├── Instructions.cpp │ │ │ ├── IntrinsicInst.cpp │ │ │ ├── LLVMContext.cpp │ │ │ ├── LLVMContextImpl.cpp │ │ │ ├── LLVMContextImpl.h │ │ │ ├── LLVMRemarkStreamer.cpp │ │ │ ├── LegacyPassManager.cpp │ │ │ ├── MDBuilder.cpp │ │ │ ├── Mangler.cpp │ │ │ ├── Metadata.cpp │ │ │ ├── MetadataImpl.h │ │ │ ├── Module.cpp │ │ │ ├── ModuleSummaryIndex.cpp │ │ │ ├── Operator.cpp │ │ │ ├── OptBisect.cpp │ │ │ ├── Pass.cpp │ │ │ ├── PassInstrumentation.cpp │ │ │ ├── PassManager.cpp │ │ │ ├── PassRegistry.cpp │ │ │ ├── PassTimingInfo.cpp │ │ │ ├── PrintPasses.cpp │ │ │ ├── ProfileSummary.cpp │ │ │ ├── PseudoProbe.cpp │ │ │ ├── SafepointIRVerifier.cpp │ │ │ ├── Statepoint.cpp │ │ │ ├── StructuralHash.cpp │ │ │ ├── SymbolTableListTraitsImpl.h │ │ │ ├── Type.cpp │ │ │ ├── TypeFinder.cpp │ │ │ ├── Use.cpp │ │ │ ├── User.cpp │ │ │ ├── Value.cpp │ │ │ ├── ValueSymbolTable.cpp │ │ │ └── Verifier.cpp │ │ └── Support │ │ │ ├── ABIBreak.cpp │ │ │ ├── AMDGPUMetadata.cpp │ │ │ ├── APFixedPoint.cpp │ │ │ ├── APFloat.cpp │ │ │ ├── APInt.cpp │ │ │ ├── APSInt.cpp │ │ │ ├── ARMAttributeParser.cpp │ │ │ ├── ARMBuildAttrs.cpp │ │ │ ├── ARMTargetParser.cpp │ │ │ ├── ARMWinEH.cpp │ │ │ ├── Allocator.cpp │ │ │ ├── Atomic.cpp │ │ │ ├── BinaryStreamError.cpp │ │ │ ├── BinaryStreamReader.cpp │ │ │ ├── BinaryStreamRef.cpp │ │ │ ├── BinaryStreamWriter.cpp │ │ │ ├── BlockFrequency.cpp │ │ │ ├── BranchProbability.cpp │ │ │ ├── BuryPointer.cpp │ │ │ ├── COM.cpp │ │ │ ├── COPYRIGHT.regex │ │ │ ├── CRC.cpp │ │ │ ├── CachePruning.cpp │ │ │ ├── Chrono.cpp │ │ │ ├── CodeGenCoverage.cpp │ │ │ ├── CommandLine.cpp │ │ │ ├── Compression.cpp │ │ │ ├── ConvertUTF.cpp │ │ │ ├── ConvertUTFWrapper.cpp │ │ │ ├── CrashRecoveryContext.cpp │ │ │ ├── DAGDeltaAlgorithm.cpp │ │ │ ├── DJB.cpp │ │ │ ├── DataExtractor.cpp │ │ │ ├── Debug.cpp │ │ │ ├── DebugCounter.cpp │ │ │ ├── DeltaAlgorithm.cpp │ │ │ ├── DynamicLibrary.cpp │ │ │ ├── ELFAttributeParser.cpp │ │ │ ├── ELFAttributes.cpp │ │ │ ├── Errno.cpp │ │ │ ├── Error.cpp │ │ │ ├── ErrorHandling.cpp │ │ │ ├── ExtensibleRTTI.cpp │ │ │ ├── FileCollector.cpp │ │ │ ├── FileOutputBuffer.cpp │ │ │ ├── FileUtilities.cpp │ │ │ ├── FoldingSet.cpp │ │ │ ├── FormatVariadic.cpp │ │ │ ├── FormattedStream.cpp │ │ │ ├── GlobPattern.cpp │ │ │ ├── GraphWriter.cpp │ │ │ ├── Hashing.cpp │ │ │ ├── Host.cpp │ │ │ ├── InitLLVM.cpp │ │ │ ├── InstructionCost.cpp │ │ │ ├── IntEqClasses.cpp │ │ │ ├── IntervalMap.cpp │ │ │ ├── ItaniumManglingCanonicalizer.cpp │ │ │ ├── JSON.cpp │ │ │ ├── KnownBits.cpp │ │ │ ├── LEB128.cpp │ │ │ ├── LineIterator.cpp │ │ │ ├── Locale.cpp │ │ │ ├── LockFileManager.cpp │ │ │ ├── LowLevelType.cpp │ │ │ ├── MD5.cpp │ │ │ ├── ManagedStatic.cpp │ │ │ ├── MathExtras.cpp │ │ │ ├── MemAlloc.cpp │ │ │ ├── Memory.cpp │ │ │ ├── MemoryBuffer.cpp │ │ │ ├── MemoryBufferRef.cpp │ │ │ ├── NativeFormatting.cpp │ │ │ ├── OptimizedStructLayout.cpp │ │ │ ├── Optional.cpp │ │ │ ├── Parallel.cpp │ │ │ ├── Path.cpp │ │ │ ├── PluginLoader.cpp │ │ │ ├── PrettyStackTrace.cpp │ │ │ ├── Process.cpp │ │ │ ├── Program.cpp │ │ │ ├── RISCVAttributeParser.cpp │ │ │ ├── RISCVAttributes.cpp │ │ │ ├── RWMutex.cpp │ │ │ ├── RandomNumberGenerator.cpp │ │ │ ├── Regex.cpp │ │ │ ├── SHA1.cpp │ │ │ ├── ScaledNumber.cpp │ │ │ ├── ScopedPrinter.cpp │ │ │ ├── Signals.cpp │ │ │ ├── Signposts.cpp │ │ │ ├── SmallPtrSet.cpp │ │ │ ├── SmallVector.cpp │ │ │ ├── SourceMgr.cpp │ │ │ ├── SpecialCaseList.cpp │ │ │ ├── Statistic.cpp │ │ │ ├── StringExtras.cpp │ │ │ ├── StringMap.cpp │ │ │ ├── StringRef.cpp │ │ │ ├── StringSaver.cpp │ │ │ ├── SuffixTree.cpp │ │ │ ├── SymbolRemappingReader.cpp │ │ │ ├── SystemUtils.cpp │ │ │ ├── TarWriter.cpp │ │ │ ├── TargetParser.cpp │ │ │ ├── TargetRegistry.cpp │ │ │ ├── ThreadLocal.cpp │ │ │ ├── ThreadPool.cpp │ │ │ ├── Threading.cpp │ │ │ ├── TimeProfiler.cpp │ │ │ ├── Timer.cpp │ │ │ ├── ToolOutputFile.cpp │ │ │ ├── TrigramIndex.cpp │ │ │ ├── Triple.cpp │ │ │ ├── Twine.cpp │ │ │ ├── Unicode.cpp │ │ │ ├── UnicodeCaseFold.cpp │ │ │ ├── Unix │ │ │ ├── COM.inc │ │ │ ├── DynamicLibrary.inc │ │ │ ├── Host.inc │ │ │ ├── Memory.inc │ │ │ ├── Path.inc │ │ │ ├── Process.inc │ │ │ ├── Program.inc │ │ │ ├── README.txt │ │ │ ├── Signals.inc │ │ │ ├── ThreadLocal.inc │ │ │ ├── Threading.inc │ │ │ ├── Unix.h │ │ │ └── Watchdog.inc │ │ │ ├── Valgrind.cpp │ │ │ ├── VersionTuple.cpp │ │ │ ├── VirtualFileSystem.cpp │ │ │ ├── Watchdog.cpp │ │ │ ├── Windows │ │ │ ├── COM.inc │ │ │ ├── DynamicLibrary.inc │ │ │ ├── Host.inc │ │ │ ├── Memory.inc │ │ │ ├── Path.inc │ │ │ ├── Process.inc │ │ │ ├── Program.inc │ │ │ ├── Signals.inc │ │ │ ├── ThreadLocal.inc │ │ │ ├── Threading.inc │ │ │ ├── Watchdog.inc │ │ │ └── explicit_symbols.inc │ │ │ ├── WithColor.cpp │ │ │ ├── X86TargetParser.cpp │ │ │ ├── YAMLParser.cpp │ │ │ ├── YAMLTraits.cpp │ │ │ ├── Z3Solver.cpp │ │ │ ├── circular_raw_ostream.cpp │ │ │ ├── raw_os_ostream.cpp │ │ │ ├── raw_ostream.cpp │ │ │ ├── regcomp.c │ │ │ ├── regengine.inc │ │ │ ├── regerror.c │ │ │ ├── regex2.h │ │ │ ├── regex_impl.h │ │ │ ├── regexec.c │ │ │ ├── regfree.c │ │ │ ├── regstrlcpy.c │ │ │ ├── regutils.h │ │ │ └── xxhash.cpp │ │ ├── libffi │ │ ├── common │ │ │ ├── include │ │ │ │ ├── ffi.h │ │ │ │ ├── ffi_cfi.h │ │ │ │ ├── ffi_common.h │ │ │ │ ├── fficonfig.h │ │ │ │ └── ffitarget.h │ │ │ └── src │ │ │ │ ├── closures.c │ │ │ │ ├── debug.c │ │ │ │ ├── dlmalloc.c │ │ │ │ ├── java_raw_api.c │ │ │ │ ├── prep_cif.c │ │ │ │ ├── raw_api.c │ │ │ │ └── types.c │ │ └── ios │ │ │ ├── include │ │ │ ├── ffi_arm64.h │ │ │ ├── ffi_armv7.h │ │ │ ├── ffi_i386.h │ │ │ ├── ffi_x86_64.h │ │ │ ├── fficonfig_arm64.h │ │ │ ├── fficonfig_armv7.h │ │ │ ├── fficonfig_i386.h │ │ │ ├── fficonfig_x86_64.h │ │ │ ├── ffitarget_arm64.h │ │ │ ├── ffitarget_armv7.h │ │ │ ├── ffitarget_i386.h │ │ │ └── ffitarget_x86_64.h │ │ │ └── src │ │ │ ├── aarch64 │ │ │ ├── ffi_arm64.c │ │ │ ├── internal.h │ │ │ └── sysv_arm64.S │ │ │ ├── arm │ │ │ ├── ffi_armv7.c │ │ │ ├── internal.h │ │ │ └── sysv_armv7.S │ │ │ └── x86 │ │ │ ├── asmnames.h │ │ │ ├── ffi64_x86_64.c │ │ │ ├── ffi_i386.c │ │ │ ├── ffiw64_x86_64.c │ │ │ ├── internal.h │ │ │ ├── internal64.h │ │ │ ├── sysv_i386.S │ │ │ ├── unix64_x86_64.S │ │ │ └── win64_x86_64.S │ │ └── llvm-c │ │ ├── Analysis.h │ │ ├── BitReader.h │ │ ├── BitWriter.h │ │ ├── Comdat.h │ │ ├── Core.h │ │ ├── DataTypes.h │ │ ├── DebugInfo.h │ │ ├── Disassembler.h │ │ ├── DisassemblerTypes.h │ │ ├── Error.h │ │ ├── ErrorHandling.h │ │ ├── ExecutionEngine.h │ │ ├── ExternC.h │ │ ├── IRReader.h │ │ ├── Initialization.h │ │ ├── LLJIT.h │ │ ├── Linker.h │ │ ├── Object.h │ │ ├── Orc.h │ │ ├── OrcEE.h │ │ ├── Remarks.h │ │ ├── Support.h │ │ ├── Target.h │ │ ├── TargetMachine.h │ │ ├── Transforms │ │ ├── AggressiveInstCombine.h │ │ ├── Coroutines.h │ │ ├── IPO.h │ │ ├── InstCombine.h │ │ ├── PassManagerBuilder.h │ │ ├── Scalar.h │ │ ├── Utils.h │ │ └── Vectorize.h │ │ ├── Types.h │ │ ├── lto.h │ │ └── module.modulemap ├── BitCodeInterpreterUserDemo.cpp ├── Info.plist ├── SceneDelegate.h ├── SceneDelegate.m ├── ViewController.h ├── ViewController.m ├── main.bc └── main.m └── README.md /BitCodeInterpreter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BitCodeInterpreter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/AppDelegate.h -------------------------------------------------------------------------------- /BitCodeInterpreter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/AppDelegate.m -------------------------------------------------------------------------------- /BitCodeInterpreter/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /BitCodeInterpreter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BitCodeInterpreter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BitCodeInterpreter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BitCodeInterpreter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APFixedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APFixedPoint.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APFloat.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APInt.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APSInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/APSInt.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/AllocatorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/AllocatorList.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Any.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ArrayRef.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BitVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Bitfields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Bitfields.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BitmaskEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BitmaskEnum.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BreadthFirstIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/BreadthFirstIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/CachedHashString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/CachedHashString.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/CoalescingBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/CoalescingBitVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DAGDeltaAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DAGDeltaAlgorithm.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DeltaAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DeltaAlgorithm.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseMapInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DenseSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DepthFirstIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DepthFirstIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DirectedGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/DirectedGraph.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EnumeratedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EnumeratedArray.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EpochTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EpochTracker.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EquivalenceClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/EquivalenceClasses.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FloatingPointMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FloatingPointMode.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FoldingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FoldingSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FunctionExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/FunctionExtras.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/GraphTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/GraphTraits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Hashing.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableList.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ImmutableSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IndexedMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IndexedMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntEqClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntEqClasses.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntervalMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntervalMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntrusiveRefCntPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/IntrusiveRefCntPtr.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/MapVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/MapVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/None.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Optional.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PackedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PackedVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerEmbeddedInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerEmbeddedInt.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerIntPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerIntPair.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerSumType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerSumType.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PointerUnion.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PostOrderIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PostOrderIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PriorityQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PriorityQueue.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PriorityWorklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/PriorityWorklist.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SCCIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SCCIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/STLExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/STLExtras.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ScopeExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ScopeExit.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ScopedHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ScopedHashTable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Sequence.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SetOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SetOperations.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SetVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SetVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallBitVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallPtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallPtrSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallString.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SmallVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseBitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseBitVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseMultiSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseMultiSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/SparseSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Statistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Statistic.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringExtras.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringMapEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringMapEntry.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringSet.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/StringSwitch.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/TinyPtrVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/TinyPtrVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Triple.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Twine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Twine.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/TypeSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/TypeSwitch.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/UniqueVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/UniqueVector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Waymarking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/Waymarking.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/bit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/bit.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/edit_distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/edit_distance.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/fallible_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/fallible_iterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_base.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_iterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node_base.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/ilist_node_options.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/iterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/iterator_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/iterator_range.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/simple_ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/ADT/simple_ilist.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLLexer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLLexer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLParser.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/LLToken.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/Parser.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/Parser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/SlotMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/AsmParser/SlotMapping.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Basic/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Basic/LLVM.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/COFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/COFF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Dwarf.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/ELF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/MachO.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Magic.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/Magic.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/XCOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/BinaryFormat/XCOFF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitReader.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeAnalyzer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeCommon.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeReader.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/BitcodeReader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/LLVMBitCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/LLVMBitCodes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/MetadataLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/MetadataLoader.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/MetadataLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/MetadataLoader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/ValueList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/ValueList.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/ValueList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitcode/ValueList.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Bitstream/BitCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Bitstream/BitCodes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/AsmParsers.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/AsmParsers.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/AsmPrinters.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/AsmPrinters.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/Disassemblers.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/Disassemblers.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/Targets.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/Targets.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/abi-breaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/abi-breaking.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/config.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Config/llvm-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Config/llvm-config.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/DebugInfo/CodeView/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/DebugInfo/CodeView/Line.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/DebugInfo/DIContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/DebugInfo/DIContext.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Demangle.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Demangle.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/DemangleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/DemangleConfig.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/ItaniumDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/ItaniumDemangle.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/StringView.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Demangle/Utility.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/AbstractCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/AbstractCallSite.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Argument.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Assumptions.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Attributes.td -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/AutoUpgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/AutoUpgrade.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/BasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/BasicBlock.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/CFG.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/CallingConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/CallingConv.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Comdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Comdat.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Constant.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstantFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstantFolder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstantRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstantRange.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Constants.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstrainedOps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ConstrainedOps.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DIBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DIBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DataLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DataLayout.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfoFlags.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfoFlags.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfoMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugInfoMetadata.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DebugLoc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DerivedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DerivedTypes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DerivedUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DerivedUser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticHandler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/DiagnosticPrinter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Dominators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Dominators.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FPEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FPEnv.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FixedMetadataKinds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FixedMetadataKinds.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FixedPointBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/FixedPointBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Function.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GVMaterializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GVMaterializer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalAlias.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalIFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalIFunc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalIndirectSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalIndirectSymbol.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalObject.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalPtrAuthInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalPtrAuthInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalValue.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/GlobalVariable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRBuilderFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRBuilderFolder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRPrintingPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IRPrintingPasses.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InlineAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InlineAsm.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstVisitor.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/InstrTypes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instruction.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instruction.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instruction.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Instructions.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicEnums.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicEnums.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicImpl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicImpl.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicInst.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Intrinsics.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Intrinsics.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Intrinsics.td -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsAArch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsAArch64.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsAMDGPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsAMDGPU.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsARM.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsBPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsBPF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsHexagon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsHexagon.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsMips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsMips.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsNVPTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsNVPTX.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsPowerPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsPowerPC.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsR600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsR600.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsRISCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsRISCV.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsS390.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsS390.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsVE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsVE.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsWebAssembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsWebAssembly.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsX86.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsXCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/IntrinsicsXCore.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LLVMContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LLVMContext.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LLVMRemarkStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LLVMRemarkStreamer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassManager.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassManagers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassManagers.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassNameParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/LegacyPassNameParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/MDBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/MDBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Mangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Mangler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/MatrixBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/MatrixBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Metadata.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Metadata.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Metadata.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Module.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ModuleSlotTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ModuleSlotTracker.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ModuleSummaryIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ModuleSummaryIndex.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/NoFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/NoFolder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/OperandTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/OperandTraits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Operator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/OptBisect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/OptBisect.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassInstrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassInstrumentation.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManager.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManagerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManagerImpl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManagerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassManagerInternal.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassTimingInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PassTimingInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PatternMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PatternMatch.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PredIteratorCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PredIteratorCache.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PrintPasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PrintPasses.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ProfileSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ProfileSummary.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PseudoProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/PseudoProbe.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/RuntimeLibcalls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/RuntimeLibcalls.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/SafepointIRVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/SafepointIRVerifier.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Statepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Statepoint.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/StructuralHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/StructuralHash.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/SymbolTableListTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/SymbolTableListTraits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/TrackingMDRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/TrackingMDRef.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Type.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/TypeFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/TypeFinder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Use.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/UseListOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/UseListOrder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/User.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/VPIntrinsics.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/VPIntrinsics.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Value.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Value.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Value.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueHandle.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueMap.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueSymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/ValueSymbolTable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IR/Verifier.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IRReader/IRReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IRReader/IRReader.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/IRReader/IRReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/IRReader/IRReader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/InitializePasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/InitializePasses.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Interpreter/Execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Interpreter/Execution.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Interpreter/Interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Interpreter/Interpreter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/ConstantPools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/ConstantPools.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/ConstantPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/ConstantPools.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/LaneBitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/LaneBitmask.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmBackend.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmLayout.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAsmMacro.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAssembler.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAssembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCAssembler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeEmitter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeEmitter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeView.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCCodeView.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCContext.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCContext.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDirectives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDirectives.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDwarf.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCDwarf.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCExpr.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCExpr.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFixup.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFixupKindInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFixupKindInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFragment.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCFragment.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInst.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInst.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstPrinter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstPrinter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrAnalysis.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrAnalysis.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrDesc.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrDesc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrItineraries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCInstrItineraries.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCLabel.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCLabel.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCMachOStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCMachOStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCMachObjectWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCMachObjectWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCNullStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCNullStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectFileInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectFileInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectStreamer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectWriter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCObjectWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmCond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmCond.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmLexer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmLexer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/AsmParser.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmLexer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmLexer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCParser/MCAsmParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCPseudoProbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCPseudoProbe.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCPseudoProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCPseudoProbe.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegister.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegisterInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegisterInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCRegisterInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSchedule.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSchedule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSchedule.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSection.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSection.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSectionMachO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSectionMachO.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSectionMachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSectionMachO.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCStreamer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSubtargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSubtargetInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSubtargetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSubtargetInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbol.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbol.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbolMachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCSymbolMachO.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCTargetOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCTargetOptions.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCTargetOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCTargetOptions.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCValue.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCValue.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCWinEH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MCWinEH.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MachObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MachObjectWriter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MachineLocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/MachineLocation.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SectionKind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SectionKind.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/StringTableBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/StringTableBuilder.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/StringTableBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/StringTableBuilder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SubtargetFeature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SubtargetFeature.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SubtargetFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/MC/SubtargetFeature.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Archive.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Archive.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ArchiveWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ArchiveWriter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ArchiveWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ArchiveWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Binary.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Binary.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFFImportFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFFImportFile.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFFImportFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/COFFImportFile.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/CVDebugRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/CVDebugRecord.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Error.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Error.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRObjectFile.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRObjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRObjectFile.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRSymtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRSymtab.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRSymtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/IRSymtab.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachO.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOObjectFile.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOUniversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOUniversal.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOUniversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/MachOUniversal.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ModuleSymbolTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ModuleSymbolTable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ObjectFile.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ObjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/ObjectFile.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/RecordStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/RecordStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/RecordStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/RecordStreamer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/SymbolicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/SymbolicFile.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/SymbolicFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/SymbolicFile.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Wasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Object/Wasm.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Pass.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/PassAnalysisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/PassAnalysisSupport.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/PassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/PassInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/PassRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/PassRegistry.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/PassSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/PassSupport.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/Remark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/Remark.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/Remark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/Remark.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkFormat.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkFormat.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkParser.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkSerializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkSerializer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkStreamer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/RemarkStreamer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/YAMLRemarkParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Remarks/YAMLRemarkParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AMDGPUMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AMDGPUMetadata.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMEHABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMEHABI.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMTargetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMTargetParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMWinEH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ARMWinEH.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Alignment.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Allocator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AllocatorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AllocatorBase.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ArrayRecycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ArrayRecycler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Atomic.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AtomicOrdering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/AtomicOrdering.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Automaton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Automaton.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Base64.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryByteStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryByteStream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryItemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryItemStream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryStream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryStreamRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BinaryStreamRef.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BlockFrequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BlockFrequency.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BuryPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/BuryPointer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CBindingWrapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CBindingWrapping.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CFGDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CFGDiff.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CFGUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CFGUpdate.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/COM.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CRC.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CachePruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CachePruning.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Capacity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Capacity.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Casting.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Chrono.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CodeGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CodeGen.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CodeGenCoverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CodeGenCoverage.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/CommandLine.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Compression.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ConvertUTF.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DJB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DJB.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DOTGraphTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DOTGraphTraits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DataExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DataExtractor.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DataTypes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Debug.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DebugCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DebugCounter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/DynamicLibrary.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ELFAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ELFAttributes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Endian.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/EndianStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/EndianStream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Errc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Errc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Errno.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Error.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ErrorHandling.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ErrorOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ErrorOr.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ExitCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ExitCodes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ExtensibleRTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ExtensibleRTTI.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileCollector.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileOutputBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileOutputBuffer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileSystem.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FileUtilities.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Format.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatAdapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatAdapters.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatCommon.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatProviders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatProviders.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatVariadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormatVariadic.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormattedStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/FormattedStream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GenericDomTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GenericDomTree.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GlobPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GlobPattern.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GraphWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/GraphWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Host.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/InitLLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/InitLLVM.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/InstructionCost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/InstructionCost.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/JSON.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/KnownBits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/KnownBits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LEB128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LEB128.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LICENSE.TXT -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LineIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LineIterator.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Locale.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LockFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LockFileManager.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LowLevelTypeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/LowLevelTypeImpl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MD5.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MachineValueType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MachineValueType.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ManagedStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ManagedStatic.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MathExtras.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemAlloc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Memory.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemoryBuffer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemoryBufferRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MemoryBufferRef.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MipsABIFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/MipsABIFlags.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Mutex.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/NativeFormatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/NativeFormatting.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/OnDiskHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/OnDiskHashTable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Parallel.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Path.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/PluginLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/PluginLoader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/PrettyStackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/PrettyStackTrace.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Printable.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Process.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Program.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/RISCVAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/RISCVAttributes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/RWMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/RWMutex.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Recycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Recycler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Regex.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Registry.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ReverseIteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ReverseIteration.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SHA1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SHA1.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SMLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SMLoc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SMTAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SMTAPI.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SaveAndRestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SaveAndRestore.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ScaledNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ScaledNumber.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ScopedPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ScopedPrinter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Signals.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Signposts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Signposts.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SourceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SourceMgr.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SpecialCaseList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SpecialCaseList.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/StringSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/StringSaver.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SuffixTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SuffixTree.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SwapByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SwapByteOrder.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SystemUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/SystemUtils.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TarWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TarWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetOpcodes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetOpcodes.def -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetRegistry.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TargetSelect.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TaskQueue.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ThreadLocal.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ThreadPool.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Threading.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TimeProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TimeProfiler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Timer.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ToolOutputFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/ToolOutputFile.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TrailingObjects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TrailingObjects.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TrigramIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TrigramIndex.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TypeName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TypeName.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TypeSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/TypeSize.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Unicode.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Valgrind.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/VersionTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/VersionTuple.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Watchdog.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Win64EH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/Win64EH.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/WindowsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/WindowsError.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/WithColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/WithColor.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/X86TargetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/X86TargetParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/YAMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/YAMLParser.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/YAMLTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/YAMLTraits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_os_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_os_ostream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_ostream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_sha1_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/raw_sha1_ostream.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/thread.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/type_traits.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/Support/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/Support/xxhash.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AsmWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AsmWriter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Assumptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Assumptions.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AttributeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AttributeImpl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Attributes.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AutoUpgrade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/AutoUpgrade.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/BasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/BasicBlock.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Comdat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Comdat.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantFold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantFold.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantFold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantFold.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantRange.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Constants.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantsContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ConstantsContext.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Core.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DIBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DIBuilder.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DataLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DataLayout.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DebugInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DebugLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DebugLoc.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DiagnosticInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/DiagnosticInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Dominators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Dominators.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/FPEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/FPEnv.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Function.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/GVMaterializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/GVMaterializer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Globals.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/IRBuilder.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/InlineAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/InlineAsm.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Instruction.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Instructions.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/IntrinsicInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/IntrinsicInst.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContext.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContextImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContextImpl.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContextImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/LLVMContextImpl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/MDBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/MDBuilder.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Mangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Mangler.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Metadata.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/MetadataImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/MetadataImpl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Module.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Operator.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/OptBisect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/OptBisect.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Pass.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassManager.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassRegistry.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassTimingInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PassTimingInfo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PrintPasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PrintPasses.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ProfileSummary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/ProfileSummary.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PseudoProbe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/PseudoProbe.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Statepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Statepoint.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/StructuralHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/StructuralHash.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Type.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/TypeFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/TypeFinder.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Use.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/User.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Value.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/IR/Verifier.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ABIBreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ABIBreak.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APFloat.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APInt.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APSInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/APSInt.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ARMWinEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ARMWinEH.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Allocator.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Atomic.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/COM.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/CRC.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Chrono.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ConvertUTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ConvertUTF.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/DJB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/DJB.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Debug.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Errno.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Error.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/FoldingSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/FoldingSet.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Hashing.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Host.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/InitLLVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/InitLLVM.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/JSON.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/KnownBits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/KnownBits.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/LEB128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/LEB128.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Locale.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MD5.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MathExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MathExtras.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MemAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/MemAlloc.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Memory.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Optional.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Parallel.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Path.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Process.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Program.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/RWMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/RWMutex.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Regex.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SHA1.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Signals.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Signposts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Signposts.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SourceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SourceMgr.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Statistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Statistic.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/StringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/StringMap.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/StringRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/StringRef.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SuffixTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/SuffixTree.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/TarWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/TarWriter.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/ThreadPool.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Threading.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Timer.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Triple.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Twine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Twine.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unicode.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/COM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/COM.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Host.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Path.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Path.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Unix/Unix.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Valgrind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Valgrind.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Watchdog.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/WithColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/WithColor.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/YAMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/YAMLParser.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/YAMLTraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/YAMLTraits.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Z3Solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/Z3Solver.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regcomp.c -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regengine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regengine.inc -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regerror.c -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regex2.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regex_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regex_impl.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regexec.c -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regfree.c -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regstrlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regstrlcpy.c -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/regutils.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/lib/Support/xxhash.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Analysis.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/BitReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/BitReader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/BitWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/BitWriter.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Comdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Comdat.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Core.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/DataTypes.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/DebugInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/DebugInfo.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Disassembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Disassembler.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Error.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ErrorHandling.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ExecutionEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ExecutionEngine.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ExternC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/ExternC.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/IRReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/IRReader.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Initialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Initialization.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/LLJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/LLJIT.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Linker.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Object.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Orc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Orc.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/OrcEE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/OrcEE.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Remarks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Remarks.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Support.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Target.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/TargetMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/TargetMachine.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Transforms/IPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Transforms/IPO.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/Types.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/lto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/lto.h -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreter/llvm/llvm-c/module.modulemap -------------------------------------------------------------------------------- /BitCodeInterpreter/BitCodeInterpreterUserDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/BitCodeInterpreterUserDemo.cpp -------------------------------------------------------------------------------- /BitCodeInterpreter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/Info.plist -------------------------------------------------------------------------------- /BitCodeInterpreter/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/SceneDelegate.h -------------------------------------------------------------------------------- /BitCodeInterpreter/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/SceneDelegate.m -------------------------------------------------------------------------------- /BitCodeInterpreter/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/ViewController.h -------------------------------------------------------------------------------- /BitCodeInterpreter/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/ViewController.m -------------------------------------------------------------------------------- /BitCodeInterpreter/main.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/main.bc -------------------------------------------------------------------------------- /BitCodeInterpreter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/BitCodeInterpreter/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TannerJin/BitCodeInterpreter/HEAD/README.md --------------------------------------------------------------------------------