| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fixed a comment bug: | Evan Cheng | 2005-11-29 | 1 | -1/+1 | |
| | | | | | | | createPPCPatternInstructionSelector -> createPPCISelPattern llvm-svn: 24510 | |||||
| * | Add "SCC" to the lexicon. Patch provided by Marco Matthies, thanks! | Chris Lattner | 2005-11-29 | 1 | -1/+4 | |
| | | | | | llvm-svn: 24509 | |||||
| * | Fix PR670 and test/Regression/Transforms/Mem2Reg/2005-11-28-Crash.ll | Chris Lattner | 2005-11-29 | 1 | -0/+1 | |
| | | | | | llvm-svn: 24508 | |||||
| * | new testcase for pr670 | Chris Lattner | 2005-11-29 | 1 | -0/+88 | |
| | | | | | llvm-svn: 24507 | |||||
| * | add Evan and Jim. Please edit your entries as desired. | Chris Lattner | 2005-11-29 | 1 | -0/+8 | |
| | | | | | llvm-svn: 24506 | |||||
| * | refix typo | Chris Lattner | 2005-11-29 | 1 | -1/+1 | |
| | | | | | llvm-svn: 24505 | |||||
| * | don't say this is i128, because it isn't yet. Hopefully nate will change | Chris Lattner | 2005-11-29 | 1 | -1/+1 | |
| | | | | | | | | this to be something sane, but in the mean time it is unused, so safe to make something bogus. llvm-svn: 24504 | |||||
| * | revert my change for the time being, which broke the build | Chris Lattner | 2005-11-29 | 1 | -1/+1 | |
| | | | | | llvm-svn: 24503 | |||||
| * | Fixed a punctuation error. | John Criswell | 2005-11-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 24502 | |||||
| * | fix a typo :) | Chris Lattner | 2005-11-28 | 1 | -1/+1 | |
| | | | | | llvm-svn: 24501 | |||||
| * | a few more comments on the interfaces and functions | Andrew Lenharth | 2005-11-28 | 1 | -3/+20 | |
| | | | | | llvm-svn: 24500 | |||||
| * | Added documented rsprofiler interface. Also remove new profiler passes, the | Andrew Lenharth | 2005-11-28 | 6 | -139/+93 | |
| | | | | | | | old ones have been updated to implement the interface. llvm-svn: 24499 | |||||
| * | Add the remove() function from the C library. | John Criswell | 2005-11-28 | 1 | -0/+46 | |
| | | | | | llvm-svn: 24498 | |||||
| * | Teach Visual Studio about new files. | Jeff Cohen | 2005-11-28 | 1 | -0/+6 | |
| | | | | | llvm-svn: 24497 | |||||
| * | Fix VC++ warning. | Jeff Cohen | 2005-11-28 | 1 | -0/+1 | |
| | | | | | llvm-svn: 24496 | |||||
| * | Add a missed optimization | Chris Lattner | 2005-11-28 | 1 | -0/+9 | |
| | | | | | llvm-svn: 24495 | |||||
| * | Use std:: where appropriate | Chris Lattner | 2005-11-28 | 1 | -4/+4 | |
| | | | | | llvm-svn: 24494 | |||||
| * | Random sampling (aka Arnold and Ryder) profiling. This is still ↵ | Andrew Lenharth | 2005-11-28 | 4 | -0/+742 | |
| | | | | | | | | | | | | | | | | | | preliminary, but it works on spec on x86 and alpha. The idea is to allow profiling passes to remember what profiling they inserted, then a random sampling framework is inserted which consists of duplicated basic blocks (without profiling), such that at each backedge in the program and entry into every function, the framework chooses whether to use the instrumented code or the instrumentation free code. The goal of such a framework is to make it reasonably cheap to do random sampling of very expensive profiling products (such as load-value profiling). The code is organized into 3 parts (2 passes) 1) a linked set of profiling passes, which implement an analysis group (linked, like alias analysis are). These insert profiling into the program, and remember what they inserted, so that at a later time they can be queried about any instruction. 2) a pass that handles inserting the random sampling framework. This also has options to control how random samples are choosen. Currently implemented are Global counters, register allocated global counters, and read cycle counter (see? there was a reason for it). The profiling passes are almost identical to the existing ones (block, function, and null profiling is supported right now), and they are valid passes without the sampling framework (hence the existing passes can be unified with the new ones, not done yet). Some things are a bit ugly still, but that should be fixed up soon enough. Other todo? making the counter values not "magic 2^16 -1" values, but dynamically choosable. llvm-svn: 24493 | |||||
| * | Small tweaks noticed while on the plane. | Nate Begeman | 2005-11-26 | 3 | -5/+10 | |
| | | | | | llvm-svn: 24492 | |||||
| * | since reg2mem requires it, might as well mention that it preserves it | Andrew Lenharth | 2005-11-25 | 1 | -0/+1 | |
| | | | | | llvm-svn: 24491 | |||||
| * | add support for dynamic_stackalloc to the dag isel (thanks andrew ;) | Duraid Madina | 2005-11-25 | 1 | -3/+31 | |
| | | | | | | | next up: support argument passing in memory, not just registers llvm-svn: 24490 | |||||
| * | Some first bits of AltiVec stuff: Instruction Formats, Encodings, and | Nate Begeman | 2005-11-23 | 3 | -1/+123 | |
| | | | | | | | | | | | Registers. Apologies to Jim if the scheduling info so far isn't accurate. There's a few more things like VRsave support that need to be finished up in my local tree before I can commit code that Does The Right Thing for turning 4 x float into the various altivec packed float instructions. llvm-svn: 24489 | |||||
| * | Reg2Mem is something a pass may depend on, so allow that | Andrew Lenharth | 2005-11-22 | 2 | -0/+2 | |
| | | | | | llvm-svn: 24488 | |||||
| * | turns out, demotion and invokes and critical edges don't mix | Andrew Lenharth | 2005-11-22 | 1 | -0/+4 | |
| | | | | | llvm-svn: 24487 | |||||
| * | Fix warning, the better way. Really, this is what this instruction is for, ↵ | Andrew Lenharth | 2005-11-22 | 1 | -7/+7 | |
| | | | | | | | so use it llvm-svn: 24486 | |||||
| * | Fix warning | Andrew Lenharth | 2005-11-22 | 1 | -3/+3 | |
| | | | | | llvm-svn: 24485 | |||||
| * | Check in code to scalarize arbitrarily wide packed types for some simple | Nate Begeman | 2005-11-22 | 4 | -6/+84 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vector operations (load, add, sub, mul). This allows us to codegen: void %foo(<4 x float> * %a) { entry: %tmp1 = load <4 x float> * %a; %tmp2 = add <4 x float> %tmp1, %tmp1 store <4 x float> %tmp2, <4 x float> *%a ret void } on ppc as: _foo: lfs f0, 12(r3) lfs f1, 8(r3) lfs f2, 4(r3) lfs f3, 0(r3) fadds f0, f0, f0 fadds f1, f1, f1 fadds f2, f2, f2 fadds f3, f3, f3 stfs f0, 12(r3) stfs f1, 8(r3) stfs f2, 4(r3) stfs f3, 0(r3) blr llvm-svn: 24484 | |||||
| * | massive DAGISel patch. lots and lots more stuff compiles now | Andrew Lenharth | 2005-11-22 | 5 | -52/+207 | |
| | | | | | llvm-svn: 24483 | |||||
| * | Rather than attempting to legalize 1 x float, make sure the SD ISel never | Nate Begeman | 2005-11-22 | 3 | -49/+29 | |
| | | | | | | | | | | | | generates it. Make MVT::Vector expand-only, and remove the code in Legalize that attempts to legalize it. The plan for supporting N x Type is to continually epxand it in ExpandOp until it gets down to 2 x Type, where it will be scalarized into a pair of scalars. llvm-svn: 24482 | |||||
| * | Use HasDotTypeDotSizeDirective instead of forELF | Chris Lattner | 2005-11-21 | 4 | -18/+10 | |
| | | | | | llvm-svn: 24481 | |||||
| * | Add a new flag | Chris Lattner | 2005-11-21 | 1 | -1/+6 | |
| | | | | | llvm-svn: 24480 | |||||
| * | Remove a level of indentation by using a continue. | Chris Lattner | 2005-11-21 | 1 | -55/+55 | |
| | | | | | llvm-svn: 24479 | |||||
| * | Simplify the subtarget info, allow the asmwriter to do some target sensing | Chris Lattner | 2005-11-21 | 2 | -22/+2 | |
| | | | | | | | based on TargetType. llvm-svn: 24478 | |||||
| * | Use subtarget information computed by X86Subtarget instead of rolling our own. | Chris Lattner | 2005-11-21 | 3 | -29/+22 | |
| | | | | | llvm-svn: 24477 | |||||
| * | Make the X86 subtarget compute the basic target type: ELF, Cygwin, Darwin, | Chris Lattner | 2005-11-21 | 2 | -15/+24 | |
| | | | | | | | or native Win32 llvm-svn: 24476 | |||||
| * | Add a forELF flag, allowing the removal of forCygwin and simplification of | Chris Lattner | 2005-11-21 | 4 | -7/+12 | |
| | | | | | | | conditionals. llvm-svn: 24475 | |||||
| * | Add some more directives | Chris Lattner | 2005-11-21 | 1 | -1/+18 | |
| | | | | | llvm-svn: 24474 | |||||
| * | simplify and genericize this code | Chris Lattner | 2005-11-21 | 1 | -55/+69 | |
| | | | | | llvm-svn: 24473 | |||||
| * | add support for div/rem to the dag->dag isel. yay. | Duraid Madina | 2005-11-21 | 1 | -0/+180 | |
| | | | | | llvm-svn: 24472 | |||||
| * | I think I know what you meant here, but just to be safe I'll let you | Duraid Madina | 2005-11-21 | 1 | -1/+1 | |
| | | | | | | | | | do it. :) <_sabre_> excuses excuses llvm-svn: 24471 | |||||
| * | Eliminate unneeded intermediate class. Move doFinalizeMethod to bottom of | Chris Lattner | 2005-11-21 | 1 | -99/+88 | |
| | | | | | | | file. llvm-svn: 24470 | |||||
| * | Start using shared asmprinter Constant Pool emitter, use shorter cpi names. | Chris Lattner | 2005-11-21 | 1 | -26/+5 | |
| | | | | | llvm-svn: 24469 | |||||
| * | prune #include | Chris Lattner | 2005-11-21 | 1 | -1/+0 | |
| | | | | | llvm-svn: 24468 | |||||
| * | Switch to using the shared constant pool printer, along with using shorter | Chris Lattner | 2005-11-21 | 4 | -31/+5 | |
| | | | | | | | CPI ids llvm-svn: 24467 | |||||
| * | Switch to using the generic constant pool emitter impl, use shorter | Chris Lattner | 2005-11-21 | 1 | -25/+2 | |
| | | | | | | | CPI names llvm-svn: 24466 | |||||
| * | Use generic constant pool emission code in the AsmPrinter class. | Chris Lattner | 2005-11-21 | 1 | -30/+4 | |
| | | | | | llvm-svn: 24465 | |||||
| * | Allow target to customize directive used to switch to arbitrary section in ↵ | Chris Lattner | 2005-11-21 | 1 | -1/+28 | |
| | | | | | | | | | SwitchSection, add generic constant pool emitter llvm-svn: 24464 | |||||
| * | add two more config directives, add method for printing constant pool | Chris Lattner | 2005-11-21 | 1 | -1/+20 | |
| | | | | | llvm-svn: 24463 | |||||
| * | Use the FunctionNumber provided by the AsmPrinter class | Chris Lattner | 2005-11-21 | 1 | -19/+15 | |
| | | | | | llvm-svn: 24462 | |||||
| * | increment the function number in SetupMachineFunction | Chris Lattner | 2005-11-21 | 1 | -0/+1 | |
| | | | | | llvm-svn: 24461 | |||||

