aboutsummaryrefslogtreecommitdiff
path: root/utils/TableGen
AgeCommit message (Expand)Author
2011-06-12Tweak hash function and compress hash tables.Jakob Stoklund Olesen
2011-06-12Remove now dead code.Jakob Stoklund Olesen
2011-06-12Extract the generateHashTable function.Jakob Stoklund Olesen
2011-06-12Compute lists of sub-regs, super-regs, and overlapping regs.Jakob Stoklund Olesen
2011-06-11Move the list of registers into CodeGenRegBank.Jakob Stoklund Olesen
2011-06-10Move some sub-register index calculations to CodeGenRegisters.cppJakob Stoklund Olesen
2011-06-09Move TableGen's register bank classes to their own source file.Jakob Stoklund Olesen
2011-06-09Add special-case range checking for VCVT_N intrinsic immediate operands.Bob Wilson
2011-06-07Fixed a few illegal paths with llvm_unreachable. Patch by Cameron McInally.Chad Rosier
2011-06-04Drop a RecordKeeper reference that wasn't necessary.Jakob Stoklund Olesen
2011-06-04Silence compiler warnings.Jakob Stoklund Olesen
2011-06-04Teach TableGen to evaluate DAG expressions as set operations.Jakob Stoklund Olesen
2011-06-03Rework the logic to not rely on undefined behaviour (1LL << 64). Also simplify.Nick Lewycky
2011-06-02Make it possible to have unallocatable register classes.Jakob Stoklund Olesen
2011-06-01Add new -d option to tblgen. It writes a make(1)-style dependency file.Joerg Sonnenberger
2011-05-31Fix ssat and ssat16 encodings for ARM and Thumb. The bit position valueBruno Cardoso Lopes
2011-05-30Use the dwarf->llvm mapping to print register names in the cfiRafael Espindola
2011-05-30Introduce the DwarfRegAlias class for declaring that two registers have theRafael Espindola
2011-05-28Change how tblgen generates attributes for intrinsics to use a singleJohn McCall
2011-05-28Fix the root cause of the bootstrap failure:Rafael Espindola
2011-05-25[tablegen] A couple of changes to ClangDiagnosticEmmitter.Argyrios Kyrtzidis
2011-05-23Use a more efficient data structure for the "operand map". The number ofBill Wendling
2011-05-19Fix PR9947 by placing OPFL_MemRefs on the node using memory operands rather thanCameron Zwarich
2011-05-10Downgrade a tablegen warning to an error.Jakob Stoklund Olesen
2011-05-09Fixed MC encoding for index_align for VLD1/VST1 (single element from one lane...Mon P Wang
2011-05-07Teach TableGen to automatically generate missing SubRegIndex instances.Jakob Stoklund Olesen
2011-05-06Improve diagnostics for some parse errors. Not asserting when a user inputJim Grosbach
2011-05-06ParseFile() may throw, so extend the try/catch to handle that.Jim Grosbach
2011-05-05llvmc: Make it possible to provide an argument to (join).Mikhail Glushenkov
2011-05-03Tidy up. Add missing newline to generated file.Jim Grosbach
2011-04-29Filter out pattterns from the FastISel emitter which it doesn't actually know...Eli Friedman
2011-04-28Fix a bug in tblgen that caused incorrect encodings on instructions that spec...Owen Anderson
2011-04-24Add a TODO.Mikhail Glushenkov
2011-04-23Remove unused STL header includes.Jay Foad
2011-04-22Disassembly of A8.6.59 LDR (literal) Encoding T1 (16-bit thumb instruction) s...Johnny Chen
2011-04-22Define Neon load/store intrinsics for Clang as macros instead of functions.Bob Wilson
2011-04-21Don't allow per-register spill size and alignment.Jakob Stoklund Olesen
2011-04-20Prefer cheap registers for busy live ranges.Jakob Stoklund Olesen
2011-04-18Invert the meaning of printAliasInstr's return value. It now returnsEric Christopher
2011-04-18Enhance the fixed-length disassembler to support the callbacks necessary for ...Owen Anderson
2011-04-18Add a new bit that ImmLeaf's can opt into, which allows them to duck out ofChris Lattner
2011-04-18Implement major new fastisel functionality: the matcher can now handle immedi...Chris Lattner
2011-04-17introduce a new OpKind abstraction which wraps up operand flavors in a tidy l...Chris Lattner
2011-04-17change OperandsSignature to use SmallVector<char> instead of std::vector<string>Chris Lattner
2011-04-17since the VT is fixed for a ImmLeaf, there is no reason to expose it to the m...Chris Lattner
2011-04-17now that predicates have a decent abstraction layer on them, introduce a new Chris Lattner
2011-04-17Rework our internal representation of node predicates to expose moreChris Lattner
2011-04-17remove some debugging code I added.Chris Lattner
2011-04-171. merge fast-isel-shift-imm.ll into fast-isel-x86-64.llChris Lattner
2011-04-15Initial work to improve documentation for Clang's diagnostics, from Matthieu ...Douglas Gregor