├── LICENSE.TXT ├── include └── llvm │ ├── ADT │ └── Triple.h │ ├── BinaryFormat │ ├── ELF.h │ └── Magic.h │ ├── CodeGen │ ├── ISDOpcodes.h │ ├── MachineBasicBlock.h │ ├── MachineFunction.h │ ├── MachineValueType.h │ ├── RuntimeLibcalls.def │ ├── RuntimeLibcalls.h │ ├── SelectionDAG.h │ ├── TargetLoweringObjectFileImpl.h │ ├── ValueTypes.h │ └── ValueTypes.td │ ├── IR │ └── CallingConv.h │ ├── MC │ ├── MCAsmInfo.h │ ├── MCAsmInfoOMF.h │ ├── MCContext.h │ ├── MCDirectives.h │ ├── MCOMFObjectWriter.h │ ├── MCOMFStreamer.h │ ├── MCObjectFileInfo.h │ ├── MCSection.h │ ├── MCSectionOMF.h │ ├── MCSymbol.h │ └── MCSymbolOMF.h │ ├── Object │ ├── Binary.h │ ├── OMF.h │ ├── OMFObjectFile.h │ └── ObjectFile.h │ ├── Support │ ├── FileSystem.h │ ├── MathExtras.h │ └── TargetRegistry.h │ └── Target │ └── TargetCallingConv.td ├── lib ├── BinaryFormat │ └── Magic.cpp ├── CodeGen │ ├── AsmPrinter │ │ └── AsmPrinter.cpp │ ├── CodeGenPrepare.cpp │ ├── InlineSpiller.cpp │ ├── MachineBasicBlock.cpp │ ├── MachineFunction.cpp │ ├── MachineInstrBundle.cpp │ ├── MachineVerifier.cpp │ ├── SelectionDAG │ │ ├── DAGCombiner.cpp │ │ ├── FastISel.cpp │ │ ├── FunctionLoweringInfo.cpp │ │ ├── InstrEmitter.cpp │ │ ├── LegalizeDAG.cpp │ │ ├── LegalizeIntegerTypes.cpp │ │ ├── LegalizeTypes.cpp │ │ ├── LegalizeTypes.h │ │ ├── LegalizeTypesGeneric.cpp │ │ ├── LegalizeVectorTypes.cpp │ │ ├── SelectionDAG.cpp │ │ ├── SelectionDAGBuilder.cpp │ │ ├── SelectionDAGBuilder.h │ │ └── TargetLowering.cpp │ ├── TargetLoweringBase.cpp │ └── TargetLoweringObjectFileImpl.cpp ├── IR │ └── ValueTypes.cpp ├── MC │ ├── CMakeLists.txt │ ├── MCAsmInfo.cpp │ ├── MCAsmInfoOMF.cpp │ ├── MCAsmStreamer.cpp │ ├── MCContext.cpp │ ├── MCELFStreamer.cpp │ ├── MCMachOStreamer.cpp │ ├── MCOMFStreamer.cpp │ ├── MCObjectFileInfo.cpp │ ├── MCParser │ │ └── AsmParser.cpp │ ├── MCSectionOMF.cpp │ ├── MCStreamer.cpp │ └── OMFObjectWriter.cpp ├── Object │ ├── Binary.cpp │ ├── CMakeLists.txt │ ├── OMFObjectFile.cpp │ ├── ObjectFile.cpp │ └── SymbolicFile.cpp ├── Support │ ├── APInt.cpp │ ├── Path.cpp │ └── Triple.cpp ├── Target │ ├── AMDGPU │ │ ├── AMDGPUISelLowering.cpp │ │ └── R600ISelLowering.cpp │ ├── ARM │ │ ├── AsmParser │ │ │ └── ARMAsmParser.cpp │ │ ├── LICENSE.TXT │ │ └── MCTargetDesc │ │ │ └── ARMELFStreamer.cpp │ ├── LLVMBuild.txt │ ├── X86 │ │ ├── X86FastISel.cpp │ │ └── X86ISelLowering.cpp │ └── Z80 │ │ ├── AsmParser │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── Z80AsmParser.cpp │ │ └── Z80Operand.h │ │ ├── CMakeLists.txt │ │ ├── InstPrinter │ │ ├── CMakeLists.txt │ │ ├── EZ80InstPrinter.cpp │ │ ├── EZ80InstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── Z80InstPrinter.cpp │ │ ├── Z80InstPrinter.h │ │ ├── Z80InstPrinterBase.cpp │ │ └── Z80InstPrinterBase.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── Z80AsmBackend.cpp │ │ ├── Z80ELFObjectWriter.cpp │ │ ├── Z80FixupKinds.h │ │ ├── Z80MCAsmInfo.cpp │ │ ├── Z80MCAsmInfo.h │ │ ├── Z80MCCodeEmitter.cpp │ │ ├── Z80MCTargetDesc.cpp │ │ ├── Z80MCTargetDesc.h │ │ ├── Z80OMFObjectWriter.cpp │ │ ├── Z80TargetStreamer.cpp │ │ └── Z80TargetStreamer.h │ │ ├── TargetInfo │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ └── Z80TargetInfo.cpp │ │ ├── Z80.h │ │ ├── Z80.td │ │ ├── Z80AsmPrinter.cpp │ │ ├── Z80AsmPrinter.h │ │ ├── Z80CallFrameOptimization.cpp │ │ ├── Z80CallingConv.td │ │ ├── Z80ExpandPseudo.cpp │ │ ├── Z80FrameLowering.cpp │ │ ├── Z80FrameLowering.h │ │ ├── Z80ISelDAGToDAG.cpp │ │ ├── Z80ISelLowering.cpp │ │ ├── Z80ISelLowering.h │ │ ├── Z80InstrFormats.td │ │ ├── Z80InstrInfo.cpp │ │ ├── Z80InstrInfo.h │ │ ├── Z80InstrInfo.td │ │ ├── Z80MCInstLower.cpp │ │ ├── Z80MachineFunctionInfo.cpp │ │ ├── Z80MachineFunctionInfo.h │ │ ├── Z80MachineLateOptimization.cpp │ │ ├── Z80RegisterInfo.cpp │ │ ├── Z80RegisterInfo.h │ │ ├── Z80RegisterInfo.td │ │ ├── Z80SelectionDAGInfo.h │ │ ├── Z80Subtarget.cpp │ │ ├── Z80Subtarget.h │ │ ├── Z80TargetMachine.cpp │ │ └── Z80TargetMachine.h └── Transforms │ └── InstCombine │ └── InstCombineCasts.cpp ├── test ├── CodeGen │ ├── Hexagon │ │ └── adde.ll │ ├── MSP430 │ │ └── Inst8rr.ll │ ├── Mips │ │ └── dynamic-stack-realignment.ll │ ├── NVPTX │ │ └── add-128bit.ll │ └── X86 │ │ ├── legalize-shl-vec.ll │ │ ├── promote-vec3.ll │ │ ├── vselect-pcmp.ll │ │ └── widen_bitops-0.ll └── TableGen │ └── intrinsic-varargs.td ├── tools ├── clang │ ├── LICENSE.TXT │ ├── include │ │ └── clang │ │ │ ├── AST │ │ │ ├── ASTContext.h │ │ │ ├── BuiltinTypes.def │ │ │ └── TypeLoc.h │ │ │ ├── Basic │ │ │ ├── Attr.td │ │ │ ├── DiagnosticSemaKinds.td │ │ │ ├── Specifiers.h │ │ │ ├── TargetBuiltins.h │ │ │ ├── TargetInfo.h │ │ │ └── TokenKinds.def │ │ │ ├── Driver │ │ │ └── Job.h │ │ │ ├── Sema │ │ │ └── DeclSpec.h │ │ │ ├── Serialization │ │ │ └── ASTBitCodes.h │ │ │ └── module.modulemap │ ├── lib │ │ ├── AST │ │ │ ├── ASTContext.cpp │ │ │ ├── ExprConstant.cpp │ │ │ ├── ItaniumMangle.cpp │ │ │ ├── MicrosoftMangle.cpp │ │ │ ├── NSAPI.cpp │ │ │ ├── Type.cpp │ │ │ └── TypeLoc.cpp │ │ ├── Analysis │ │ │ └── PrintfFormatString.cpp │ │ ├── Basic │ │ │ ├── CMakeLists.txt │ │ │ ├── TargetInfo.cpp │ │ │ ├── Targets.cpp │ │ │ └── Targets │ │ │ │ ├── Z80.cpp │ │ │ │ └── Z80.h │ │ ├── CodeGen │ │ │ ├── CGCleanup.cpp │ │ │ ├── CGDebugInfo.cpp │ │ │ ├── CodeGenFunction.cpp │ │ │ ├── CodeGenFunction.h │ │ │ ├── CodeGenModule.cpp │ │ │ ├── CodeGenTBAA.cpp │ │ │ ├── CodeGenTypes.cpp │ │ │ ├── ItaniumCXXABI.cpp │ │ │ └── TargetInfo.cpp │ │ ├── Driver │ │ │ ├── CMakeLists.txt │ │ │ ├── Driver.cpp │ │ │ ├── InputInfo.h │ │ │ ├── Job.cpp │ │ │ └── ToolChains │ │ │ │ ├── Clang.cpp │ │ │ │ ├── CommonArgs.cpp │ │ │ │ ├── ZDS.cpp │ │ │ │ └── ZDS.h │ │ ├── Format │ │ │ └── FormatToken.cpp │ │ ├── Frontend │ │ │ └── InitPreprocessor.cpp │ │ ├── Index │ │ │ └── USRGeneration.cpp │ │ ├── Parse │ │ │ ├── ParseDecl.cpp │ │ │ ├── ParseExprCXX.cpp │ │ │ └── ParseTentative.cpp │ │ ├── Sema │ │ │ ├── DeclSpec.cpp │ │ │ ├── Sema.cpp │ │ │ ├── SemaDecl.cpp │ │ │ ├── SemaDeclAttr.cpp │ │ │ ├── SemaOverload.cpp │ │ │ ├── SemaTemplateVariadic.cpp │ │ │ ├── SemaType.cpp │ │ │ └── TreeTransform.h │ │ └── Serialization │ │ │ ├── ASTCommon.cpp │ │ │ ├── ASTReader.cpp │ │ │ └── ASTWriter.cpp │ └── test │ │ ├── Driver │ │ └── sanitizer-ld.c │ │ └── SemaCXX │ │ ├── deleted-operator.cpp │ │ └── overloaded-builtin-operators.cpp └── llvm-readobj │ ├── CMakeLists.txt │ ├── OMFDumper.cpp │ ├── ObjDumper.h │ └── llvm-readobj.cpp └── utils ├── TableGen ├── CodeGenInstruction.cpp ├── CodeGenInstruction.h ├── CodeGenTarget.cpp ├── CodeGenTarget.h └── DAGISelMatcherGen.cpp └── emacs └── llvm-mode.el /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /include/llvm/ADT/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/ADT/Triple.h -------------------------------------------------------------------------------- /include/llvm/BinaryFormat/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/BinaryFormat/ELF.h -------------------------------------------------------------------------------- /include/llvm/BinaryFormat/Magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/BinaryFormat/Magic.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/ISDOpcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/ISDOpcodes.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/MachineBasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/MachineBasicBlock.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/MachineFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/MachineFunction.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/MachineValueType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/MachineValueType.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/RuntimeLibcalls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/RuntimeLibcalls.def -------------------------------------------------------------------------------- /include/llvm/CodeGen/RuntimeLibcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/RuntimeLibcalls.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/SelectionDAG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/SelectionDAG.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/TargetLoweringObjectFileImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/ValueTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/ValueTypes.h -------------------------------------------------------------------------------- /include/llvm/CodeGen/ValueTypes.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/CodeGen/ValueTypes.td -------------------------------------------------------------------------------- /include/llvm/IR/CallingConv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/IR/CallingConv.h -------------------------------------------------------------------------------- /include/llvm/MC/MCAsmInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCAsmInfo.h -------------------------------------------------------------------------------- /include/llvm/MC/MCAsmInfoOMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCAsmInfoOMF.h -------------------------------------------------------------------------------- /include/llvm/MC/MCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCContext.h -------------------------------------------------------------------------------- /include/llvm/MC/MCDirectives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCDirectives.h -------------------------------------------------------------------------------- /include/llvm/MC/MCOMFObjectWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCOMFObjectWriter.h -------------------------------------------------------------------------------- /include/llvm/MC/MCOMFStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCOMFStreamer.h -------------------------------------------------------------------------------- /include/llvm/MC/MCObjectFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCObjectFileInfo.h -------------------------------------------------------------------------------- /include/llvm/MC/MCSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCSection.h -------------------------------------------------------------------------------- /include/llvm/MC/MCSectionOMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCSectionOMF.h -------------------------------------------------------------------------------- /include/llvm/MC/MCSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCSymbol.h -------------------------------------------------------------------------------- /include/llvm/MC/MCSymbolOMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/MC/MCSymbolOMF.h -------------------------------------------------------------------------------- /include/llvm/Object/Binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Object/Binary.h -------------------------------------------------------------------------------- /include/llvm/Object/OMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Object/OMF.h -------------------------------------------------------------------------------- /include/llvm/Object/OMFObjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Object/OMFObjectFile.h -------------------------------------------------------------------------------- /include/llvm/Object/ObjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Object/ObjectFile.h -------------------------------------------------------------------------------- /include/llvm/Support/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Support/FileSystem.h -------------------------------------------------------------------------------- /include/llvm/Support/MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Support/MathExtras.h -------------------------------------------------------------------------------- /include/llvm/Support/TargetRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Support/TargetRegistry.h -------------------------------------------------------------------------------- /include/llvm/Target/TargetCallingConv.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/include/llvm/Target/TargetCallingConv.td -------------------------------------------------------------------------------- /lib/BinaryFormat/Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/BinaryFormat/Magic.cpp -------------------------------------------------------------------------------- /lib/CodeGen/AsmPrinter/AsmPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/AsmPrinter/AsmPrinter.cpp -------------------------------------------------------------------------------- /lib/CodeGen/CodeGenPrepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/CodeGenPrepare.cpp -------------------------------------------------------------------------------- /lib/CodeGen/InlineSpiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/InlineSpiller.cpp -------------------------------------------------------------------------------- /lib/CodeGen/MachineBasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/MachineBasicBlock.cpp -------------------------------------------------------------------------------- /lib/CodeGen/MachineFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/MachineFunction.cpp -------------------------------------------------------------------------------- /lib/CodeGen/MachineInstrBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/MachineInstrBundle.cpp -------------------------------------------------------------------------------- /lib/CodeGen/MachineVerifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/MachineVerifier.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/DAGCombiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/DAGCombiner.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/FastISel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/FastISel.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/InstrEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/InstrEmitter.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeTypes.h -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/SelectionDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/SelectionDAG.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h -------------------------------------------------------------------------------- /lib/CodeGen/SelectionDAG/TargetLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/SelectionDAG/TargetLowering.cpp -------------------------------------------------------------------------------- /lib/CodeGen/TargetLoweringBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/TargetLoweringBase.cpp -------------------------------------------------------------------------------- /lib/CodeGen/TargetLoweringObjectFileImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/CodeGen/TargetLoweringObjectFileImpl.cpp -------------------------------------------------------------------------------- /lib/IR/ValueTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/IR/ValueTypes.cpp -------------------------------------------------------------------------------- /lib/MC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/CMakeLists.txt -------------------------------------------------------------------------------- /lib/MC/MCAsmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCAsmInfo.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmInfoOMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCAsmInfoOMF.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCAsmStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCContext.cpp -------------------------------------------------------------------------------- /lib/MC/MCELFStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCELFStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCMachOStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCMachOStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCOMFStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCOMFStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCObjectFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCObjectFileInfo.cpp -------------------------------------------------------------------------------- /lib/MC/MCParser/AsmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCParser/AsmParser.cpp -------------------------------------------------------------------------------- /lib/MC/MCSectionOMF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCSectionOMF.cpp -------------------------------------------------------------------------------- /lib/MC/MCStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/MCStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/OMFObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/MC/OMFObjectWriter.cpp -------------------------------------------------------------------------------- /lib/Object/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Object/Binary.cpp -------------------------------------------------------------------------------- /lib/Object/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Object/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Object/OMFObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Object/OMFObjectFile.cpp -------------------------------------------------------------------------------- /lib/Object/ObjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Object/ObjectFile.cpp -------------------------------------------------------------------------------- /lib/Object/SymbolicFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Object/SymbolicFile.cpp -------------------------------------------------------------------------------- /lib/Support/APInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Support/APInt.cpp -------------------------------------------------------------------------------- /lib/Support/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Support/Path.cpp -------------------------------------------------------------------------------- /lib/Support/Triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Support/Triple.cpp -------------------------------------------------------------------------------- /lib/Target/AMDGPU/AMDGPUISelLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/AMDGPU/AMDGPUISelLowering.cpp -------------------------------------------------------------------------------- /lib/Target/AMDGPU/R600ISelLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/AMDGPU/R600ISelLowering.cpp -------------------------------------------------------------------------------- /lib/Target/ARM/AsmParser/ARMAsmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/ARM/AsmParser/ARMAsmParser.cpp -------------------------------------------------------------------------------- /lib/Target/ARM/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/ARM/LICENSE.TXT -------------------------------------------------------------------------------- /lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp -------------------------------------------------------------------------------- /lib/Target/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/X86/X86FastISel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/X86/X86FastISel.cpp -------------------------------------------------------------------------------- /lib/Target/X86/X86ISelLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/X86/X86ISelLowering.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/AsmParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/AsmParser/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Target/Z80/AsmParser/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/AsmParser/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Z80/AsmParser/Z80AsmParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/AsmParser/Z80AsmParser.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/AsmParser/Z80Operand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/AsmParser/Z80Operand.h -------------------------------------------------------------------------------- /lib/Target/Z80/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/EZ80InstPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/EZ80InstPrinter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/EZ80InstPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/EZ80InstPrinter.h -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/Z80InstPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/Z80InstPrinter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/Z80InstPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/Z80InstPrinter.h -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/Z80InstPrinterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/Z80InstPrinterBase.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/InstPrinter/Z80InstPrinterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/InstPrinter/Z80InstPrinterBase.h -------------------------------------------------------------------------------- /lib/Target/Z80/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80AsmBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80AsmBackend.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80ELFObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80ELFObjectWriter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80FixupKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80FixupKinds.h -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80MCAsmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80MCAsmInfo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80MCAsmInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80MCAsmInfo.h -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80MCCodeEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80MCCodeEmitter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80MCTargetDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80MCTargetDesc.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80MCTargetDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80MCTargetDesc.h -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80OMFObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80OMFObjectWriter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80TargetStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80TargetStreamer.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/MCTargetDesc/Z80TargetStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/MCTargetDesc/Z80TargetStreamer.h -------------------------------------------------------------------------------- /lib/Target/Z80/TargetInfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/TargetInfo/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Target/Z80/TargetInfo/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/TargetInfo/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Z80/TargetInfo/Z80TargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/TargetInfo/Z80TargetInfo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80.td -------------------------------------------------------------------------------- /lib/Target/Z80/Z80AsmPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80AsmPrinter.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80AsmPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80AsmPrinter.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80CallFrameOptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80CallFrameOptimization.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80CallingConv.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80CallingConv.td -------------------------------------------------------------------------------- /lib/Target/Z80/Z80ExpandPseudo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80ExpandPseudo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80FrameLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80FrameLowering.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80FrameLowering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80FrameLowering.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80ISelDAGToDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80ISelDAGToDAG.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80ISelLowering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80ISelLowering.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80ISelLowering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80ISelLowering.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80InstrFormats.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80InstrFormats.td -------------------------------------------------------------------------------- /lib/Target/Z80/Z80InstrInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80InstrInfo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80InstrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80InstrInfo.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80InstrInfo.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80InstrInfo.td -------------------------------------------------------------------------------- /lib/Target/Z80/Z80MCInstLower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80MCInstLower.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80MachineFunctionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80MachineFunctionInfo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80MachineFunctionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80MachineFunctionInfo.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80MachineLateOptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80MachineLateOptimization.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80RegisterInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80RegisterInfo.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80RegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80RegisterInfo.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80RegisterInfo.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80RegisterInfo.td -------------------------------------------------------------------------------- /lib/Target/Z80/Z80SelectionDAGInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80SelectionDAGInfo.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80Subtarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80Subtarget.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80Subtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80Subtarget.h -------------------------------------------------------------------------------- /lib/Target/Z80/Z80TargetMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80TargetMachine.cpp -------------------------------------------------------------------------------- /lib/Target/Z80/Z80TargetMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Target/Z80/Z80TargetMachine.h -------------------------------------------------------------------------------- /lib/Transforms/InstCombine/InstCombineCasts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/lib/Transforms/InstCombine/InstCombineCasts.cpp -------------------------------------------------------------------------------- /test/CodeGen/Hexagon/adde.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/Hexagon/adde.ll -------------------------------------------------------------------------------- /test/CodeGen/MSP430/Inst8rr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/MSP430/Inst8rr.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/dynamic-stack-realignment.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/Mips/dynamic-stack-realignment.ll -------------------------------------------------------------------------------- /test/CodeGen/NVPTX/add-128bit.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/NVPTX/add-128bit.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/legalize-shl-vec.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/X86/legalize-shl-vec.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/promote-vec3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/X86/promote-vec3.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/vselect-pcmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/X86/vselect-pcmp.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/widen_bitops-0.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/CodeGen/X86/widen_bitops-0.ll -------------------------------------------------------------------------------- /test/TableGen/intrinsic-varargs.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/test/TableGen/intrinsic-varargs.td -------------------------------------------------------------------------------- /tools/clang/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/LICENSE.TXT -------------------------------------------------------------------------------- /tools/clang/include/clang/AST/ASTContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/AST/ASTContext.h -------------------------------------------------------------------------------- /tools/clang/include/clang/AST/BuiltinTypes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/AST/BuiltinTypes.def -------------------------------------------------------------------------------- /tools/clang/include/clang/AST/TypeLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/AST/TypeLoc.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/Attr.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/Attr.td -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/DiagnosticSemaKinds.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/Specifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/Specifiers.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/TargetBuiltins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/TargetBuiltins.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/TargetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/TargetInfo.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Basic/TokenKinds.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Basic/TokenKinds.def -------------------------------------------------------------------------------- /tools/clang/include/clang/Driver/Job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Driver/Job.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Sema/DeclSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Sema/DeclSpec.h -------------------------------------------------------------------------------- /tools/clang/include/clang/Serialization/ASTBitCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/Serialization/ASTBitCodes.h -------------------------------------------------------------------------------- /tools/clang/include/clang/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/include/clang/module.modulemap -------------------------------------------------------------------------------- /tools/clang/lib/AST/ASTContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/ASTContext.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/ExprConstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/ExprConstant.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/ItaniumMangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/ItaniumMangle.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/MicrosoftMangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/MicrosoftMangle.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/NSAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/NSAPI.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/Type.cpp -------------------------------------------------------------------------------- /tools/clang/lib/AST/TypeLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/AST/TypeLoc.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Analysis/PrintfFormatString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Analysis/PrintfFormatString.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /tools/clang/lib/Basic/TargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Basic/TargetInfo.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Basic/Targets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Basic/Targets.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Basic/Targets/Z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Basic/Targets/Z80.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Basic/Targets/Z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Basic/Targets/Z80.h -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CGCleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CGCleanup.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CGDebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CGDebugInfo.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CodeGenFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CodeGenFunction.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CodeGenFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CodeGenFunction.h -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CodeGenModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CodeGenModule.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CodeGenTBAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CodeGenTBAA.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/CodeGenTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/CodeGenTypes.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/ItaniumCXXABI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp -------------------------------------------------------------------------------- /tools/clang/lib/CodeGen/TargetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/CodeGen/TargetInfo.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/CMakeLists.txt -------------------------------------------------------------------------------- /tools/clang/lib/Driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/Driver.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/InputInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/InputInfo.h -------------------------------------------------------------------------------- /tools/clang/lib/Driver/Job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/Job.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/ToolChains/Clang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/ToolChains/Clang.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/ToolChains/CommonArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/ToolChains/ZDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/ToolChains/ZDS.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Driver/ToolChains/ZDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Driver/ToolChains/ZDS.h -------------------------------------------------------------------------------- /tools/clang/lib/Format/FormatToken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Format/FormatToken.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Frontend/InitPreprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Frontend/InitPreprocessor.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Index/USRGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Index/USRGeneration.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Parse/ParseDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Parse/ParseDecl.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Parse/ParseExprCXX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Parse/ParseExprCXX.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Parse/ParseTentative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Parse/ParseTentative.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/DeclSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/DeclSpec.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/Sema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/Sema.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/SemaDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/SemaDecl.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/SemaDeclAttr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/SemaDeclAttr.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/SemaOverload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/SemaOverload.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/SemaTemplateVariadic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/SemaTemplateVariadic.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/SemaType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/SemaType.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Sema/TreeTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Sema/TreeTransform.h -------------------------------------------------------------------------------- /tools/clang/lib/Serialization/ASTCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Serialization/ASTCommon.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Serialization/ASTReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Serialization/ASTReader.cpp -------------------------------------------------------------------------------- /tools/clang/lib/Serialization/ASTWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/lib/Serialization/ASTWriter.cpp -------------------------------------------------------------------------------- /tools/clang/test/Driver/sanitizer-ld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/test/Driver/sanitizer-ld.c -------------------------------------------------------------------------------- /tools/clang/test/SemaCXX/deleted-operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/test/SemaCXX/deleted-operator.cpp -------------------------------------------------------------------------------- /tools/clang/test/SemaCXX/overloaded-builtin-operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/clang/test/SemaCXX/overloaded-builtin-operators.cpp -------------------------------------------------------------------------------- /tools/llvm-readobj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/llvm-readobj/CMakeLists.txt -------------------------------------------------------------------------------- /tools/llvm-readobj/OMFDumper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/llvm-readobj/OMFDumper.cpp -------------------------------------------------------------------------------- /tools/llvm-readobj/ObjDumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/llvm-readobj/ObjDumper.h -------------------------------------------------------------------------------- /tools/llvm-readobj/llvm-readobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/tools/llvm-readobj/llvm-readobj.cpp -------------------------------------------------------------------------------- /utils/TableGen/CodeGenInstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/TableGen/CodeGenInstruction.cpp -------------------------------------------------------------------------------- /utils/TableGen/CodeGenInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/TableGen/CodeGenInstruction.h -------------------------------------------------------------------------------- /utils/TableGen/CodeGenTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/TableGen/CodeGenTarget.cpp -------------------------------------------------------------------------------- /utils/TableGen/CodeGenTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/TableGen/CodeGenTarget.h -------------------------------------------------------------------------------- /utils/TableGen/DAGISelMatcherGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/TableGen/DAGISelMatcherGen.cpp -------------------------------------------------------------------------------- /utils/emacs/llvm-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacobly0/llvm-z80/HEAD/utils/emacs/llvm-mode.el --------------------------------------------------------------------------------