aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineTraceMetrics.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-07-23fix crash in machine trace metrics due to processing dbg_value instructions (...Sanjay Patel1-0/+4
2015-07-06use range-based for loops; NFCISanjay Patel1-10/+8
2015-07-06use range-based for loops; NFCISanjay Patel1-8/+6
2015-07-04use valid bits to avoid unnecessary machine trace metric recomputationsSanjay Patel1-5/+10
2015-06-30use range-based for loops; NFCISanjay Patel1-7/+5
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-5/+5
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-5/+5
2015-05-29CodeGen: Use mop_iterator instead of MIOperands/ConstMIOperandsMatthias Braun1-21/+28
2015-05-21use range-based for-loops; NFCISanjay Patel1-6/+2
2015-04-15Add range iterators for post order and inverse post order. Use themDaniel Berlin1-10/+6
2015-01-27The subtarget is cached on the MachineFunction. Access it directly.Eric Christopher1-4/+3
2014-11-19Update SetVector to rely on the underlying set's insert to return a pair<iter...David Blaikie1-1/+1
2014-09-02Change MCSchedModel to be a struct of statically initialized data.Pete Cooper1-1/+1
2014-08-27Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just...Craig Topper1-6/+3
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-2/+2
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-2/+2
2014-08-03MachineCombiner Pass for selecting faster instructionGerolf Hoflehner1-14/+45
2014-04-30Convert more loops to range-based equivalentsAlexey Samsonov1-28/+22
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-11/+12
2014-04-12Retire llvm::array_endof in favor of non-member std::end.Benjamin Kramer1-1/+1
2014-03-13Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changingOwen Anderson1-1/+1
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-3/+3
2014-03-02[C++11] Replace llvm::tie with std::tie.Benjamin Kramer1-1/+1
2013-06-15Machine Model: Add MicroOpBufferSize and resource BufferSize.Andrew Trick1-6/+4
2013-04-27Generalize the MachineTraceMetrics public API.Andrew Trick1-1/+15
2013-04-02Allow MachineTraceMetrics to be used when the model has no resources.Jakob Stoklund Olesen1-3/+11
2013-04-02Count processor resources individually in MachineTraceMetrics.Jakob Stoklund Olesen1-9/+144
2013-03-07Rename isEarlierInSameTrace to isUsefulDominator.Jakob Stoklund Olesen1-2/+2
2013-01-17Move MachineTraceMetrics.h into include/llvm/CodeGen.Jakob Stoklund Olesen1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-4/+4
2012-10-11Pass an explicit operand number to addLiveIns.Jakob Stoklund Olesen1-7/+7
2012-10-08Don't crash on extra evil irreducible control flow.Jakob Stoklund Olesen1-2/+2
2012-10-04Switch MachineTraceMetrics to the new TargetSchedModel interface.Jakob Stoklund Olesen1-31/+25
2012-08-10Give MachineTraceMetrics its own debug tag.Jakob Stoklund Olesen1-1/+1
2012-08-10Add more trace query functions.Jakob Stoklund Olesen1-0/+29
2012-08-10Include loop-carried dependencies when computing instr heights.Jakob Stoklund Olesen1-6/+18
2012-08-08Deal with irreducible control flow when building traces.Jakob Stoklund Olesen1-17/+22
2012-08-07Fix a couple of typos.Jakob Stoklund Olesen1-1/+1
2012-08-07Add trace accessor methods, implement primitive if-conversion heuristic.Jakob Stoklund Olesen1-0/+24
2012-08-02Compute the critical path length through a trace.Jakob Stoklund Olesen1-5/+69
2012-08-01Compute instruction heights through a trace.Jakob Stoklund Olesen1-10/+246
2012-08-01Add DataDep constructors. Explicitly check SSA form.Jakob Stoklund Olesen1-20/+18
2012-07-31Compute instruction depths through the current trace.Jakob Stoklund Olesen1-0/+232
2012-07-31Rename CT -> MTM. MachineTraceMetrics is abbreviated MTM.Jakob Stoklund Olesen1-12/+12
2012-07-30Avoid looking at stale data in verifyAnalysis().Jakob Stoklund Olesen1-1/+4
2012-07-30Allow traces to enter nested loops.Jakob Stoklund Olesen1-14/+29
2012-07-30Assert that all trace candidate blocks have been visited by the PO.Jakob Stoklund Olesen1-11/+6
2012-07-30Hook into PassManager's analysis verification.Jakob Stoklund Olesen1-1/+1
2012-07-30Add MachineInstr::isTransient().Jakob Stoklund Olesen1-23/+1