search for: 0212be66

Displaying 1 result from an estimated 1 matches for "0212be66".

2017 Jan 05
2
A pass which moves AllocaInst into function entry block?
Is there an existing LLVM pass which moves alloca instructions into the function entry block? In particular, I am seeing an alloca which is ideal for this movement: the alloca is not in the function entry block, it allocates a constant size, it is *not* within a loop, and it is in a block which post-dominates the function entry (i.e., it invariably executes with every function invocation). I