├── CMakeLists.txt ├── LICENSE.TXT ├── Makefile ├── Makefile.common.in ├── ModuleInfo.txt ├── README ├── Regressions ├── 2006-02-13.ArrayOfObjects.ll ├── 2006-02-23.memcpy.ll ├── 2006-03-04.undefArg.ll ├── 2006-03-05.vaargCall.ll ├── 2006-04-13.MixedAllocaGlobals.ll ├── 2008-09-29.calls.c ├── 2008-09-30.john.ll ├── 2008-10-31.missingECs.ll └── 2009-08-05.packed.ll ├── autoconf ├── AutoRegen.sh ├── aclocal.m4 ├── config.guess ├── config.sub ├── configure.ac ├── install-sh ├── ltmain.sh └── mkinstalldirs ├── configure ├── docs └── dsa-manual │ ├── Makefile │ └── manual.tex ├── include ├── LinkDSA.h ├── LinkPA.h ├── assistDS │ ├── ArgCast.h │ ├── DSNodeEquivs.h │ ├── Devirt.h │ ├── FuncSimplify.h │ ├── FuncSpec.h │ ├── GEPExprArgs.h │ ├── IndCloner.h │ ├── Int2PtrCmp.h │ ├── LoadArgs.h │ ├── MergeGEP.h │ ├── SimplifyExtractValue.h │ ├── SimplifyGEP.h │ ├── SimplifyInsertValue.h │ ├── SimplifyLoad.h │ ├── StructReturnToPointer.h │ ├── TypeChecks.h │ └── TypeChecksOpt.h ├── dsa │ ├── AddressTakenAnalysis.h │ ├── AllocatorIdentification.h │ ├── CallTargets.h │ ├── DSCallGraph.h │ ├── DSGraph.h │ ├── DSGraphTraits.h │ ├── DSNode.h │ ├── DSSupport.h │ ├── DataStructure.h │ ├── EntryPointAnalysis.h │ ├── TypeSafety.h │ ├── keyiterator.h │ ├── stl_util.h │ ├── super_set.h │ └── svset.h ├── poolalloc │ ├── Config │ │ ├── config.h.cmake │ │ └── config.h.in │ ├── Heuristic.h │ ├── MMAPSupport.h │ ├── PoolAllocate.h │ ├── RunTimeAssociate.h │ ├── RuntimeChecks.h │ └── Support │ │ └── MallocAllocator.h └── poolalloc_runtime │ ├── PoolAllocator.h │ ├── Support │ └── SplayTree.h │ └── test.ex ├── lib ├── AssistDS │ ├── ArgCast.cpp │ ├── ArgSimplify.cpp │ ├── CMakeLists.txt │ ├── DSNodeEquivs.cpp │ ├── Devirt.cpp │ ├── DynCount.cpp │ ├── FuncSimplify.cpp │ ├── FuncSpec.cpp │ ├── GEPExprArgs.cpp │ ├── IndCloner.cpp │ ├── Int2PtrCmp.cpp │ ├── LoadArgs.cpp │ ├── Makefile │ ├── MergeGEP.cpp │ ├── SVADevirt.cpp │ ├── SimplifyExtractValue.cpp │ ├── SimplifyGEP.cpp │ ├── SimplifyInsertValue.cpp │ ├── SimplifyLoad.cpp │ ├── StructReturnToPointer.cpp │ ├── TypeChecks.cpp │ └── TypeChecksOpt.cpp ├── CMakeLists.txt ├── DSA │ ├── AddressTakenAnalysis.cpp │ ├── AllocatorIdentification.cpp │ ├── Basic.cpp │ ├── BottomUpClosure.cpp │ ├── CMakeLists.txt │ ├── CallTargets.cpp │ ├── CompleteBottomUp.cpp │ ├── DSCallGraph.cpp │ ├── DSGraph.cpp │ ├── DSTest.cpp │ ├── DataStructure.cpp │ ├── DataStructureStats.cpp │ ├── EntryPointAnalysis.cpp │ ├── EquivClassGraphs.cpp │ ├── GraphChecker.cpp │ ├── Local.cpp │ ├── Makefile │ ├── Printer.cpp │ ├── README │ ├── SanityCheck.cpp │ ├── StdLibPass.cpp │ ├── TopDownClosure.cpp │ └── TypeSafety.cpp ├── Macroscopic │ ├── DeadFieldElimination.cpp │ ├── Makefile │ ├── README.txt │ ├── StructureFieldVisitor.cpp │ └── StructureFieldVisitor.h ├── Makefile └── PoolAllocate │ ├── AccessTrace.cpp │ ├── AllHeapNodesHeuristic.cpp │ ├── AllNodesHeuristic.cpp │ ├── CMakeLists.txt │ ├── Heuristic.cpp │ ├── Makefile │ ├── PAMultipleGlobalPool.cpp │ ├── PASimple.cpp │ ├── PointerCompress.cpp │ ├── PoolAllocate.cpp │ ├── PoolOptimize.cpp │ ├── RunTimeAssociate.cpp │ └── TransformFunctionBody.cpp ├── runtime ├── CMakeLists.txt ├── DynCount │ ├── DynCount.c │ └── Makefile ├── DynamicTypeChecks │ ├── Makefile │ └── TypeRuntime.cpp ├── FL2Allocator │ ├── CMakeLists.txt │ ├── Makefile │ ├── PoolAllocator.cpp │ └── PoolAllocator.h ├── FreeListAllocator │ ├── CMakeLists.txt │ ├── Makefile │ ├── PageManager.cpp │ ├── PageManager.h │ ├── PoolAllocator.cpp │ ├── PoolAllocator.h │ ├── PoolSlab.h │ └── README.txt ├── HeapFrag │ ├── HeapFrag.c │ └── Makefile ├── Makefile ├── PoolAllocator │ ├── Makefile │ ├── PageManager.cpp │ ├── PageManager.h │ ├── PoolAllocator.h │ └── PoolAllocatorBitMask.cpp ├── PreRT │ ├── CMakeLists.txt │ ├── Makefile │ ├── qsort.c │ └── strdup.c └── README.txt ├── test ├── CMakeLists.txt ├── Makefile ├── TEST.FL2.Makefile ├── TEST.FL2.report ├── TEST.calltargets.Makefile ├── TEST.calltargets.report ├── TEST.cputrack.Makefile ├── TEST.cputrack.report ├── TEST.dsaa.Makefile ├── TEST.dsaa.report ├── TEST.dsgraph.Makefile ├── TEST.dsgraph.gnuplot ├── TEST.dsgraph.report ├── TEST.dsprecision.Makefile ├── TEST.dsprecision.report ├── TEST.optzn.Makefile ├── TEST.optzn.report ├── TEST.p4perf.Makefile ├── TEST.p4perf.report ├── TEST.pacompiletime.Makefile ├── TEST.pacompiletime.report ├── TEST.pavtl.Makefile ├── TEST.pavtl.report ├── TEST.perf.Makefile ├── TEST.perf.report ├── TEST.poolalloc.Makefile ├── TEST.poolalloc.report ├── TEST.ptrcomp.Makefile ├── TEST.ptrcomp.report ├── TEST.strace.Makefile ├── TEST.types.Makefile ├── TEST.types.report ├── dsa │ ├── callgraph │ │ ├── addrtaken_caller.ll │ │ ├── addrtaken_main.ll │ │ ├── calltarget_basic.ll │ │ ├── calltargets_typemismatch.ll │ │ ├── calltargets_typemismatch1.ll │ │ ├── calltargets_variadic.ll │ │ ├── chain.ll │ │ ├── class.ll │ │ ├── decode.ll │ │ ├── dstest_anynotall.ll │ │ ├── externfuncs.ll │ │ ├── fptr.ll │ │ ├── indirect_resolve_chain.ll │ │ ├── inheritance1.ll │ │ ├── inheritance2.ll │ │ ├── inheritance3.ll │ │ ├── lit.local.cfg │ │ ├── loop1.c │ │ ├── loop1.ll │ │ ├── loop2.c │ │ ├── loop2.ll │ │ ├── merge.ll │ │ ├── pr7799.ll │ │ ├── scc.ll │ │ ├── scc1.ll │ │ ├── scc3.c │ │ ├── scc3a.c │ │ ├── scc3b.c │ │ ├── table_dispatch.ll │ │ ├── table_dispatch1.ll │ │ ├── test1.ll │ │ ├── testIncomplete.ll │ │ └── varargs.ll │ ├── equivs │ │ ├── lit.local.cfg │ │ ├── no-callees.ll │ │ └── undef-null-calls.ll │ ├── extern │ │ ├── extern.ll │ │ ├── extern2.ll │ │ ├── extern3.ll │ │ ├── extern_global.ll │ │ ├── extern_global2.c │ │ ├── extern_global2.ll │ │ ├── extern_global_escape.c │ │ ├── extern_global_escape.ll │ │ └── lit.local.cfg │ ├── local │ │ ├── arrayPointers.ll │ │ ├── arrayPointers1.ll │ │ ├── arrayPointers2.ll │ │ ├── arrayPointers3.ll │ │ ├── array_in_struct.ll │ │ ├── array_of_struct.ll │ │ ├── arrays.c │ │ ├── arrays.ll │ │ ├── arrays1.c │ │ ├── arrays1.ll │ │ ├── arrays2.c │ │ ├── arrays2.ll │ │ ├── arrays3.c │ │ ├── arrays3.ll │ │ ├── arrays4.c │ │ ├── arrays4.ll │ │ ├── bitfields1.bc │ │ ├── bitfields1.c │ │ ├── bitfields1.ll │ │ ├── bitfields2.c │ │ ├── bitfields2.ll │ │ ├── bitfields3.c │ │ ├── bitfields3.ll │ │ ├── flags.c │ │ ├── flags.ll │ │ ├── lit.local.cfg │ │ ├── malloc.ll │ │ ├── memcpy.ll │ │ ├── multidimarray.ll │ │ ├── ptr.c │ │ ├── ptr.ll │ │ ├── ptr1.c │ │ ├── ptr1.ll │ │ ├── ptr2.c │ │ ├── ptr2.ll │ │ ├── struct.c │ │ ├── struct.ll │ │ ├── struct1.c │ │ ├── struct1.ll │ │ ├── struct2.ll │ │ ├── struct3.ll │ │ ├── struct4.ll │ │ ├── structFirstField.ll │ │ ├── struct_malloc.ll │ │ ├── union_P21.ll │ │ ├── union_P2I.ll │ │ └── union_P2I_1.ll │ ├── regression │ │ ├── 2010-07-08.FPDeclaration.c │ │ ├── 2010-07-09-vastartUndef.ll │ │ ├── 2010-07-12-SCCLeader.ll │ │ ├── 2010-07-16.CBU_MissingGraph.ll │ │ ├── 2010-07-16.MissingIndirectCallee.ll │ │ ├── 2010-07-16.SimpleLoop.ll │ │ ├── 2010-08-17-VarArgSize.ll │ │ ├── 2010-08-19-SimpleCallGraph.ll │ │ ├── 2010-08-23-InlineCallersSegfault.ll │ │ ├── 2011-03-17-CBUAssert.ll │ │ ├── 2012-04-29.GlobalInitCollapse.ll │ │ ├── 2012-04-29.SQLiteBUInfiniteRecursion.ll │ │ ├── 2012-04-29.StructOOBIndex.ll │ │ ├── 2012-05-05.GlobalCtorsDecl.ll │ │ ├── 2012-05-05.GlobalCtorsSCC.ll │ │ ├── 2012-05-05.PtrToIntInfiniteLoop.ll │ │ ├── 2012-09-25.RCForwarding.ll │ │ ├── 2012-09-27.ConstantAggregate.ll │ │ ├── 2012-11-19.ExternFuncSummaries.ll │ │ ├── 2012-11-19.MultipleVAStartAlias.ll │ │ ├── 2012-11-20.TDUnresolvedIncomplete.ll │ │ ├── 2014-05-06.PR19175-CollapseVA.ll │ │ └── lit.local.cfg │ ├── td │ │ ├── ExternFuncNodeTest1.ll │ │ ├── ExternFuncNodeTest2.ll │ │ ├── ExternFuncNodeTest3.ll │ │ ├── basic-global.ll │ │ ├── call.c │ │ ├── call.ll │ │ ├── call1.c │ │ ├── call1.ll │ │ ├── call2.c │ │ ├── call2.ll │ │ ├── chain.ll │ │ ├── checkIncomplete.ll │ │ ├── checkIncomplete1.ll │ │ ├── fptr.ll │ │ ├── lit.local.cfg │ │ ├── mergeArgs.ll │ │ ├── mergeArgs1.ll │ │ ├── params.c │ │ ├── params.ll │ │ ├── params1.c │ │ ├── params1.ll │ │ ├── recur.c │ │ ├── recur.ll │ │ ├── recur1.c │ │ ├── recur1.ll │ │ ├── recur2.c │ │ ├── recur2.ll │ │ ├── recur3.c │ │ ├── scc-flags.ll │ │ ├── scc-global.ll │ │ ├── testcase.c │ │ └── testcase.ll │ ├── types │ │ ├── array2struct.ll │ │ ├── lit.local.cfg │ │ ├── mrv.ll │ │ ├── mrv1.ll │ │ ├── union.c │ │ ├── union.ll │ │ ├── union1.c │ │ ├── union1.ll │ │ ├── union2.c │ │ ├── union2.ll │ │ ├── union3.c │ │ ├── union3.ll │ │ ├── union4.c │ │ ├── union4.ll │ │ ├── union_arrays.c │ │ └── union_arrays.ll │ └── var_arg │ │ ├── basic.ll │ │ ├── basic_32.ll │ │ ├── basic_64.ll │ │ ├── extern.c │ │ ├── lit.local.cfg │ │ ├── multiple_callee.c │ │ ├── multiple_callee_nomodref.c │ │ ├── print.ll │ │ ├── va_copy_32.ll │ │ └── va_copy_64.ll ├── lit.cfg ├── lit.site.cfg.in ├── pa │ ├── clone │ │ ├── AttrTest.ll │ │ ├── Incomplete.ll │ │ ├── computeNodeMappingFail.ll │ │ └── lit.local.cfg │ └── regression │ │ ├── 2010-07-09-ArgAttrMismatch.ll │ │ ├── 2010-08-17-InvalidIterator.ll │ │ ├── 2010-09-14-Fptr.c │ │ ├── 2010-09-14-Fptr_helper.c │ │ └── lit.local.cfg └── type_checks │ ├── correct │ ├── basic.c │ ├── basic_repeat.c │ ├── libclamav_snprintf.c │ ├── vprintf.c │ └── vprintf1.c │ ├── error │ ├── IntUnion.c │ ├── alloc.c │ ├── indirect_simple.c │ ├── libclamav_snprintf1.c │ ├── misalign.c │ ├── misalign1.c │ └── testEndian.c │ └── regression │ ├── nomain.ll │ └── simple_varargs.ll ├── tools ├── CMakeLists.txt ├── Makefile ├── Pa │ ├── CMakeLists.txt │ ├── Makefile │ └── pa.cpp ├── TypeChecker │ ├── CMakeLists.txt │ ├── Makefile │ └── tc.cpp └── WatchDog │ ├── CMakeLists.txt │ ├── LICENSE.TXT │ ├── Makefile │ └── WatchDog.cpp └── utils ├── NightlyCronTab └── NightlyTest.sh /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Makefile.common.in -------------------------------------------------------------------------------- /ModuleInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/ModuleInfo.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/README -------------------------------------------------------------------------------- /Regressions/2006-02-13.ArrayOfObjects.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2006-02-13.ArrayOfObjects.ll -------------------------------------------------------------------------------- /Regressions/2006-02-23.memcpy.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2006-02-23.memcpy.ll -------------------------------------------------------------------------------- /Regressions/2006-03-04.undefArg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2006-03-04.undefArg.ll -------------------------------------------------------------------------------- /Regressions/2006-03-05.vaargCall.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2006-03-05.vaargCall.ll -------------------------------------------------------------------------------- /Regressions/2006-04-13.MixedAllocaGlobals.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2006-04-13.MixedAllocaGlobals.ll -------------------------------------------------------------------------------- /Regressions/2008-09-29.calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2008-09-29.calls.c -------------------------------------------------------------------------------- /Regressions/2008-09-30.john.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2008-09-30.john.ll -------------------------------------------------------------------------------- /Regressions/2008-10-31.missingECs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2008-10-31.missingECs.ll -------------------------------------------------------------------------------- /Regressions/2009-08-05.packed.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/Regressions/2009-08-05.packed.ll -------------------------------------------------------------------------------- /autoconf/AutoRegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/AutoRegen.sh -------------------------------------------------------------------------------- /autoconf/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/aclocal.m4 -------------------------------------------------------------------------------- /autoconf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/config.guess -------------------------------------------------------------------------------- /autoconf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/config.sub -------------------------------------------------------------------------------- /autoconf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/configure.ac -------------------------------------------------------------------------------- /autoconf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/install-sh -------------------------------------------------------------------------------- /autoconf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/ltmain.sh -------------------------------------------------------------------------------- /autoconf/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/autoconf/mkinstalldirs -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/configure -------------------------------------------------------------------------------- /docs/dsa-manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/docs/dsa-manual/Makefile -------------------------------------------------------------------------------- /docs/dsa-manual/manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/docs/dsa-manual/manual.tex -------------------------------------------------------------------------------- /include/LinkDSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/LinkDSA.h -------------------------------------------------------------------------------- /include/LinkPA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/LinkPA.h -------------------------------------------------------------------------------- /include/assistDS/ArgCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/ArgCast.h -------------------------------------------------------------------------------- /include/assistDS/DSNodeEquivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/DSNodeEquivs.h -------------------------------------------------------------------------------- /include/assistDS/Devirt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/Devirt.h -------------------------------------------------------------------------------- /include/assistDS/FuncSimplify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/FuncSimplify.h -------------------------------------------------------------------------------- /include/assistDS/FuncSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/FuncSpec.h -------------------------------------------------------------------------------- /include/assistDS/GEPExprArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/GEPExprArgs.h -------------------------------------------------------------------------------- /include/assistDS/IndCloner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/IndCloner.h -------------------------------------------------------------------------------- /include/assistDS/Int2PtrCmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/Int2PtrCmp.h -------------------------------------------------------------------------------- /include/assistDS/LoadArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/LoadArgs.h -------------------------------------------------------------------------------- /include/assistDS/MergeGEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/MergeGEP.h -------------------------------------------------------------------------------- /include/assistDS/SimplifyExtractValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/SimplifyExtractValue.h -------------------------------------------------------------------------------- /include/assistDS/SimplifyGEP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/SimplifyGEP.h -------------------------------------------------------------------------------- /include/assistDS/SimplifyInsertValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/SimplifyInsertValue.h -------------------------------------------------------------------------------- /include/assistDS/SimplifyLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/SimplifyLoad.h -------------------------------------------------------------------------------- /include/assistDS/StructReturnToPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/StructReturnToPointer.h -------------------------------------------------------------------------------- /include/assistDS/TypeChecks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/TypeChecks.h -------------------------------------------------------------------------------- /include/assistDS/TypeChecksOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/assistDS/TypeChecksOpt.h -------------------------------------------------------------------------------- /include/dsa/AddressTakenAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/AddressTakenAnalysis.h -------------------------------------------------------------------------------- /include/dsa/AllocatorIdentification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/AllocatorIdentification.h -------------------------------------------------------------------------------- /include/dsa/CallTargets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/CallTargets.h -------------------------------------------------------------------------------- /include/dsa/DSCallGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DSCallGraph.h -------------------------------------------------------------------------------- /include/dsa/DSGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DSGraph.h -------------------------------------------------------------------------------- /include/dsa/DSGraphTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DSGraphTraits.h -------------------------------------------------------------------------------- /include/dsa/DSNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DSNode.h -------------------------------------------------------------------------------- /include/dsa/DSSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DSSupport.h -------------------------------------------------------------------------------- /include/dsa/DataStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/DataStructure.h -------------------------------------------------------------------------------- /include/dsa/EntryPointAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/EntryPointAnalysis.h -------------------------------------------------------------------------------- /include/dsa/TypeSafety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/TypeSafety.h -------------------------------------------------------------------------------- /include/dsa/keyiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/keyiterator.h -------------------------------------------------------------------------------- /include/dsa/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/stl_util.h -------------------------------------------------------------------------------- /include/dsa/super_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/super_set.h -------------------------------------------------------------------------------- /include/dsa/svset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/dsa/svset.h -------------------------------------------------------------------------------- /include/poolalloc/Config/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/Config/config.h.cmake -------------------------------------------------------------------------------- /include/poolalloc/Config/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/Config/config.h.in -------------------------------------------------------------------------------- /include/poolalloc/Heuristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/Heuristic.h -------------------------------------------------------------------------------- /include/poolalloc/MMAPSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/MMAPSupport.h -------------------------------------------------------------------------------- /include/poolalloc/PoolAllocate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/PoolAllocate.h -------------------------------------------------------------------------------- /include/poolalloc/RunTimeAssociate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/RunTimeAssociate.h -------------------------------------------------------------------------------- /include/poolalloc/RuntimeChecks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/RuntimeChecks.h -------------------------------------------------------------------------------- /include/poolalloc/Support/MallocAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc/Support/MallocAllocator.h -------------------------------------------------------------------------------- /include/poolalloc_runtime/PoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc_runtime/PoolAllocator.h -------------------------------------------------------------------------------- /include/poolalloc_runtime/Support/SplayTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc_runtime/Support/SplayTree.h -------------------------------------------------------------------------------- /include/poolalloc_runtime/test.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/include/poolalloc_runtime/test.ex -------------------------------------------------------------------------------- /lib/AssistDS/ArgCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/ArgCast.cpp -------------------------------------------------------------------------------- /lib/AssistDS/ArgSimplify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/ArgSimplify.cpp -------------------------------------------------------------------------------- /lib/AssistDS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/CMakeLists.txt -------------------------------------------------------------------------------- /lib/AssistDS/DSNodeEquivs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/DSNodeEquivs.cpp -------------------------------------------------------------------------------- /lib/AssistDS/Devirt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/Devirt.cpp -------------------------------------------------------------------------------- /lib/AssistDS/DynCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/DynCount.cpp -------------------------------------------------------------------------------- /lib/AssistDS/FuncSimplify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/FuncSimplify.cpp -------------------------------------------------------------------------------- /lib/AssistDS/FuncSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/FuncSpec.cpp -------------------------------------------------------------------------------- /lib/AssistDS/GEPExprArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/GEPExprArgs.cpp -------------------------------------------------------------------------------- /lib/AssistDS/IndCloner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/IndCloner.cpp -------------------------------------------------------------------------------- /lib/AssistDS/Int2PtrCmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/Int2PtrCmp.cpp -------------------------------------------------------------------------------- /lib/AssistDS/LoadArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/LoadArgs.cpp -------------------------------------------------------------------------------- /lib/AssistDS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/Makefile -------------------------------------------------------------------------------- /lib/AssistDS/MergeGEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/MergeGEP.cpp -------------------------------------------------------------------------------- /lib/AssistDS/SVADevirt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/SVADevirt.cpp -------------------------------------------------------------------------------- /lib/AssistDS/SimplifyExtractValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/SimplifyExtractValue.cpp -------------------------------------------------------------------------------- /lib/AssistDS/SimplifyGEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/SimplifyGEP.cpp -------------------------------------------------------------------------------- /lib/AssistDS/SimplifyInsertValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/SimplifyInsertValue.cpp -------------------------------------------------------------------------------- /lib/AssistDS/SimplifyLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/SimplifyLoad.cpp -------------------------------------------------------------------------------- /lib/AssistDS/StructReturnToPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/StructReturnToPointer.cpp -------------------------------------------------------------------------------- /lib/AssistDS/TypeChecks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/TypeChecks.cpp -------------------------------------------------------------------------------- /lib/AssistDS/TypeChecksOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/AssistDS/TypeChecksOpt.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/DSA/AddressTakenAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/AddressTakenAnalysis.cpp -------------------------------------------------------------------------------- /lib/DSA/AllocatorIdentification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/AllocatorIdentification.cpp -------------------------------------------------------------------------------- /lib/DSA/Basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/Basic.cpp -------------------------------------------------------------------------------- /lib/DSA/BottomUpClosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/BottomUpClosure.cpp -------------------------------------------------------------------------------- /lib/DSA/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/CMakeLists.txt -------------------------------------------------------------------------------- /lib/DSA/CallTargets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/CallTargets.cpp -------------------------------------------------------------------------------- /lib/DSA/CompleteBottomUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/CompleteBottomUp.cpp -------------------------------------------------------------------------------- /lib/DSA/DSCallGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/DSCallGraph.cpp -------------------------------------------------------------------------------- /lib/DSA/DSGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/DSGraph.cpp -------------------------------------------------------------------------------- /lib/DSA/DSTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/DSTest.cpp -------------------------------------------------------------------------------- /lib/DSA/DataStructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/DataStructure.cpp -------------------------------------------------------------------------------- /lib/DSA/DataStructureStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/DataStructureStats.cpp -------------------------------------------------------------------------------- /lib/DSA/EntryPointAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/EntryPointAnalysis.cpp -------------------------------------------------------------------------------- /lib/DSA/EquivClassGraphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/EquivClassGraphs.cpp -------------------------------------------------------------------------------- /lib/DSA/GraphChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/GraphChecker.cpp -------------------------------------------------------------------------------- /lib/DSA/Local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/Local.cpp -------------------------------------------------------------------------------- /lib/DSA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/Makefile -------------------------------------------------------------------------------- /lib/DSA/Printer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/Printer.cpp -------------------------------------------------------------------------------- /lib/DSA/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/README -------------------------------------------------------------------------------- /lib/DSA/SanityCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/SanityCheck.cpp -------------------------------------------------------------------------------- /lib/DSA/StdLibPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/StdLibPass.cpp -------------------------------------------------------------------------------- /lib/DSA/TopDownClosure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/TopDownClosure.cpp -------------------------------------------------------------------------------- /lib/DSA/TypeSafety.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/DSA/TypeSafety.cpp -------------------------------------------------------------------------------- /lib/Macroscopic/DeadFieldElimination.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Macroscopic/DeadFieldElimination.cpp -------------------------------------------------------------------------------- /lib/Macroscopic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Macroscopic/Makefile -------------------------------------------------------------------------------- /lib/Macroscopic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Macroscopic/README.txt -------------------------------------------------------------------------------- /lib/Macroscopic/StructureFieldVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Macroscopic/StructureFieldVisitor.cpp -------------------------------------------------------------------------------- /lib/Macroscopic/StructureFieldVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Macroscopic/StructureFieldVisitor.h -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/PoolAllocate/AccessTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/AccessTrace.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/AllHeapNodesHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/AllHeapNodesHeuristic.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/AllNodesHeuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/AllNodesHeuristic.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/CMakeLists.txt -------------------------------------------------------------------------------- /lib/PoolAllocate/Heuristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/Heuristic.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/Makefile -------------------------------------------------------------------------------- /lib/PoolAllocate/PAMultipleGlobalPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/PAMultipleGlobalPool.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/PASimple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/PASimple.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/PointerCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/PointerCompress.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/PoolAllocate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/PoolAllocate.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/PoolOptimize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/PoolOptimize.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/RunTimeAssociate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/RunTimeAssociate.cpp -------------------------------------------------------------------------------- /lib/PoolAllocate/TransformFunctionBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/lib/PoolAllocate/TransformFunctionBody.cpp -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/DynCount/DynCount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/DynCount/DynCount.c -------------------------------------------------------------------------------- /runtime/DynCount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/DynCount/Makefile -------------------------------------------------------------------------------- /runtime/DynamicTypeChecks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/DynamicTypeChecks/Makefile -------------------------------------------------------------------------------- /runtime/DynamicTypeChecks/TypeRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/DynamicTypeChecks/TypeRuntime.cpp -------------------------------------------------------------------------------- /runtime/FL2Allocator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FL2Allocator/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/FL2Allocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FL2Allocator/Makefile -------------------------------------------------------------------------------- /runtime/FL2Allocator/PoolAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FL2Allocator/PoolAllocator.cpp -------------------------------------------------------------------------------- /runtime/FL2Allocator/PoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FL2Allocator/PoolAllocator.h -------------------------------------------------------------------------------- /runtime/FreeListAllocator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/FreeListAllocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/Makefile -------------------------------------------------------------------------------- /runtime/FreeListAllocator/PageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/PageManager.cpp -------------------------------------------------------------------------------- /runtime/FreeListAllocator/PageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/PageManager.h -------------------------------------------------------------------------------- /runtime/FreeListAllocator/PoolAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/PoolAllocator.cpp -------------------------------------------------------------------------------- /runtime/FreeListAllocator/PoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/PoolAllocator.h -------------------------------------------------------------------------------- /runtime/FreeListAllocator/PoolSlab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/PoolSlab.h -------------------------------------------------------------------------------- /runtime/FreeListAllocator/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/FreeListAllocator/README.txt -------------------------------------------------------------------------------- /runtime/HeapFrag/HeapFrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/HeapFrag/HeapFrag.c -------------------------------------------------------------------------------- /runtime/HeapFrag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/HeapFrag/Makefile -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/PoolAllocator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PoolAllocator/Makefile -------------------------------------------------------------------------------- /runtime/PoolAllocator/PageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PoolAllocator/PageManager.cpp -------------------------------------------------------------------------------- /runtime/PoolAllocator/PageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PoolAllocator/PageManager.h -------------------------------------------------------------------------------- /runtime/PoolAllocator/PoolAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PoolAllocator/PoolAllocator.h -------------------------------------------------------------------------------- /runtime/PoolAllocator/PoolAllocatorBitMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PoolAllocator/PoolAllocatorBitMask.cpp -------------------------------------------------------------------------------- /runtime/PreRT/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PreRT/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/PreRT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PreRT/Makefile -------------------------------------------------------------------------------- /runtime/PreRT/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PreRT/qsort.c -------------------------------------------------------------------------------- /runtime/PreRT/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/PreRT/strdup.c -------------------------------------------------------------------------------- /runtime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/runtime/README.txt -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/TEST.FL2.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.FL2.Makefile -------------------------------------------------------------------------------- /test/TEST.FL2.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.FL2.report -------------------------------------------------------------------------------- /test/TEST.calltargets.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.calltargets.Makefile -------------------------------------------------------------------------------- /test/TEST.calltargets.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.calltargets.report -------------------------------------------------------------------------------- /test/TEST.cputrack.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.cputrack.Makefile -------------------------------------------------------------------------------- /test/TEST.cputrack.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.cputrack.report -------------------------------------------------------------------------------- /test/TEST.dsaa.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsaa.Makefile -------------------------------------------------------------------------------- /test/TEST.dsaa.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsaa.report -------------------------------------------------------------------------------- /test/TEST.dsgraph.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsgraph.Makefile -------------------------------------------------------------------------------- /test/TEST.dsgraph.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsgraph.gnuplot -------------------------------------------------------------------------------- /test/TEST.dsgraph.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsgraph.report -------------------------------------------------------------------------------- /test/TEST.dsprecision.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsprecision.Makefile -------------------------------------------------------------------------------- /test/TEST.dsprecision.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.dsprecision.report -------------------------------------------------------------------------------- /test/TEST.optzn.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.optzn.Makefile -------------------------------------------------------------------------------- /test/TEST.optzn.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.optzn.report -------------------------------------------------------------------------------- /test/TEST.p4perf.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.p4perf.Makefile -------------------------------------------------------------------------------- /test/TEST.p4perf.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.p4perf.report -------------------------------------------------------------------------------- /test/TEST.pacompiletime.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.pacompiletime.Makefile -------------------------------------------------------------------------------- /test/TEST.pacompiletime.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.pacompiletime.report -------------------------------------------------------------------------------- /test/TEST.pavtl.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.pavtl.Makefile -------------------------------------------------------------------------------- /test/TEST.pavtl.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.pavtl.report -------------------------------------------------------------------------------- /test/TEST.perf.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.perf.Makefile -------------------------------------------------------------------------------- /test/TEST.perf.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.perf.report -------------------------------------------------------------------------------- /test/TEST.poolalloc.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.poolalloc.Makefile -------------------------------------------------------------------------------- /test/TEST.poolalloc.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.poolalloc.report -------------------------------------------------------------------------------- /test/TEST.ptrcomp.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.ptrcomp.Makefile -------------------------------------------------------------------------------- /test/TEST.ptrcomp.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.ptrcomp.report -------------------------------------------------------------------------------- /test/TEST.strace.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.strace.Makefile -------------------------------------------------------------------------------- /test/TEST.types.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.types.Makefile -------------------------------------------------------------------------------- /test/TEST.types.report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/TEST.types.report -------------------------------------------------------------------------------- /test/dsa/callgraph/addrtaken_caller.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/addrtaken_caller.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/addrtaken_main.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/addrtaken_main.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/calltarget_basic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/calltarget_basic.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/calltargets_typemismatch.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/calltargets_typemismatch.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/calltargets_typemismatch1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/calltargets_typemismatch1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/calltargets_variadic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/calltargets_variadic.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/chain.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/chain.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/class.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/class.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/decode.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/decode.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/dstest_anynotall.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/dstest_anynotall.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/externfuncs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/externfuncs.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/fptr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/fptr.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/indirect_resolve_chain.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/indirect_resolve_chain.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/inheritance1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/inheritance1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/inheritance2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/inheritance2.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/inheritance3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/inheritance3.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll', '.cpp'] 2 | -------------------------------------------------------------------------------- /test/dsa/callgraph/loop1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/loop1.c -------------------------------------------------------------------------------- /test/dsa/callgraph/loop1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/loop1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/loop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/loop2.c -------------------------------------------------------------------------------- /test/dsa/callgraph/loop2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/loop2.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/merge.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/merge.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/pr7799.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/pr7799.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/scc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/scc.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/scc1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/scc1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/scc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/scc3.c -------------------------------------------------------------------------------- /test/dsa/callgraph/scc3a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/scc3a.c -------------------------------------------------------------------------------- /test/dsa/callgraph/scc3b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/scc3b.c -------------------------------------------------------------------------------- /test/dsa/callgraph/table_dispatch.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/table_dispatch.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/table_dispatch1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/table_dispatch1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/test1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/test1.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/testIncomplete.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/testIncomplete.ll -------------------------------------------------------------------------------- /test/dsa/callgraph/varargs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/callgraph/varargs.ll -------------------------------------------------------------------------------- /test/dsa/equivs/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/equivs/lit.local.cfg -------------------------------------------------------------------------------- /test/dsa/equivs/no-callees.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/equivs/no-callees.ll -------------------------------------------------------------------------------- /test/dsa/equivs/undef-null-calls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/equivs/undef-null-calls.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern2.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern3.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern_global.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern_global.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern_global2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern_global2.c -------------------------------------------------------------------------------- /test/dsa/extern/extern_global2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern_global2.ll -------------------------------------------------------------------------------- /test/dsa/extern/extern_global_escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern_global_escape.c -------------------------------------------------------------------------------- /test/dsa/extern/extern_global_escape.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/extern/extern_global_escape.ll -------------------------------------------------------------------------------- /test/dsa/extern/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll', '.cpp'] 2 | -------------------------------------------------------------------------------- /test/dsa/local/arrayPointers.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrayPointers.ll -------------------------------------------------------------------------------- /test/dsa/local/arrayPointers1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrayPointers1.ll -------------------------------------------------------------------------------- /test/dsa/local/arrayPointers2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrayPointers2.ll -------------------------------------------------------------------------------- /test/dsa/local/arrayPointers3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrayPointers3.ll -------------------------------------------------------------------------------- /test/dsa/local/array_in_struct.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/array_in_struct.ll -------------------------------------------------------------------------------- /test/dsa/local/array_of_struct.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/array_of_struct.ll -------------------------------------------------------------------------------- /test/dsa/local/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays.c -------------------------------------------------------------------------------- /test/dsa/local/arrays.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays.ll -------------------------------------------------------------------------------- /test/dsa/local/arrays1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays1.c -------------------------------------------------------------------------------- /test/dsa/local/arrays1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays1.ll -------------------------------------------------------------------------------- /test/dsa/local/arrays2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays2.c -------------------------------------------------------------------------------- /test/dsa/local/arrays2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays2.ll -------------------------------------------------------------------------------- /test/dsa/local/arrays3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays3.c -------------------------------------------------------------------------------- /test/dsa/local/arrays3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays3.ll -------------------------------------------------------------------------------- /test/dsa/local/arrays4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays4.c -------------------------------------------------------------------------------- /test/dsa/local/arrays4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/arrays4.ll -------------------------------------------------------------------------------- /test/dsa/local/bitfields1.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields1.bc -------------------------------------------------------------------------------- /test/dsa/local/bitfields1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields1.c -------------------------------------------------------------------------------- /test/dsa/local/bitfields1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields1.ll -------------------------------------------------------------------------------- /test/dsa/local/bitfields2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields2.c -------------------------------------------------------------------------------- /test/dsa/local/bitfields2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields2.ll -------------------------------------------------------------------------------- /test/dsa/local/bitfields3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields3.c -------------------------------------------------------------------------------- /test/dsa/local/bitfields3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/bitfields3.ll -------------------------------------------------------------------------------- /test/dsa/local/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/flags.c -------------------------------------------------------------------------------- /test/dsa/local/flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/flags.ll -------------------------------------------------------------------------------- /test/dsa/local/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/lit.local.cfg -------------------------------------------------------------------------------- /test/dsa/local/malloc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/malloc.ll -------------------------------------------------------------------------------- /test/dsa/local/memcpy.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/memcpy.ll -------------------------------------------------------------------------------- /test/dsa/local/multidimarray.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/multidimarray.ll -------------------------------------------------------------------------------- /test/dsa/local/ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr.c -------------------------------------------------------------------------------- /test/dsa/local/ptr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr.ll -------------------------------------------------------------------------------- /test/dsa/local/ptr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr1.c -------------------------------------------------------------------------------- /test/dsa/local/ptr1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr1.ll -------------------------------------------------------------------------------- /test/dsa/local/ptr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr2.c -------------------------------------------------------------------------------- /test/dsa/local/ptr2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/ptr2.ll -------------------------------------------------------------------------------- /test/dsa/local/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct.c -------------------------------------------------------------------------------- /test/dsa/local/struct.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct.ll -------------------------------------------------------------------------------- /test/dsa/local/struct1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct1.c -------------------------------------------------------------------------------- /test/dsa/local/struct1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct1.ll -------------------------------------------------------------------------------- /test/dsa/local/struct2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct2.ll -------------------------------------------------------------------------------- /test/dsa/local/struct3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct3.ll -------------------------------------------------------------------------------- /test/dsa/local/struct4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct4.ll -------------------------------------------------------------------------------- /test/dsa/local/structFirstField.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/structFirstField.ll -------------------------------------------------------------------------------- /test/dsa/local/struct_malloc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/struct_malloc.ll -------------------------------------------------------------------------------- /test/dsa/local/union_P21.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/union_P21.ll -------------------------------------------------------------------------------- /test/dsa/local/union_P2I.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/union_P2I.ll -------------------------------------------------------------------------------- /test/dsa/local/union_P2I_1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/local/union_P2I_1.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-08.FPDeclaration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-08.FPDeclaration.c -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-09-vastartUndef.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-09-vastartUndef.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-12-SCCLeader.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-12-SCCLeader.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-16.CBU_MissingGraph.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-16.CBU_MissingGraph.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-16.MissingIndirectCallee.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-16.MissingIndirectCallee.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-07-16.SimpleLoop.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-07-16.SimpleLoop.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-08-17-VarArgSize.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-08-17-VarArgSize.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-08-19-SimpleCallGraph.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-08-19-SimpleCallGraph.ll -------------------------------------------------------------------------------- /test/dsa/regression/2010-08-23-InlineCallersSegfault.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2010-08-23-InlineCallersSegfault.ll -------------------------------------------------------------------------------- /test/dsa/regression/2011-03-17-CBUAssert.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2011-03-17-CBUAssert.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-04-29.GlobalInitCollapse.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-04-29.GlobalInitCollapse.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-04-29.SQLiteBUInfiniteRecursion.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-04-29.SQLiteBUInfiniteRecursion.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-04-29.StructOOBIndex.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-04-29.StructOOBIndex.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-05-05.GlobalCtorsDecl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-05-05.GlobalCtorsDecl.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-05-05.GlobalCtorsSCC.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-05-05.GlobalCtorsSCC.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-05-05.PtrToIntInfiniteLoop.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-05-05.PtrToIntInfiniteLoop.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-09-25.RCForwarding.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-09-25.RCForwarding.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-09-27.ConstantAggregate.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-09-27.ConstantAggregate.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-11-19.ExternFuncSummaries.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-11-19.ExternFuncSummaries.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-11-19.MultipleVAStartAlias.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-11-19.MultipleVAStartAlias.ll -------------------------------------------------------------------------------- /test/dsa/regression/2012-11-20.TDUnresolvedIncomplete.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2012-11-20.TDUnresolvedIncomplete.ll -------------------------------------------------------------------------------- /test/dsa/regression/2014-05-06.PR19175-CollapseVA.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/2014-05-06.PR19175-CollapseVA.ll -------------------------------------------------------------------------------- /test/dsa/regression/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/regression/lit.local.cfg -------------------------------------------------------------------------------- /test/dsa/td/ExternFuncNodeTest1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/ExternFuncNodeTest1.ll -------------------------------------------------------------------------------- /test/dsa/td/ExternFuncNodeTest2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/ExternFuncNodeTest2.ll -------------------------------------------------------------------------------- /test/dsa/td/ExternFuncNodeTest3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/ExternFuncNodeTest3.ll -------------------------------------------------------------------------------- /test/dsa/td/basic-global.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/basic-global.ll -------------------------------------------------------------------------------- /test/dsa/td/call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call.c -------------------------------------------------------------------------------- /test/dsa/td/call.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call.ll -------------------------------------------------------------------------------- /test/dsa/td/call1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call1.c -------------------------------------------------------------------------------- /test/dsa/td/call1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call1.ll -------------------------------------------------------------------------------- /test/dsa/td/call2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call2.c -------------------------------------------------------------------------------- /test/dsa/td/call2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/call2.ll -------------------------------------------------------------------------------- /test/dsa/td/chain.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/chain.ll -------------------------------------------------------------------------------- /test/dsa/td/checkIncomplete.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/checkIncomplete.ll -------------------------------------------------------------------------------- /test/dsa/td/checkIncomplete1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/checkIncomplete1.ll -------------------------------------------------------------------------------- /test/dsa/td/fptr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/fptr.ll -------------------------------------------------------------------------------- /test/dsa/td/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll', '.cpp'] 2 | -------------------------------------------------------------------------------- /test/dsa/td/mergeArgs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/mergeArgs.ll -------------------------------------------------------------------------------- /test/dsa/td/mergeArgs1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/mergeArgs1.ll -------------------------------------------------------------------------------- /test/dsa/td/params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/params.c -------------------------------------------------------------------------------- /test/dsa/td/params.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/params.ll -------------------------------------------------------------------------------- /test/dsa/td/params1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/params1.c -------------------------------------------------------------------------------- /test/dsa/td/params1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/params1.ll -------------------------------------------------------------------------------- /test/dsa/td/recur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur.c -------------------------------------------------------------------------------- /test/dsa/td/recur.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur.ll -------------------------------------------------------------------------------- /test/dsa/td/recur1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur1.c -------------------------------------------------------------------------------- /test/dsa/td/recur1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur1.ll -------------------------------------------------------------------------------- /test/dsa/td/recur2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur2.c -------------------------------------------------------------------------------- /test/dsa/td/recur2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur2.ll -------------------------------------------------------------------------------- /test/dsa/td/recur3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/recur3.c -------------------------------------------------------------------------------- /test/dsa/td/scc-flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/scc-flags.ll -------------------------------------------------------------------------------- /test/dsa/td/scc-global.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/scc-global.ll -------------------------------------------------------------------------------- /test/dsa/td/testcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/testcase.c -------------------------------------------------------------------------------- /test/dsa/td/testcase.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/td/testcase.ll -------------------------------------------------------------------------------- /test/dsa/types/array2struct.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/array2struct.ll -------------------------------------------------------------------------------- /test/dsa/types/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/lit.local.cfg -------------------------------------------------------------------------------- /test/dsa/types/mrv.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/mrv.ll -------------------------------------------------------------------------------- /test/dsa/types/mrv1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/mrv1.ll -------------------------------------------------------------------------------- /test/dsa/types/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union.c -------------------------------------------------------------------------------- /test/dsa/types/union.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union.ll -------------------------------------------------------------------------------- /test/dsa/types/union1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union1.c -------------------------------------------------------------------------------- /test/dsa/types/union1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union1.ll -------------------------------------------------------------------------------- /test/dsa/types/union2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union2.c -------------------------------------------------------------------------------- /test/dsa/types/union2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union2.ll -------------------------------------------------------------------------------- /test/dsa/types/union3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union3.c -------------------------------------------------------------------------------- /test/dsa/types/union3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union3.ll -------------------------------------------------------------------------------- /test/dsa/types/union4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union4.c -------------------------------------------------------------------------------- /test/dsa/types/union4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union4.ll -------------------------------------------------------------------------------- /test/dsa/types/union_arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union_arrays.c -------------------------------------------------------------------------------- /test/dsa/types/union_arrays.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/types/union_arrays.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/basic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/basic.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/basic_32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/basic_32.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/basic_64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/basic_64.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/extern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/extern.c -------------------------------------------------------------------------------- /test/dsa/var_arg/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/lit.local.cfg -------------------------------------------------------------------------------- /test/dsa/var_arg/multiple_callee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/multiple_callee.c -------------------------------------------------------------------------------- /test/dsa/var_arg/multiple_callee_nomodref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/multiple_callee_nomodref.c -------------------------------------------------------------------------------- /test/dsa/var_arg/print.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/print.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/va_copy_32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/va_copy_32.ll -------------------------------------------------------------------------------- /test/dsa/var_arg/va_copy_64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/dsa/var_arg/va_copy_64.ll -------------------------------------------------------------------------------- /test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/lit.cfg -------------------------------------------------------------------------------- /test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/lit.site.cfg.in -------------------------------------------------------------------------------- /test/pa/clone/AttrTest.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/clone/AttrTest.ll -------------------------------------------------------------------------------- /test/pa/clone/Incomplete.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/clone/Incomplete.ll -------------------------------------------------------------------------------- /test/pa/clone/computeNodeMappingFail.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/clone/computeNodeMappingFail.ll -------------------------------------------------------------------------------- /test/pa/clone/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/clone/lit.local.cfg -------------------------------------------------------------------------------- /test/pa/regression/2010-07-09-ArgAttrMismatch.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/regression/2010-07-09-ArgAttrMismatch.ll -------------------------------------------------------------------------------- /test/pa/regression/2010-08-17-InvalidIterator.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/regression/2010-08-17-InvalidIterator.ll -------------------------------------------------------------------------------- /test/pa/regression/2010-09-14-Fptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/regression/2010-09-14-Fptr.c -------------------------------------------------------------------------------- /test/pa/regression/2010-09-14-Fptr_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/regression/2010-09-14-Fptr_helper.c -------------------------------------------------------------------------------- /test/pa/regression/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/pa/regression/lit.local.cfg -------------------------------------------------------------------------------- /test/type_checks/correct/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/correct/basic.c -------------------------------------------------------------------------------- /test/type_checks/correct/basic_repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/correct/basic_repeat.c -------------------------------------------------------------------------------- /test/type_checks/correct/libclamav_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/correct/libclamav_snprintf.c -------------------------------------------------------------------------------- /test/type_checks/correct/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/correct/vprintf.c -------------------------------------------------------------------------------- /test/type_checks/correct/vprintf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/correct/vprintf1.c -------------------------------------------------------------------------------- /test/type_checks/error/IntUnion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/IntUnion.c -------------------------------------------------------------------------------- /test/type_checks/error/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/alloc.c -------------------------------------------------------------------------------- /test/type_checks/error/indirect_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/indirect_simple.c -------------------------------------------------------------------------------- /test/type_checks/error/libclamav_snprintf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/libclamav_snprintf1.c -------------------------------------------------------------------------------- /test/type_checks/error/misalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/misalign.c -------------------------------------------------------------------------------- /test/type_checks/error/misalign1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/misalign1.c -------------------------------------------------------------------------------- /test/type_checks/error/testEndian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/error/testEndian.c -------------------------------------------------------------------------------- /test/type_checks/regression/nomain.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/regression/nomain.ll -------------------------------------------------------------------------------- /test/type_checks/regression/simple_varargs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/test/type_checks/regression/simple_varargs.ll -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/Pa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/Pa/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Pa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/Pa/Makefile -------------------------------------------------------------------------------- /tools/Pa/pa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/Pa/pa.cpp -------------------------------------------------------------------------------- /tools/TypeChecker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/TypeChecker/CMakeLists.txt -------------------------------------------------------------------------------- /tools/TypeChecker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/TypeChecker/Makefile -------------------------------------------------------------------------------- /tools/TypeChecker/tc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/TypeChecker/tc.cpp -------------------------------------------------------------------------------- /tools/WatchDog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/WatchDog/CMakeLists.txt -------------------------------------------------------------------------------- /tools/WatchDog/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/WatchDog/LICENSE.TXT -------------------------------------------------------------------------------- /tools/WatchDog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/WatchDog/Makefile -------------------------------------------------------------------------------- /tools/WatchDog/WatchDog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/tools/WatchDog/WatchDog.cpp -------------------------------------------------------------------------------- /utils/NightlyCronTab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/utils/NightlyCronTab -------------------------------------------------------------------------------- /utils/NightlyTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/poolalloc/HEAD/utils/NightlyTest.sh --------------------------------------------------------------------------------