Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [MIPS GlobalISel] Select addiu | Petar Avramovic | 2019-11-15 | 1 | -3/+2 |
| | | | | | | | | | | Introduce IntImmLeaf version of PatLeaf immSExt16 for 32-bit immediates. Change immSExt16 with imm32SExt16 for addiu. This keeps same behavior for SDAG and allows for GlobalISel selectImpl to select 'G_CONSTANT imm' + G_ADD into ADDIu when 32-bit imm satisfies imm32SExt16 predicate: sign extending 16 low bits of imm is equal to imm. Differential Revision: https://reviews.llvm.org/D70184 | ||||
* | [MIPS GlobalISel] Lower G_DYN_STACKALLOC | Petar Avramovic | 2019-09-12 | 1 | -0/+65 |
IRTranslator creates G_DYN_STACKALLOC instruction during expansion of alloca when argument that tells number of elements to allocate on stack is a virtual register. Use default lowering for MIPS32. Differential Revision: https://reviews.llvm.org/D67440 llvm-svn: 371728 |