Initial revision
authorChris Lattner <sabre@nondot.org>
Wed, 6 Jun 2001 20:29:01 +0000 (20:29 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 6 Jun 2001 20:29:01 +0000 (20:29 +0000)
commit009505452b713ed2e3a8e99c5545a6e721c65495
tree136a71c5b87bdf534d1f20a67558b49226b5a4d6
parent8d0afd3d32d1d67f9aa5df250a1d6955aa8f1ac9
Initial revision

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2 91177308-0d34-0410-b5e6-96231b3b80d8
145 files changed:
Makefile [new file with mode: 0644]
Makefile.common [new file with mode: 0644]
Makefile.rules [new file with mode: 0644]
docs/ChrisNotes.txt [new file with mode: 0644]
docs/HistoricalNotes/2000-11-18-EarlyDesignIdeas.txt [new file with mode: 0644]
docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt [new file with mode: 0644]
docs/HistoricalNotes/2000-12-06-EncodingIdea.txt [new file with mode: 0644]
docs/HistoricalNotes/2000-12-06-MeetingSummary.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-01-31-UniversalIRIdea.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-09-AdveComments.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-13-Reference-Memory.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-05-19-ExceptionResponse.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt [new file with mode: 0644]
docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt [new file with mode: 0644]
docs/LangRef.html [new file with mode: 0644]
getsomesrcs.sh [new file with mode: 0755]
getsrcs.sh [new file with mode: 0755]
include/llvm/Analysis/ModuleAnalyzer.h [new file with mode: 0644]
include/llvm/Analysis/SlotCalculator.h [new file with mode: 0644]
include/llvm/Analysis/Verifier.h [new file with mode: 0644]
include/llvm/Assembly/Parser.h [new file with mode: 0644]
include/llvm/Assembly/Writer.h [new file with mode: 0644]
include/llvm/BasicBlock.h [new file with mode: 0644]
include/llvm/Bytecode/Format.h [new file with mode: 0644]
include/llvm/Bytecode/Primitives.h [new file with mode: 0644]
include/llvm/Bytecode/Reader.h [new file with mode: 0644]
include/llvm/Bytecode/Writer.h [new file with mode: 0644]
include/llvm/ConstPoolVals.h [new file with mode: 0644]
include/llvm/ConstantHandling.h [new file with mode: 0644]
include/llvm/ConstantPool.h [new file with mode: 0644]
include/llvm/DerivedTypes.h [new file with mode: 0644]
include/llvm/Function.h [new file with mode: 0644]
include/llvm/InstrTypes.h [new file with mode: 0644]
include/llvm/Instruction.h [new file with mode: 0644]
include/llvm/Module.h [new file with mode: 0644]
include/llvm/Optimizations/AllOpts.h [new file with mode: 0644]
include/llvm/SlotCalculator.h [new file with mode: 0644]
include/llvm/SymTabValue.h [new file with mode: 0644]
include/llvm/SymbolTable.h [new file with mode: 0644]
include/llvm/Tools/CommandLine.h [new file with mode: 0644]
include/llvm/Tools/DataTypes.h [new file with mode: 0644]
include/llvm/Tools/StringExtras.h [new file with mode: 0644]
include/llvm/Type.h [new file with mode: 0644]
include/llvm/User.h [new file with mode: 0644]
include/llvm/Value.h [new file with mode: 0644]
include/llvm/ValueHolder.h [new file with mode: 0644]
include/llvm/iMemory.h [new file with mode: 0644]
include/llvm/iOperators.h [new file with mode: 0644]
include/llvm/iOther.h [new file with mode: 0644]
include/llvm/iTerminators.h [new file with mode: 0644]
include/llvm/iUnary.h [new file with mode: 0644]
lib/Analysis/Makefile [new file with mode: 0644]
lib/Analysis/ModuleAnalyzer.cpp [new file with mode: 0644]
lib/AsmParser/Lexer.cpp [new file with mode: 0644]
lib/AsmParser/Lexer.l [new file with mode: 0644]
lib/AsmParser/Makefile [new file with mode: 0644]
lib/AsmParser/Parser.cpp [new file with mode: 0644]
lib/AsmParser/ParserInternals.h [new file with mode: 0644]
lib/AsmParser/llvmAsmParser.cpp [new file with mode: 0644]
lib/AsmParser/llvmAsmParser.h [new file with mode: 0644]
lib/AsmParser/llvmAsmParser.y [new file with mode: 0644]
lib/Bytecode/Makefile [new file with mode: 0644]
lib/Bytecode/Reader/ConstantReader.cpp [new file with mode: 0644]
lib/Bytecode/Reader/InstructionReader.cpp [new file with mode: 0644]
lib/Bytecode/Reader/Makefile [new file with mode: 0644]
lib/Bytecode/Reader/Reader.cpp [new file with mode: 0644]
lib/Bytecode/Reader/ReaderInternals.h [new file with mode: 0644]
lib/Bytecode/Writer/ConstantWriter.cpp [new file with mode: 0644]
lib/Bytecode/Writer/InstructionWriter.cpp [new file with mode: 0644]
lib/Bytecode/Writer/Makefile [new file with mode: 0644]
lib/Bytecode/Writer/SlotCalculator.cpp [new file with mode: 0644]
lib/Bytecode/Writer/SlotCalculator.h [new file with mode: 0644]
lib/Bytecode/Writer/Writer.cpp [new file with mode: 0644]
lib/Bytecode/Writer/WriterInternals.h [new file with mode: 0644]
lib/Makefile [new file with mode: 0644]
lib/Transforms/IPO/InlineSimple.cpp [new file with mode: 0644]
lib/Transforms/Scalar/ConstantProp.cpp [new file with mode: 0644]
lib/Transforms/Scalar/DCE.cpp [new file with mode: 0644]
lib/Transforms/Scalar/SymbolStripping.cpp [new file with mode: 0644]
lib/VMCore/AsmWriter.cpp [new file with mode: 0644]
lib/VMCore/BasicBlock.cpp [new file with mode: 0644]
lib/VMCore/ConstantFold.cpp [new file with mode: 0644]
lib/VMCore/ConstantFold.h [new file with mode: 0644]
lib/VMCore/ConstantFolding.h [new file with mode: 0644]
lib/VMCore/ConstantPool.cpp [new file with mode: 0644]
lib/VMCore/Function.cpp [new file with mode: 0644]
lib/VMCore/InstrTypes.cpp [new file with mode: 0644]
lib/VMCore/Instruction.cpp [new file with mode: 0644]
lib/VMCore/Makefile [new file with mode: 0644]
lib/VMCore/Module.cpp [new file with mode: 0644]
lib/VMCore/SlotCalculator.cpp [new file with mode: 0644]
lib/VMCore/SymbolTable.cpp [new file with mode: 0644]
lib/VMCore/Type.cpp [new file with mode: 0644]
lib/VMCore/Value.cpp [new file with mode: 0644]
lib/VMCore/ValueHolderImpl.h [new file with mode: 0644]
lib/VMCore/Verifier.cpp [new file with mode: 0644]
lib/VMCore/iBranch.cpp [new file with mode: 0644]
lib/VMCore/iCall.cpp [new file with mode: 0644]
lib/VMCore/iOperators.cpp [new file with mode: 0644]
lib/VMCore/iReturn.cpp [new file with mode: 0644]
lib/VMCore/iSwitch.cpp [new file with mode: 0644]
test/Feature/TestAsmDisasm.sh [new file with mode: 0755]
test/Feature/TestOptimizer.sh [new file with mode: 0755]
test/Feature/basictest.ll [new file with mode: 0644]
test/Feature/calltest.ll [new file with mode: 0644]
test/Feature/forwardreftest.ll [new file with mode: 0644]
test/Feature/small.ll [new file with mode: 0644]
test/Feature/smallest.ll [new file with mode: 0644]
test/Feature/testmemory.ll [new file with mode: 0644]
test/Feature/testswitch.ll [new file with mode: 0644]
test/Makefile [new file with mode: 0644]
test/Setup [new file with mode: 0644]
test/SetupOpt [new file with mode: 0755]
test/fib.ll [new file with mode: 0644]
test/inlinetest.ll [new file with mode: 0644]
test/opttest.ll [new file with mode: 0644]
test/test2darray.ll [new file with mode: 0644]
test/testpointer.ll [new file with mode: 0644]
test/teststruct.ll [new file with mode: 0644]
tools/Makefile [new file with mode: 0644]
tools/as/Makefile [new file with mode: 0644]
tools/as/as.cpp [new file with mode: 0644]
tools/dis/Makefile [new file with mode: 0644]
tools/dis/dis.cpp [new file with mode: 0644]
tools/llvm-as/Makefile [new file with mode: 0644]
tools/llvm-as/as.cpp [new file with mode: 0644]
tools/llvm-as/llvm-as.cpp [new file with mode: 0644]
tools/llvm-dis/Makefile [new file with mode: 0644]
tools/llvm-dis/dis.cpp [new file with mode: 0644]
tools/llvm-dis/llvm-dis.cpp [new file with mode: 0644]
tools/opt/Makefile [new file with mode: 0644]
tools/opt/opt.cpp [new file with mode: 0644]
tools/opt/test.sh [new file with mode: 0755]
tools/opt/testinline.sh [new file with mode: 0755]
tools/opt/teststrip.sh [new file with mode: 0755]
tools/setup [new file with mode: 0644]
utils/getsrcs.sh [new file with mode: 0755]