Jakub Staszak
d7ac43eed1
Speed up BlockFrequencyInfo a little bit.
...
llvm-svn: 136381
2011-07-28 20:09:31 +00:00
Anna Zaks
67a704818b
Another test case for the &/* mismatch fixit.
...
llvm-svn: 136380
2011-07-28 19:55:52 +00:00
Anna Zaks
3b402716b1
Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult().
...
llvm-svn: 136379
2011-07-28 19:51:27 +00:00
Douglas Gregor
e39f97c869
Make the deserialization of Sema::PendingInstantiations lazy. At this
...
point, ASTReader::InitializeSema() has very little interesting work,
*except* issues stemming from preloaded declarations. That's something
we'll still need to cope with.
llvm-svn: 136378
2011-07-28 19:49:54 +00:00
Joerg Sonnenberger
cf2996dc22
Don't redeclare sr.
...
llvm-svn: 136377
2011-07-28 19:47:33 +00:00
Anna Zaks
1b06812f46
Refactor the */& mismatch fixit generation out of SemaOverload and provide a simple conversion checking function.
...
llvm-svn: 136376
2011-07-28 19:46:48 +00:00
Jim Grosbach
bfb439b140
Add fixme.
...
llvm-svn: 136375
2011-07-28 19:46:12 +00:00
Douglas Gregor
bbbc367337
Promote the deserialized PendingInstantiations vector from being a
...
Module member to being an ASTReader member; we want it to be
centralized for lazy deserialization.
llvm-svn: 136373
2011-07-28 19:26:52 +00:00
Douglas Gregor
4daf6a30e7
Lazily deserialize Sema::VTableUses. Plus, fix the utterly and
...
completely broken deserialization mapping code we had for VTableUses,
which would have broken horribly as soon as our local-to-global ID
mapping became interesting.
llvm-svn: 136371
2011-07-28 19:11:31 +00:00
Caitlin Sadowski
13d4444f96
Thread safety: Fix typo in documentation
...
llvm-svn: 136370
2011-07-28 18:38:36 +00:00
Bill Wendling
2533842439
Use version 402 for the GCDA files when compiling for Apple.
...
llvm-svn: 136369
2011-07-28 18:12:20 +00:00
Douglas Gregor
1c4bfe5ac6
Make Sema::WeakUndeclaredIdentifiers lazily deserialized.
...
llvm-svn: 136368
2011-07-28 18:09:57 +00:00
Owen Anderson
7c965e7520
Update comments.
...
llvm-svn: 136367
2011-07-28 17:56:55 +00:00
Owen Anderson
301f793ed5
Fill in some encoding information for STRD instructions.
...
llvm-svn: 136366
2011-07-28 17:53:25 +00:00
Jonathan D. Turner
ed56499503
Add missing documentation onto new member variable.
...
llvm-svn: 136365
2011-07-28 17:42:18 +00:00
Caitlin Sadowski
aac4d21ba7
Added parsing for guarded_var, pt_guarded_var, lockable,
...
scoped_lockable, and no_thread_safety_analysis attributes, all for thread safety analysis
llvm-svn: 136364
2011-07-28 17:21:07 +00:00
Jonathan D. Turner
ecc2740b32
Switch the ModuleManager over to using a FileManager and FileEntry* as part of its lookup instead of the filename. This is a more correct unique identifier, as symlinks can be handled by the FileManager.
...
llvm-svn: 136363
2011-07-28 17:20:23 +00:00
Owen Anderson
b0e6899398
Revert r136295. It broke nightly testers because some parts of codegen weren't aware of the changes to operand ordering. I hope to revive this sometime in the future, but it's not strictly necessary for now.
...
llvm-svn: 136362
2011-07-28 17:18:57 +00:00
Jim Grosbach
8b3184e540
ARM parsing and encoding for ADR.
...
The label does not have a '#' prefix. Add parsing and encoding tests.
llvm-svn: 136360
2011-07-28 16:33:54 +00:00
Jim Grosbach
4356636fc0
Update ARM tests for parsing and encoding of WFE, WFI and YIELD.
...
llvm-svn: 136358
2011-07-28 16:00:41 +00:00
Douglas Gregor
72e357fc60
Make Sema::ReferencedSelectors lazily deserialized.
...
llvm-svn: 136357
2011-07-28 14:54:22 +00:00
Douglas Gregor
3f8f04f1e9
Move a Module's ReferencedSelectorsData into the ASTReader itself, so
...
that it accumulates referenced selectors from each of the modules/PCH
files as they are loaded. No actual functionality change, yet.
llvm-svn: 136356
2011-07-28 14:41:43 +00:00
Nadav Rotem
9708aef2dc
CR fix: The ANY_EXTEND can be removed because the input and putput type must be
...
identical.
llvm-svn: 136355
2011-07-28 14:38:46 +00:00
Duncan Sands
251daee2a7
Use unsigned rather than uint16_t in case anyone feels like testing
...
more graphs, like all graphs with 5 nodes or less. With a 32 bit
unsigned type, the maximum is graphs with 6 nodes or less, but that
would take a while to test - 5 nodes or less already requires a few
seconds.
llvm-svn: 136354
2011-07-28 14:37:53 +00:00
Duncan Sands
6d0f0ffe83
Check an additional property specific to the way LLVM
...
iterates over SCC's.
llvm-svn: 136353
2011-07-28 14:33:01 +00:00
Douglas Gregor
dc5c958602
Make Sema::LocallyScopedExternalDecls lazily deserialized. In theory,
...
we could turn this into an on-disk hash table so we don't load the
whole thing the first time we need it. However, it tends to be very,
very small (i.e., empty) for most precompiled headers, so it isn't all
that interesting.
llvm-svn: 136352
2011-07-28 14:20:37 +00:00
Duncan Sands
dea551c59a
Add a unittest for the simply connected components (SCC) iterator class.
...
This computes every graph with 4 or fewer nodes, and checks that the SCC
class indeed returns exactly the simply connected components reachable
from the initial node.
llvm-svn: 136351
2011-07-28 14:17:11 +00:00
Duncan Sands
483354758f
Due to changes coming from the new LLVM type system, you now get
...
bitcasts in this test rather than getelementptr instructions;
llvm-gcc produces two bitcasts, clang produces one.
llvm-svn: 136349
2011-07-28 12:21:47 +00:00
NAKAMURA Takumi
0bbacea5b7
test/Misc/ast-dump-templates.cpp: Disable this temporarily due to unstable output.
...
llvm-svn: 136348
2011-07-28 12:10:58 +00:00
NAKAMURA Takumi
9b249eecca
test/CodeGen/2004-03-16-AsmRegisterCrash.c: XTARGET should accept the part of triplet. ("x86" is not the part of triplet)
...
llvm-svn: 136346
2011-07-28 11:25:02 +00:00
Duncan Sands
5710211af0
This file was moved from Support to ADT. Correct a comment.
...
llvm-svn: 136344
2011-07-28 08:36:22 +00:00
Bill Wendling
9e5f0f8fce
Some minor cleanups. No functionalitical change.
...
llvm-svn: 136341
2011-07-28 07:44:07 +00:00
John McCall
fabe079108
Make a note about a missing optimization.
...
llvm-svn: 136340
2011-07-28 07:41:22 +00:00
Bill Wendling
fa28440f15
Leverage some of the code that John wrote to manage the landing pads.
...
The new EH is more simple in many respects. Mainly, we don't have to worry about
the "llvm.eh.exception" and "llvm.eh.selector" calls being in weird places.
llvm-svn: 136339
2011-07-28 07:31:46 +00:00
Bill Wendling
d8c1c1f23c
Don't add in the asked for size so that we don't copy too much from the old to new vectors.
...
llvm-svn: 136338
2011-07-28 07:26:41 +00:00
John McCall
b726a55729
Fix a couple of problems with initialization and assignment to
...
__block variables where the act of initialization/assignment
itself causes the __block variable to be copied to the heap
because the variable is of block type and is being assigned
a block literal which captures the variable.
rdar://problem/9814099
llvm-svn: 136337
2011-07-28 07:23:35 +00:00
Nick Lewycky
3255d1d25f
In DenseMapInfo<pair<T, U>> tombstone key, use the tombstone for T and U instead
...
of the empty key for U. This shouldn't really matter because the tombstone key
for the pair was still distinct from every other key, but it is odd. Patch by
Michael Ilseman!
llvm-svn: 136336
2011-07-28 06:48:33 +00:00
NAKAMURA Takumi
6a662d30e4
test/CodeGen/struct-matching-constraint.c: Fixup not to emit garbage to source tree.
...
llvm-svn: 136333
2011-07-28 04:50:11 +00:00
Douglas Gregor
4b123cbf34
AST serialization support for the Framework in IndexHeaderMapHeader
...
fields of HeaderFileInfo.
llvm-svn: 136332
2011-07-28 04:50:02 +00:00
Douglas Gregor
9f93e38aaf
Introduce the "-index-header-map" option, to give special semantics
...
for quoted header lookup when dealing with not-yet-installed
frameworks. Fixes <rdar://problem/9824020>.
llvm-svn: 136331
2011-07-28 04:45:53 +00:00
NAKAMURA Takumi
449e4c0f43
test/CodeGen/struct-init.c, struct-matching-constraint.c: Tweak commandline, or they would not be recognized as armv7 on some hosts.
...
llvm-svn: 136330
2011-07-28 03:53:54 +00:00
Bill Wendling
51affc8258
Automatically merge the landingpad clauses when we come across a callee's
...
landingpad.
llvm-svn: 136329
2011-07-28 02:40:13 +00:00
Oscar Fuentes
a8666a3cdb
Explicitly declare a library dependency of LLVM*Desc to
...
LLVM*AsmPrinter.
GenLibDeps.pl fails to detect vtable references. As this is the only
referenced symbol from LLVM*Desc to LLVM*AsmPrinter on optimized
builds, the algorithm that creates the list of libraries to be linked
into tools doesn't know about the dependency and sometimes places the
libraries on the wrong order, yielding error messages like this:
../../lib/libLLVMARMDesc.a(ARMMCTargetDesc.cpp.o): In function
`llvm::ARMInstPrinter::ARMInstPrinter(llvm::MCAsmInfo const&)':
ARMMCTargetDesc.cpp:(.text._ZN4llvm14ARMInstPrinterC1ERKNS_9MCAsmInfoE
[llvm::ARMInstPrinter::ARMInstPrinter(llvm::MCAsmInfo
const&)]+0x2a): undefined reference to `vtable for
llvm::ARMInstPrinter'
llvm-svn: 136328
2011-07-28 02:33:52 +00:00
Oscar Fuentes
2d1e353966
Updated cmake library dependencies.
...
llvm-svn: 136327
2011-07-28 02:33:33 +00:00
Bill Wendling
4c93488999
Make sure that the landingpad instruction takes a Constant* as the clause's value.
...
llvm-svn: 136326
2011-07-28 02:27:12 +00:00
Bill Wendling
a8f04e3034
Add a couple of convenience functions:
...
* InvokeInst: Get the landingpad instruction associated with this invoke.
* LandingPadInst: A method to reserve extra space for clauses.
llvm-svn: 136325
2011-07-28 02:15:52 +00:00
Bruno Cardoso Lopes
8c19a8b5d5
Invert the subvector insertion to be more likely to be taken as a COPY
...
llvm-svn: 136324
2011-07-28 01:26:53 +00:00
Bruno Cardoso Lopes
76bc28bac6
Add patterns to generate copies for extract_subvector instead of
...
using vextractf128. This will reduce the number of issued instruction
for several avx codes.
llvm-svn: 136323
2011-07-28 01:26:50 +00:00
Bruno Cardoso Lopes
3fb0b635bd
movd/movq write zeros in the high 128-bit part of the vector. Use
...
them to match 256-bit scalar_to_vector+zext.
llvm-svn: 136322
2011-07-28 01:26:46 +00:00
Bruno Cardoso Lopes
eca99c4b5a
Add a few patterns to match allzeros without having to use the fp unit.
...
Take advantage that the 128-bit vpxor zeros the higher part and use it.
This also fixes PR10491
llvm-svn: 136321
2011-07-28 01:26:43 +00:00