- Jan 24, 2006
-
-
Chris Lattner authored
llvm-svn: 25570
-
Chris Lattner authored
llvm-svn: 25568
-
Chris Lattner authored
llvm-svn: 25567
-
Chris Lattner authored
llvm-svn: 25556
-
- Jan 23, 2006
-
-
Reid Spencer authored
No functionality changes, just improve the code by a) providing better function names, b) eliminating a call to get_suffix and c) tightening up a function elimination test to reduce further checking. llvm-svn: 25540
-
Chris Lattner authored
exactly one PassInfo object per RegisterPass object and that their lifetimes are the same. As such, there is no reason for the RegisterPass object to dynamically allocate the PassInfo object at compiler startup time: just inline the object by-value. This should reduce codesize, heap size, and startup time. Yaay. llvm-svn: 25521
-
- Jan 20, 2006
-
-
Chris Lattner authored
llvm-svn: 25480
-
Chris Lattner authored
llvm-svn: 25479
-
- Jan 19, 2006
-
-
Reid Spencer authored
in the case where it needs to cast back to a signed type. llvm-svn: 25447
-
Reid Spencer authored
of comparisons on the various type objects. llvm-svn: 25441
-
Reid Spencer authored
interface requires unsigned arguments. llvm-svn: 25433
-
Reid Spencer authored
the Function and the CallInst: UpgradeCallsToIntrinsic(Function*). Also, re-factor the AutoUpgrade implementation to eliminate some duplication of code. llvm-svn: 25432
-
- Jan 17, 2006
-
-
Robert Bocchino authored
llvm-svn: 25408
-
- Jan 16, 2006
-
-
Reid Spencer authored
This patch is an incremental step towards supporting a flat symbol table. It de-overloads the intrinsic functions by providing type-specific intrinsics and arranging for automatically upgrading from the old overloaded name to the new non-overloaded name. Specifically: llvm.isunordered -> llvm.isunordered.f32, llvm.isunordered.f64 llvm.sqrt -> llvm.sqrt.f32, llvm.sqrt.f64 llvm.ctpop -> llvm.ctpop.i8, llvm.ctpop.i16, llvm.ctpop.i32, llvm.ctpop.i64 llvm.ctlz -> llvm.ctlz.i8, llvm.ctlz.i16, llvm.ctlz.i32, llvm.ctlz.i64 llvm.cttz -> llvm.cttz.i8, llvm.cttz.i16, llvm.cttz.i32, llvm.cttz.i64 New code should not use the overloaded intrinsic names. Warnings will be emitted if they are used. llvm-svn: 25366
-
Reid Spencer authored
This file makes the helper functions for auto-upgrade of llvm assembly and bytecode more accessible. This is part of de-overloading of intrinsic functions to support the flat symbol table (no type planes). llvm-svn: 25365
-
- Jan 15, 2006
-
-
Chris Lattner authored
llvm-svn: 25345
-
Chris Lattner authored
of it until they are resolved. llvm-svn: 25341
-
Chris Lattner authored
llvm-svn: 25328
-
- Jan 14, 2006
-
-
Chris Lattner authored
queries are made. Patch by Daniel Berlin! llvm-svn: 25323
-
Nate Begeman authored
llvm-svn: 25309
-
- Jan 13, 2006
-
-
Chris Lattner authored
llvm-svn: 25266
-
- Jan 12, 2006
-
-
Chris Lattner authored
"Extracts a few more methods, reduces some redundancy in the code at the same time." llvm-svn: 25248
-
Chris Lattner authored
by Daniel Berlin llvm-svn: 25242
-
- Jan 11, 2006
-
-
Jeff Cohen authored
llvm-svn: 25214
-
Chris Lattner authored
"Cut up the runPasses method into smaller pieces. The small private helpers should be easier to deal with when code shuffling arising from creating the new specialised batchers, not to mention, they're much easier to understand. I inlined them, in case function call overhead would be noticeable -- doubtful." llvm-svn: 25213
-
Chris Lattner authored
llvm-svn: 25206
-
Chris Lattner authored
llvm-svn: 25205
-
- Jan 10, 2006
-
-
Robert Bocchino authored
llvm-svn: 25187
-
Robert Bocchino authored
llvm-svn: 25181
-
Reid Spencer authored
First step in refactoring the SymbolTable is to split it into two classes, one for a symbol table of types and one for a symbol table of Values. llvm-svn: 25175
-
- Jan 09, 2006
-
-
Chris Lattner authored
llvm-svn: 25152
-
- Jan 08, 2006
-
-
Reid Spencer authored
This fixes a "gccass" regression. The -debug-pass=Structure option now prints all the appropriate output llvm-svn: 25151
-
Chris Lattner authored
post-dominators. This code was written/adapted by Daniel Berlin! llvm-svn: 25144
-
Chris Lattner authored
"added the asserts and casts, fixed the comments and started the break down of the larger methods. A few more patches and the breakdown should be complete." llvm-svn: 25142
-
- Jan 05, 2006
-
-
Chris Lattner authored
Fold: seteq ({ short }* cast (int 1 to { short }*), { short }* null) setlt ({ short }* cast (int 1 to { short }*), { short }* cast (int 2 to { short }*)) to false/true. These last two commonly occur in the output of compilers that tag integers, like cozmic's scheme compiler. Tested by Regression/Assembler/ConstantExprFold.llx llvm-svn: 25112
-
Chris Lattner authored
llvm-svn: 25110
-
- Jan 04, 2006
-
-
Chris Lattner authored
This sanitises the world, blows away the specialisations and adds traits per passmanager type -- seemed most natural. llvm-svn: 25085
-
Chris Lattner authored
llvm-svn: 25078
-
Chris Lattner authored
llvm-svn: 25077
-
Chris Lattner authored
llvm-svn: 25074
-