LLVM 17.0.0git
ComplexDeinterleavingPass.h
Go to the documentation of this file.
1//===- ComplexDeinterleavingPass.h - Complex Deinterleaving Pass *- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass implements generation of target-specific intrinsics to support
10// handling of complex number arithmetic and deinterleaving.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CODEGEN_COMPLEXDEINTERLEAVING_H
15#define LLVM_CODEGEN_COMPLEXDEINTERLEAVING_H
16
17#include "llvm/IR/PassManager.h"
19
20namespace llvm {
21
22class Function;
23class TargetMachine;
24
26 : public PassInfoMixin<ComplexDeinterleavingPass> {
27private:
28 TargetMachine *TM;
29
30public:
32
34};
35
37 CAdd,
39 // The following 'operations' are used to represent internal states. Backends
40 // are not expected to try and support these in any capacity.
41 Shuffle,
43};
44
46 Rotation_0 = 0,
47 Rotation_90 = 1,
48 Rotation_180 = 2,
49 Rotation_270 = 3,
50};
51
52} // namespace llvm
53
54#endif // LLVM_CODEGEN_COMPLEXDEINTERLEAVING_H
#define F(x, y, z)
Definition: MD5.cpp:55
const char LLVMTargetMachineRef TM
This header defines various interfaces for pass management in LLVM.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:620
A set of analyses that are preserved following a run of a transformation pass.
Definition: PassManager.h:152
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:78
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:371