Please use GitHub pull requests for new patches. Avoid migrating existing patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
llvm/include/llvm/CodeGen/MachinePassRegistry.def
Show First 20 Lines • Show All 97 Lines • ▼ Show 20 Lines | |||||
// After a pass is converted to new pass manager, its entry should be moved from | // After a pass is converted to new pass manager, its entry should be moved from | ||||
// dummy table to the normal one. For example, for a machine function pass, | // dummy table to the normal one. For example, for a machine function pass, | ||||
// DUMMY_MACHINE_FUNCTION_PASS to MACHINE_FUNCTION_PASS. | // DUMMY_MACHINE_FUNCTION_PASS to MACHINE_FUNCTION_PASS. | ||||
#ifndef DUMMY_FUNCTION_PASS | #ifndef DUMMY_FUNCTION_PASS | ||||
#define DUMMY_FUNCTION_PASS(NAME, PASS_NAME, CONSTRUCTOR) | #define DUMMY_FUNCTION_PASS(NAME, PASS_NAME, CONSTRUCTOR) | ||||
#endif | #endif | ||||
DUMMY_FUNCTION_PASS("expandmemcmp", ExpandMemCmpPass, ()) | DUMMY_FUNCTION_PASS("expandmemcmp", ExpandMemCmpPass, ()) | ||||
DUMMY_FUNCTION_PASS("expandvp", ExpandVectorPredicationPass, ()) | |||||
DUMMY_FUNCTION_PASS("gc-lowering", GCLoweringPass, ()) | DUMMY_FUNCTION_PASS("gc-lowering", GCLoweringPass, ()) | ||||
DUMMY_FUNCTION_PASS("shadow-stack-gc-lowering", ShadowStackGCLoweringPass, ()) | DUMMY_FUNCTION_PASS("shadow-stack-gc-lowering", ShadowStackGCLoweringPass, ()) | ||||
DUMMY_FUNCTION_PASS("sjljehprepare", SjLjEHPreparePass, ()) | DUMMY_FUNCTION_PASS("sjljehprepare", SjLjEHPreparePass, ()) | ||||
DUMMY_FUNCTION_PASS("dwarfehprepare", DwarfEHPass, ()) | DUMMY_FUNCTION_PASS("dwarfehprepare", DwarfEHPass, ()) | ||||
DUMMY_FUNCTION_PASS("winehprepare", WinEHPass, ()) | DUMMY_FUNCTION_PASS("winehprepare", WinEHPass, ()) | ||||
DUMMY_FUNCTION_PASS("wasmehprepare", WasmEHPass, ()) | DUMMY_FUNCTION_PASS("wasmehprepare", WasmEHPass, ()) | ||||
DUMMY_FUNCTION_PASS("codegenprepare", CodeGenPreparePass, ()) | DUMMY_FUNCTION_PASS("codegenprepare", CodeGenPreparePass, ()) | ||||
DUMMY_FUNCTION_PASS("safe-stack", SafeStackPass, ()) | DUMMY_FUNCTION_PASS("safe-stack", SafeStackPass, ()) | ||||
▲ Show 20 Lines • Show All 85 Lines • Show Last 20 Lines |