Home | History | Annotate | Download | only in Utils

Lines Matching refs:AggregateArgs

51     bool AggregateArgs;
56 : DT(dt), AggregateArgs(AggArgs||AggregateArgsOpt), NumExitBlocks(~0U) {}
275 if (AggregateArgs)
287 if (AggregateArgs && (inputs.size() + outputs.size() > 0)) {
314 if (AggregateArgs) {
334 if (!AggregateArgs) {
385 if (AggregateArgs)
392 if (AggregateArgs) {
404 if (AggregateArgs && (inputs.size() + outputs.size() > 0)) {
437 if (!AggregateArgs)
443 if (AggregateArgs) {
557 if (AggregateArgs) {
572 if (!AggregateArgs) ++OAI;
782 bool AggregateArgs) {
783 return CodeExtractor(&DT, AggregateArgs).ExtractCodeRegion(code);
788 Function* llvm::ExtractLoop(DominatorTree &DT, Loop *L, bool AggregateArgs) {
789 return CodeExtractor(&DT, AggregateArgs).ExtractCodeRegion(L->getBlocks());
794 Function* llvm::ExtractBasicBlock(ArrayRef<BasicBlock*> BBs, bool AggregateArgs){
795 return CodeExtractor(0, AggregateArgs).ExtractCodeRegion(BBs);