- Jul 22, 2003
-
-
John Criswell authored
llvm-svn: 7234
-
John Criswell authored
llvm-svn: 7233
-
John Criswell authored
llvm-svn: 7232
-
John Criswell authored
llvm-svn: 7231
-
Brian Gaeke authored
llvm-svn: 7230
-
Chris Lattner authored
llvm-svn: 7229
-
Vikram S. Adve authored
(2) Detect LLVMDIR using the LEVEL variable in Makefile. (3) To perform #2 propertly, use the same Makefile search rules as gmake. llvm-svn: 7228
-
Vikram S. Adve authored
llvm-svn: 7227
-
John Criswell authored
Expanded upon testing priorities. llvm-svn: 7225
-
- Jul 21, 2003
-
-
Misha Brukman authored
llvm-svn: 7223
-
Chris Lattner authored
llvm-svn: 7217
-
John Criswell authored
a load of the global variable with the variable's constant value. llvm-svn: 7216
-
John Criswell authored
This test helps to see if the optimization correctly handles variables that are declared constant and external. llvm-svn: 7215
-
Chris Lattner authored
llvm-svn: 7214
-
Chris Lattner authored
llvm-svn: 7213
-
Chris Lattner authored
llvm-svn: 7210
-
Misha Brukman authored
llvm-svn: 7209
-
- Jul 20, 2003
-
-
Anand Shukla authored
llvm-svn: 7208
-
- Jul 19, 2003
-
-
Misha Brukman authored
x86 or Sparc, LLC will automatically default to that platform, no guessing required. On another platform, it will default to `noarch' and will have to guess which architecture to compile to. llvm-svn: 7207
-
- Jul 18, 2003
-
-
Anand Shukla authored
llvm-svn: 7206
-
Brian Gaeke authored
Avoid a fall-through in the (stubby) treatment of the longjmp intrinsic call which causes llc & lli to core-dump. Add a sort-of treatment of cast double to ulong. I am not really sure what a user should expect to see upon casting a negative FP value to unsigned long long. But with what is given here, I was able to write a program that could cast -123.456 to ulong and back and get -123.0, which seems like a step in the right direction. GCC seems to give you 0. I don't know if I'd consider that useful. These cases were coming up in GNU coreutils-5.0. llvm-svn: 7205
-
Misha Brukman authored
to pass to dlsym() -- Linux/x86 wants 0 while Sparc/Solaris wants RTLD_SELF, which is not zero. Thanks to Chris for the suggestion. llvm-svn: 7204
-
Misha Brukman authored
llvm-svn: 7203
-
Anand Shukla authored
llvm-svn: 7202
-
Anand Shukla authored
llvm-svn: 7201
-
- Jul 17, 2003
-
-
Brian Gaeke authored
try to load or store through a bool*. llvm-svn: 7195
-
Brian Gaeke authored
llvm-svn: 7194
-
John Criswell authored
an external constant. Since external constants don't have initializers, we were failing on an assert() call in llvm/GlobalVariable.h. llvm-svn: 7193
-
Brian Gaeke authored
llvm-svn: 7192
-
- Jul 16, 2003
-
-
Vikram S. Adve authored
llvm-svn: 7191
-
Vikram S. Adve authored
to clone the subgraph reachable from a set of root nodes, into the current graph, merging the global nodes into those in the current graph. (2) Added DSGraph::updateFromGlobalGraph() to rematerialize nodes from the globals graph into the current graph in both BU and TD passes. (3) Added hash_set<const GlobalValue*> InlinedGlobals: a set of globals to track which globals have been inlined into the current graph from callers or callees. In the TD pass, such globals are up-to-date and do not need to be rematerialized from the GlobalsGraph. (4) Added StripIncompleteBit/KeepIncompleteBit to remove incomplete bit when cloning nodes into the globals graph. llvm-svn: 7190
-
Vikram S. Adve authored
after all callees are inlined into the current graph. NOTE: There's also a major bug fix for the BU pass in DataStructure.cpp, which ensures that resolvable indirect calls are not moved out to the globals graph, so that they are eventually inlined (if possible). llvm-svn: 7189
-
Vikram S. Adve authored
after all callers are inlined into the current graph. (2) Optimize the way a graph is inlined into its callees in the TD phase: (a) Use DSGraph::cloneReachableSubgraph to clone only a subgraph at each call site, for faster inlining. (b) Clone separately for the same callee at different call sites, since only the reachable subgraph is being cloned, not the entire caller graph. llvm-svn: 7188
-
Vikram S. Adve authored
and (2) faster inlining by cloning only reachable nodes. In particular: (1) Added DSGraph::cloneReachableSubgraph and DSGraph::cloneReachableNodes to clone the subgraph reachable from a set of root nodes, into the current graph, merging the global nodes into thos in the current graph. The TD pass now uses this for faster inlining, and so does the next function. (2) Added DSGraph::updateFromGlobalGraph() to rematerialize nodes from the globals graph into the current graph in both BU and TD passes. (3) `I' flags are removed from all nodes in the globals graph, because they are difficult to maintain correctly and are not needed anyway. (4) Aux. function calls are only removed to the globals graph if they will never be resovled. (This is what fixed gap.) The immediate reason is that if we took these out of a function (and moved them to the globals graph) we would need to rematerialize these nodes into the function graph for every function in the BU pass. The longer term problem is that we would need to find a way to remove them from the globals graph iff they have been resolved on all paths through the call graph. llvm-svn: 7187
-
Vikram S. Adve authored
isUnresolvableFunc() (I thought I needed this externally. I don't, but it's still nicer this way.) llvm-svn: 7186
-
Misha Brukman authored
now works in instructions which require a 2-bit or 3-bit INTcc code. Incidentally, that means that the representation of INTcc registers is now the same in both integer and FP instructions. Thus, code became much simpler and cleaner. llvm-svn: 7185
-
Misha Brukman authored
no change in functionality. llvm-svn: 7184
-
John Criswell authored
up builds a little bit since it will prevent GNU make from matching these phony targets against implicit rules. llvm-svn: 7183
-
- Jul 15, 2003
-
-
Misha Brukman authored
llvm-svn: 7182
-
Misha Brukman authored
llvm-svn: 7181
-