- Dec 08, 2010
-
-
Jakob Stoklund Olesen authored
abstract priority queue interface in subclasses that want to override the priority calculations. Subclasses must provide a getPriority() implementation instead. This approach requires less code as long as priorities are expressable as simple floats, and it avoids the dangers of defining potentially expensive priority comparison functions. It also should speed up priority_queue operations since they no longer have to chase pointers when comparing registers. This is not measurable, though. Preferably, we shouldn't use floats to guide code generation. The use of floats here is derived from the use of floats for spill weights. Spill weights have a dynamic range that doesn't lend itself easily to a fixpoint implementation. When someone invents a stable spill weight representation, it can be reused for allocation priorities. llvm-svn: 121294
-
Eric Christopher authored
llvm-svn: 121293
-
Lang Hames authored
llvm-svn: 121292
-
Jim Grosbach authored
for the source field when it's the whole thing that's being referenced. llvm-svn: 121291
-
Douglas Gregor authored
keyword occurs outside of a template" diagnostics under -WC++0x-extensions. llvm-svn: 121290
-
Devang Patel authored
llvm-svn: 121289
-
Bob Wilson authored
llvm-svn: 121288
-
Bob Wilson authored
llvm-svn: 121287
-
Bob Wilson authored
llvm-svn: 121286
-
Eric Christopher authored
llvm-svn: 121285
-
-
Jakob Stoklund Olesen authored
llvm-svn: 121283
-
Howard Hinnant authored
llvm-svn: 121282
-
Devang Patel authored
llvm-svn: 121281
-
Jim Grosbach authored
ordering of thumb mode. llvm-svn: 121280
-
Devang Patel authored
llvm-svn: 121279
-
Greg Clayton authored
file data, so if a source file was modified, we would always show the first cached copy of the source data. We now check file modification times when displaying source info so we can show the update source info. llvm-svn: 121278
-
Bob Wilson authored
llvm-svn: 121277
-
Bob Wilson authored
llvm-svn: 121276
-
Howard Hinnant authored
llvm-svn: 121275
-
Andrew Trick authored
both forward and backward scheduling. Rename it to ScoreboardHazardRecognizer (Scoreboard is one word). Remove integer division from the scoreboard's critical path. llvm-svn: 121274
-
Bill Wendling authored
llvm-svn: 121273
-
Owen Anderson authored
llvm-svn: 121272
-
Johnny Chen authored
way of iterating through an aggregate data structure. The added example usage is from an actual use in test/foundation/TestSymbolTable.py: 2. Pass a container of aggregate which provides APIs to get to the size and the element of the aggregate: # Module is a container of symbol table module = target.FindModule(filespec) for symbol in lldb_iter(module, 'GetNumSymbols', 'GetSymbolAtIndex'): name = symbol.GetName() ... llvm-svn: 121271
-
Chandler Carruth authored
sysroot flag to the link command as a joined flag or a separate flag. llvm-svn: 121270
-
Johnny Chen authored
Also, add bug info for expected failures that remain: <rdar://problem/8741897> Expressions should support properties llvm-svn: 121268
-
Howard Hinnant authored
After a long break to wait for the atomic spec to settle, this completes the library part of <atomic>. It currently won't even parse as it depends on the existence of the intrinsics specified at http://libcxx.llvm.org/atomic_design_a.html. Everything has been tested using fake intrinsics which have now been removed. As the intrinsics come online, the ATOMIC_* macros will need to be adjusted to reflect which operations are lock-free. These macros will probably need to be #ifdef'd for each supported platform. llvm-svn: 121267
-
Douglas Gregor authored
llvm-svn: 121266
-
Michael J. Spencer authored
llvm-svn: 121265
-
Douglas Gregor authored
implementation. llvm-svn: 121263
-
Jim Grosbach authored
llvm-svn: 121262
-
Bill Wendling authored
llvm-svn: 121250
-
Francois Pichet authored
CIndex's EnqueueVisitor must visit elements backward apparently. llvm-svn: 121247
-
Francois Pichet authored
llvm-svn: 121246
-
Evan Cheng authored
llvm-svn: 121238
-
Greg Clayton authored
debugserver-121. llvm-svn: 121237
-
Greg Clayton authored
have children sections). Modified SectionLoadList to do it's own multi-threaded protected on its map. The ThreadSafeSTLMap class was difficult to deal with and wasn't providing much utility, it was only getting in the way. Make sure when the communication read thread is about to exit, it clears the thread in the main class. Fixed the ModuleList to correctly ignore architectures and UUIDs if they aren't valid when searching for a matching module. If we specified a file with no arch, and then modified the file and loaded it again, it would not match on subsequent searches if the arch was invalid since it would compare an invalid architecture to the one that was found or selected within the shared library or executable. This was causing stale modules to stay around in the global module list when they should have been removed. Removed deprecated functions from the DynamicLoaderMacOSXDYLD class. Modified "ProcessGDBRemote::IsAlive" to check if we are connected to a gdb server and also make sure our process hasn't exited. llvm-svn: 121236
-
Greg Clayton authored
llvm-svn: 121235
-
Jakob Stoklund Olesen authored
This new register allocator is initially identical to RegAllocBasic, but it will receive all of the tricks that RegAllocBasic won't get. RegAllocGreedy will eventually replace linear scan. llvm-svn: 121234
-
Bill Wendling authored
llvm-svn: 121233
-