search for: scheduledagprinter

Displaying 3 results from an estimated 3 matches for "scheduledagprinter".

2013 Jan 10
0
[LLVMdev] Call graph printer/viewer
...,Printer} * lib/Analysis/DomPrinter.cpp * lib/Analysis/RegionPrinter.cpp 2) Otherwise, use low-level interface {View,Write}Graph * lib/Analysis/CFGPrinter.cpp - View the graph, defines passes for viewing/printing * lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp * lib/CodeGen/ScheduleDAGPrinter.cpp - View the graph, no associate pass * lib/CodeGen/EdgeBundles.cpp - MachineFunction pass. Provide a member function to view the graph using a custom ViewGraph function because the default implementation "it won't work" * lib/CodeGen/MachineFunction...
2015 Jul 29
1
[LLVMdev] Error when i am using command make -j4 command in cygwin to compile safecode
...ease+Asserts build llvm[2]: Compiling RegisterPressure.cpp for Release+Asserts build llvm[2]: Compiling RegisterScavenging.cpp for Release+Asserts build llvm[2]: Compiling ScheduleDAG.cpp for Release+Asserts build llvm[2]: Compiling ScheduleDAGInstrs.cpp for Release+Asserts build llvm[2]: Compiling ScheduleDAGPrinter.cpp for Release+Asserts build llvm[2]: Compiling ScoreboardHazardRecognizer.cpp for Release+Asserts build llvm[2]: Compiling ShadowStackGC.cpp for Release+Asserts build llvm[2]: Compiling ShadowStackGCLowering.cpp for Release+Asserts build llvm[2]: Compiling ShrinkWrap.cpp for Release+Asserts build...
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...en/CMakeLists.txt index 461ac55..f115bfe 100644 --- a/lib/CodeGen/CMakeLists.txt +++ b/lib/CodeGen/CMakeLists.txt @@ -89,6 +89,7 @@ add_llvm_library(LLVMCodeGen RegisterCoalescer.cpp RegisterPressure.cpp RegisterScavenging.cpp + SafeStack.cpp ScheduleDAG.cpp ScheduleDAGInstrs.cpp ScheduleDAGPrinter.cpp diff --git a/lib/CodeGen/Passes.cpp b/lib/CodeGen/Passes.cpp index 4762116..5eee1a1 100644 --- a/lib/CodeGen/Passes.cpp +++ b/lib/CodeGen/Passes.cpp @@ -458,6 +458,9 @@ void TargetPassConfig::addISelPrepare() { if (!DisableVerify) addPass(createDebugInfoVerifierPass()); + // Add both...