Implement changes from Chris's feedback.
[oota-llvm.git] / lib / Target / X86 / X86CodeEmitter.cpp
2009-07-08 Torok EdwinImplement changes from Chris's feedback.
2009-07-08 Torok EdwinStart converting to new error handling API.
2009-07-06 Bruno Cardoso LopesAdd the Object Code Emitter class. Original patch by...
2009-06-27 Chris Lattnerfix a bunch of failures in the X86-64 JIT by tolerating...
2009-06-01 Bruno Cardoso LopesFix new CodeEmitter stuff to follow LLVM codying style...
2009-05-30 Bruno Cardoso LopesFirst patch in the direction of splitting MachineCodeEm...
2009-05-28 Bill WendlingThe MONITOR and MWAIT instructions have insufficient...
2009-05-12 Evan ChengAvoid unneeded SIB byte encoding. Patch by Zoltan Varga.
2009-05-06 Dale JohannesenUse X86AddrNumOperands instead of magic constant one
2009-05-05 Evan ChengRevert part of 70929 that has to do with determining...
2009-05-04 Evan Cheng- Avoid the longer SIB encoding on x86_64 when it's...
2009-04-08 Rafael EspindolaRe-apply 68552.
2009-04-07 Bill WendlingTemporarily revert r68552. This was causing a failure...
2009-04-07 Rafael EspindolaReduce code duplication on the TLS implementation.
2009-03-28 Rafael EspindolaHave only one definition of X86AddrNumOperands.
2009-03-28 Rafael EspindolaMake code a bit less brittle by no hardcoding the number
2009-03-12 Evan ChengRe-apply 66024 with fixes: 1. Fixed indirect call to...
2008-12-10 Evan ChengFix MachineCodeEmitter to use uintptr_t instead of...
2008-11-19 Evan ChengEliminate a compile time warning.
2008-11-10 Dan GohmanFix indentation.
2008-11-10 Evan ChengRename isGVNonLazyPtr to isIndirectSym to reflect how...
2008-11-05 Evan ChengRename isGVLazyPtr to isGVNonLazyPtr relocation. This...
2008-10-31 Mon P Wangx86_64 rip-relative and magic mode address
2008-10-25 Nicolas GeoffrayGenerate code for TLS instructions.
2008-10-24 Dan GohmanFix constant-offset emission for x86-64 absolute addres...
2008-10-17 Evan ChengFix lfence and mfence encoding. These look like MRM5r...
2008-10-12 Anton KorobeynikovUpdate size of inst correctly with segment override.
2008-10-11 Duncan SandsFix comment typo.
2008-10-11 Anton KorobeynikovAdd ability to override segment (mostly for code emitte...
2008-10-03 Dan GohmanSwitch the MachineOperand accessors back to the short...
2008-09-04 Dan GohmanTidy up several unbeseeming casts from pointer to intptr_t.
2008-08-21 Anton KorobeynikovAllow inline asm nodes with empty bodies inside JIT.
2008-08-21 Bill WendlingClean up whitespace.
2008-08-12 Dale JohannesenMake x86-64 JIT changes Darwin-specific.
2008-08-12 Dale JohannesenIn the absence of a linker to build the GOT, use the...
2008-08-11 Dale JohannesenSome fixes for x86-64 JIT. Make it use small code
2008-07-01 Dan GohmanSplit ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL...
2008-05-20 Evan ChengrunOnMachineFunction should set IsPIC because relocatio...
2008-05-14 Dan GohmanChange target-specific classes to use more precise...
2008-04-18 Evan Cheng- Fix atomic operation JIT encoding.
2008-04-16 Nicolas GeoffrayInfrastructure for getting the machine code size of...
2008-04-03 Evan ChengFix x86-64 encoding bug. REX prefix must always follow...
2008-03-17 Evan ChengUnbreak JIT. Ignore TargetInstrInfo::IMPLICIT_DEF.
2008-03-15 Evan ChengReplace all target specific implicit def instructions...
2008-03-14 Evan ChengAdd debugging stuff.
2008-03-05 Evan ChengIgnore debugging related instructions if they get this...
2008-03-05 Evan ChengRather than asserting. Dump out the MI that we are...
2008-03-01 Andrew LenharthAdd lock prefix support to x86. Also add the instructi...
2008-02-26 Bill WendlingDe-tabify
2008-02-13 Nicolas GeoffrayEnable exception handling int JIT
2008-02-08 Dan GohmanAvoid needlessly casting away const qualifiers.
2008-01-10 Chris LattnerIMPLICIT_USE and IMPLICIT_DEF are dead, remove them.
2008-01-07 Chris Lattnerrename TargetInstrDescriptor -> TargetInstrDesc.
2008-01-07 Chris Lattnerrename hasVariableOperands() -> isVariadic(). Add...
2008-01-07 Chris LattnerMove a bunch more accessors from TargetInstrInfo to...
2008-01-07 Chris LattnerRename MachineInstr::getInstrDescriptor -> getDesc...
2008-01-05 Evan ChengX86 JIT PIC jumptable support.
2008-01-05 Evan ChengCombine MovePCtoStack + POP32r into one instruction...
2008-01-04 Evan ChengUnbreak tailcall opt in JIT.
2008-01-04 Evan ChengX86 PIC JIT support fixes: encoding bugs, add lazy...
2008-01-03 Evan ChengChange MachineRelocation::DoesntNeedFnStub to NeedStub...
2008-01-02 Evan ChengX86 PIC JIT bug fix: relocations for constantpool and...
2007-12-30 Chris LattnerAdd new shorter predicates for testing machine operands...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-22 Evan ChengPreliminary PIC JIT support for X86 (32-bit) / Darwin.
2007-11-13 Dale JohannesenAdd parameter to getDwarfRegNum to permit targets
2007-11-13 Evan ChengFix x86-64 jit: remove reliance on Dwarf numbers.
2007-08-29 Duncan SandsMove getX86RegNum into X86RegisterInfo and use it
2007-07-29 Christopher LambChange the x86 backend to use extract_subreg for trunca...
2007-07-27 Duncan SandsTrampoline codegen support for X86-32.
2007-05-03 Devang PatelDrop 'const'
2007-05-02 Devang PatelUse 'static const char' instead of 'static const int'.
2007-05-01 Devang PatelDo not use typeinfo to identify pass in pass manager.
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
2007-04-10 Bill WendlingAdd support for our first SSSE3 instruction "pmulhrsw".
2007-03-14 Evan ChengClean up.
2007-03-14 Evan ChengX86-64 JIT is in large code model. Need stubs for direc...
2007-01-26 Jim LaskeyMake LABEL a builtin opcode.
2006-12-19 Chris Lattnereliminate static ctors for Statistic objects.
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-12-05 Evan ChengJIT large code model support.
2006-12-05 Evan Cheng- Fix X86-64 JIT by temporarily disabling code that...
2006-12-01 Evan ChengMatch TargetInstrInfo changes.
2006-11-17 Bill WendlingRemoved even more std::cerr and #include <iostream...
2006-11-10 Evan ChengUse TargetInstrInfo::getNumOperands() instead of Machin...
2006-11-09 Evan ChengRemove M_2_ADDR_FLAG.
2006-09-13 Evan ChengSkip over first operand when determining REX prefix...
2006-09-08 Evan ChengCommitting X86-64 support.
2006-09-07 Evan ChengClean up.
2006-09-06 Evan ChengWatch out for variable_ops instructions.
2006-09-06 Evan ChengVariable ops instructions may ignore the last few opera...
2006-09-05 Chris LattnerUpdate the X86 JIT to make it work with the new two...
2006-08-27 Chris Lattners|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
2006-08-26 Chris LattnerGive a good error message when we try to jit inline...
2006-07-27 Evan ChengResolve BB references with relocation.
2006-07-25 Evan Cheng- Refactor the code that resolve basic block references...
2006-06-28 Chris LattnerHide x86 symbols
2006-06-22 Evan ChengEliminate unneeded parameter.
2006-06-21 Evan Chengvariable_ops instructions such as call can have any...
2006-05-16 Evan ChengX86 integer register classes naming changes. Make them...
next