- Jun 18, 2010
-
-
Dan Gohman authored
switch from this: if (TimePassesIsEnabled) { NamedRegionTimer T(Name, GroupName); do_something(); } else { do_something(); // duplicate the code, this time without a timer! } to this: { NamedRegionTimer T(Name, GroupName, TimePassesIsEnabled); do_something(); } llvm-svn: 106285
-
- Jun 16, 2010
-
-
Devang Patel authored
This speeds up local variable handling in DwarfDebug. llvm-svn: 106075
-
Eric Christopher authored
llvm-svn: 106073
-
Stuart Hastings authored
llvm-svn: 106063
-
- Jun 11, 2010
-
-
Stuart Hastings authored
llvm-svn: 105828
-
- Jun 05, 2010
-
-
Stuart Hastings authored
llvm-svn: 105511
-
Stuart Hastings authored
llvm-svn: 105492
-
- Jun 03, 2010
-
-
Eric Christopher authored
llvm-svn: 105379
-
- Jun 02, 2010
-
-
Devang Patel authored
llvm-svn: 105340
-
Devang Patel authored
Use local small vector. llvm-svn: 105332
-
- Jun 01, 2010
-
-
Devang Patel authored
llvm-svn: 105292
-
- May 28, 2010
-
-
Stuart Hastings authored
llvm-svn: 104953
-
- May 27, 2010
-
-
Devang Patel authored
llvm-svn: 104884
-
Devang Patel authored
inlined function's arguments need a label to mark the start point because they are not directly attached to current function. llvm-svn: 104848
-
Stuart Hastings authored
llvm-svn: 104841
-
Devang Patel authored
llvm-svn: 104785
-
- May 26, 2010
-
-
Devang Patel authored
There is no need to force an line number entry (using previous location) for a temp label at unknown location. llvm-svn: 104740
-
Devang Patel authored
Identify instructions, that needs a label to mark debug info entity, in advance. This simplifies beginScope(). llvm-svn: 104720
-
Devang Patel authored
llvm-svn: 104706
-
Devang Patel authored
llvm-svn: 104705
-
Devang Patel authored
This is used to track variable information. llvm-svn: 104649
-
- May 25, 2010
-
-
Eric Christopher authored
as well. llvm-svn: 104642
-
Eric Christopher authored
and testcases accordingly. llvm-svn: 104635
-
- May 24, 2010
-
-
Devang Patel authored
This fixes recent regression in store.exp from gdb testsuite. llvm-svn: 104524
-
Nicolas Geoffray authored
is first emitted, and StackOffsets are emitted in 16 bits. llvm-svn: 104488
-
- May 22, 2010
-
-
Eric Christopher authored
llvm-svn: 104414
-
Devang Patel authored
llvm-svn: 104412
-
- May 21, 2010
-
-
Devang Patel authored
llvm-svn: 104338
-
Devang Patel authored
llvm-svn: 104302
-
- May 20, 2010
-
-
Devang Patel authored
llvm-svn: 104265
-
Devang Patel authored
Split DbgVariable. Eventually, variable info will be communicated through frame index, or DBG_VALUE instruction, or collection of DBG_VALUE instructions. Plus each DbgVariable may not need a label. llvm-svn: 104233
-
Eric Christopher authored
llvm-svn: 104197
-
- May 19, 2010
-
-
Devang Patel authored
llvm-svn: 104172
-
Devang Patel authored
llvm-svn: 104165
-
- May 14, 2010
-
-
Devang Patel authored
llvm-svn: 103822
-
Bill Wendling authored
the variable actually tracks. N.B., several back-ends are using "HasCalls" as being synonymous for something that adjusts the stack. This isn't 100% correct and should be looked into. llvm-svn: 103802
-
Devang Patel authored
llvm-svn: 103798
-
Daniel Dunbar authored
- This is a hack, but I can't decide the best place to handle this. Chris? llvm-svn: 103765
-
- May 12, 2010
-
-
Duncan Sands authored
llvm-svn: 103586
-
Nathan Jeffords authored
Now, the .linkonce directive is emitted as part of MCSectionCOFF::PrintSwitchToSection instead of AsmPrinter::EmitLinkage since it is an attribute of the section the symbol was placed into not the symbol itself. llvm-svn: 103568
-