1. bde7942 Code Restructuring. No functionality change. by Sanjiv Gupta · 16 years ago
  2. dcb6da3 by Sanjiv Gupta · 16 years ago
  3. fa3f80a More formatting. by Sanjiv Gupta · 16 years ago
  4. b65d1f2 Fixed source comments. No functionality change. by Sanjiv Gupta · 16 years ago
  5. b157f25 PIC16 emits auto variables as globals. When optimizer removes a function entierly by estimating its side effects on globals, those globals(autos) without a function were not being printed by the Asm printer. by Sanjiv Gupta · 16 years ago
  6. 3fc7e53 Emit file directives correctly in case of a .bc is generated by llvm-ld after linking in several .bc files. by Sanjiv Gupta · 16 years ago
  7. dd4694b Emit debug info for locals with proper scope. by Sanjiv Gupta · 16 years ago
  8. a57bc3b Emit debug information for globals (which include automatic variables as well because on PIC16 they are emitted as globals by the frontend). by Sanjiv Gupta · 16 years ago
  9. ad6585b Run through the list of globals once and sectionize all types of globlas includeing declarations. Later emit them from their section lists. by Sanjiv Gupta · 16 years ago
  10. 2364cfe Iterate over globals once and sectionize them into appropriate sections. by Sanjiv Gupta · 16 years ago
  11. 4291857 We do not need to create a label for external defs and decls, by Sanjiv Gupta · 16 years ago
  12. e0b4b0e Fix more naming issues. by Sanjiv Gupta · 16 years ago
  13. 0608b49 Detect calls to compiler intrinsics and emit an extern declarations by Sanjiv Gupta · 16 years ago
  14. af3fdb5 Module iterator contains list of filescope functions as well, we don't need to emit and global declarations for them. This was working earlier and was broken during one of the recent commit for PIC16 naming. by Sanjiv Gupta · 16 years ago
  15. 211f362 Changed lowering and asmprinter to use ABI Names class called PAN. by Sanjiv Gupta · 16 years ago
  16. 777d230 Rename PaddedSize to AllocSize, in the hope that this by Duncan Sands · 16 years ago
  17. d8d27f4 Emit banksel and movlp instructions. by Sanjiv Gupta · 16 years ago
  18. 98a366d Instead of passing in an unsigned value for the optimization level, use an enum, by Bill Wendling · 16 years ago
  19. be8cc2a Second attempt: by Bill Wendling · 16 years ago
  20. c69d56f r70270 isn't ready yet. Back this out. Sorry for the noise. by Bill Wendling · 16 years ago
  21. 2e9d5f9 Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want to by Bill Wendling · 16 years ago
  22. b1f321b Banksel immediate constant will always immediately follow the GA/ES, so scan an insn from beginnin to find out the banksel operand. by Sanjiv Gupta · 16 years ago
  23. dd92dba by Sanjiv Gupta · 16 years ago
  24. 75397f4 Remove unused variable. by Daniel Dunbar · 16 years ago
  25. 2bdf490 Emit the auto variables of a function into a different section than parameters. by Sanjiv Gupta · 16 years ago
  26. 85be408 Handle aggregate type arguments to direct and indirect calls. by Sanjiv Gupta · 16 years ago
  27. 37831d0 The way we are trying to figure out banksel immediate operand may yield different results for different type of insns. This will eventually need to be changed but currently let us prevent the crash in cases of incorrect detection of banksel operand. by Sanjiv Gupta · 16 years ago
  28. c1fa70c Emit .line debug directives for stoppoints. The debug location is retrieved by the MachineInstr itself, rather than by custom handling the DBG_STOPPOINT nodes. by Sanjiv Gupta · 16 years ago
  29. 7836fc1 Handle indirect function calls. by Sanjiv Gupta · 16 years ago
  30. cae1b62 Map stack based frameindices for spills to zero based indices that can be accessed based on an external symbol defining the location of temporary data for a function. For example: we have spill slots addressed as foo.tmp + 0, foo.tmp + 1 etc. by Sanjiv Gupta · 16 years ago
  31. 5274a4a To convert the StopPoint insn into an assembler directive by ISel, we need to have access to the line number field. So we convert that info as an operand by custom handling DBG_STOPPOINT in legalize. by Sanjiv Gupta · 16 years ago
  32. b84d5a4 Params are not being generated as static globals now. The caller passes them onto the callee's stack directly and the callee loads the argvals from its own stack. Clang generated frameindexes validatd by recalculating the stack as if all frameindexes represent 1-byte slots. by Sanjiv Gupta · 16 years ago
  33. 42bf74b CodeGen still defaults to non-verbose asm, but llc now overrides it and default to verbose. by Evan Cheng · 16 years ago
  34. d076570 Banksel optimization is now based on the section names of symbols, since the symbols in one section will always be put into one bank. by Sanjiv Gupta · 16 years ago
  35. 57f0db8 Overhaul my earlier submission due to feedback. It's a large patch, but most of by Bill Wendling · 16 years ago
  36. cb819f1 Put code that generates debug labels into TableGen so that it can be used by by Bill Wendling · 16 years ago
  37. 2cc7531 Function temporaries can not overlap with retval or args.See the comment in source code to know the reason. Anything having .auto. in its name is local to a function in nature irrespective of the linkage specified. print static local variables in module level IDATA section. by Sanjiv Gupta · 17 years ago
  38. a2d8b06 Print globl directive for variables with external linkage (global variables). by Sanjiv Gupta · 17 years ago
  39. c8d7bc8 Enable emitting of constant values in non-default address space as well. The APIs emitting constants now take an additional parameter signifying the address space in which to emit. The APIs like getData8BitsDirective() etc are made virtual enabling targets to be able to define appropirate directivers for various sizes and address spaces. by Sanjiv Gupta · 17 years ago
  40. 1b04694 Checking in conditionals, function call, arrays and libcalls implementation. by Sanjiv Gupta · 17 years ago
  41. ceb4d1a Rename getABITypeSize to getTypePaddedSize, as suggested by Chris. by Duncan Sands · 17 years ago
  42. 8f78fa8 Emit declaration for globals and externs. by Sanjiv Gupta · 17 years ago
  43. b1b5ffd Added a more function PIC16 backend. However to get this working a patch in by Sanjiv Gupta · 17 years ago
  44. d735b80 Switch the MachineOperand accessors back to the short names like by Dan Gohman · 17 years ago
  45. 6ec7cf0 Remove dead code for PIC16 (preparation to switch to new section handling stuff) by Anton Korobeynikov · 17 years ago
  46. cb37188 Use raw_ostream throughout the AsmPrinter. by Owen Anderson · 17 years ago
  47. 082e7c1 Unneeded include's. by Evan Cheng · 17 years ago
  48. aafce77 Add CommonLinkage; currently tentative definitions by Dale Johannesen · 17 years ago
  49. 2010b3e Detabification. Fixed indentation and spacing. by Sanjiv Gupta · 17 years ago
  50. 0e68771 Adding files for Microchip's PIC16 target. by Sanjiv Gupta · 17 years ago