From aa6c855c8e945b2b9b9fcaeb49ebe034b7a006d2 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 4 Jul 2010 17:36:43 +0000 Subject: [PATCH] indmemrem and lowerallocs are gone. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107587 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/Passes.html | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/docs/Passes.html b/docs/Passes.html index b49d3a0e269..8b9bd07f11c 100644 --- a/docs/Passes.html +++ b/docs/Passes.html @@ -128,7 +128,6 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print "

\n" if ! -globaldceDead Global Elimination -globaloptGlobal Variable Optimizer -gvnGlobal Value Numbering --indmemremIndirect Malloc and Free Removal -indvarsCanonicalize Induction Variables -inlineFunction Integration/Inlining -insert-block-profilingInsert instrumentation for block profiling @@ -152,7 +151,6 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print "

\n" if ! -loop-unrollUnroll loops -loop-unswitchUnswitch loops -loopsimplifyCanonicalize natural loops --lowerallocsLower allocations from instructions to calls -lowerinvokeLower invoke and unwind, for unwindless code generators -lowersetjmpLower Set Jump -lowerswitchLower SwitchInst's to branches @@ -829,23 +827,6 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print "

\n" if ! - -

- Indirect Malloc and Free Removal -
-
-

- This pass finds places where memory allocation functions may escape into - indirect land. Some transforms are much easier (aka possible) only if free - or malloc are not called indirectly. -

- -

- Thus find places where the address of memory functions are taken and construct - bounce functions with direct calls of those functions. -

-
-
Canonicalize Induction Variables @@ -1327,22 +1308,6 @@ if (X < 3) {

- -
- Lower allocations from instructions to calls -
-
-

- Turn malloc and free instructions into @malloc and - @free calls. -

- -

- This is a target-dependent tranformation because it depends on the size of - data types and alignment constraints. -

-
-
Lower invoke and unwind, for unwindless code generators -- 2.34.1