PIC support in X86FastISel.
[oota-llvm.git] / lib / Target / X86 / X86FastISel.cpp
2008-09-25 Dan GohmanPIC support in X86FastISel.
2008-09-23 Dan GohmanArrange for FastISel code to have access to the Machine...
2008-09-22 Arnold SchwaighoferChange the calling convention used when tail call optim...
2008-09-21 Chris LattnerFold immediates into X86 shifts with fast isel. This...
2008-09-19 Dan GohmanFix a FastISel GlobalVariable CSE bug.
2008-09-19 Dan GohmanRefactor X86SelectConstAddr, folding it into X86SelectA...
2008-09-18 Dan GohmanAddress-mode folding for X86FastISel. It's pretty basic...
2008-09-18 Dan GohmanSimplify this code. The FastISel class has its own...
2008-09-17 Dan GohmanFastISel: For calls, prefer using the callee's address...
2008-09-11 Owen AndersonFix a bug in ANY_EXTEND handling that was breaking...
2008-09-11 Owen AndersonIf ISD::ANY_EXTEND fails, try ISD::ZERO_EXTEND and...
2008-09-10 Dan GohmanX86FastISel support for double->float and float->double...
2008-09-10 Dan GohmanAdd X86FastISel support for static allocas, and refences
2008-09-09 Evan ChengFix a constant lowering bug. Now we can do load and...
2008-09-08 Evan ChengHandle calls which produce i1 results: promote to i8...
2008-09-08 Dan GohmanFix copy+pastos in comments.
2008-09-08 Evan ChengAdd support to extend call operands when needed. Enable...
2008-09-07 Evan ChengInitial fastisel call support for C, Fast, and X86_Fast...
2008-09-07 Evan ChengHandle x86 truncate to i8 with target hook for now.
2008-09-06 Owen AndersonFix constant pool loads, and remove broken versions...
2008-09-05 Dan GohmanFix X86FastISel's shift and select code to reject illeg...
2008-09-05 Dan GohmanFix the opcodes used by X86FastISel for shifts and...
2008-09-05 Evan ChengFactor out code that emits load and store instructions.
2008-09-05 Owen AndersonRename method.
2008-09-05 Dan GohmanX86FastISel support for shifts and conditional moves.
2008-09-05 Dan GohmanCheck a comparion's operand type for legality before
2008-09-05 Dan GohmanFix X86FastISel code for comparisons and conditional...
2008-09-05 Dan GohmanX86FastISel support for conditional branches.
2008-09-05 Owen AndersonAdd initial support for selecting constant materializat...
2008-09-04 Dan GohmanX86FastISel support for ICmpInst and FCmpInst.
2008-09-04 Owen AndersonFix the ordering of operands to the store (inverted...
2008-09-04 Owen AndersonAdd a first attempt at implementing stores for X86...
2008-09-04 Evan ChengLoad from GV stub should be locally CSE'd.
2008-09-03 Dan GohmanCreate HandlePHINodesInSuccessorBlocksFast, a version of
2008-09-03 Evan ChengAdd X86 target hook to implement load (even from Global...
2008-09-03 Evan ChengUnbreak fast isel.
2008-09-03 Evan ChengLet tblgen only generate fastisel routines, not the...
2008-08-29 Owen AndersonAdd initial support for fast isel of instructions that...
2008-08-28 Dan GohmanAdd a target callback for FastISel.
2008-08-22 Dan GohmanFactor out the predicate check code from DAGISelEmitter.cpp
2008-08-19 Dan GohmanInstantiate FastISel for X86.