- Oct 30, 2013
-
-
Bill Wendling authored
llvm-svn: 193675
-
Akira Hatanaka authored
llvm-svn: 193674
-
Akira Hatanaka authored
llvm-svn: 193673
-
Josh Magee authored
Differential Revision: http://llvm-reviews.chandlerc.com/D2057 llvm-svn: 193672
-
Richard Smith authored
scope, be careful about function-scope declarations (which are not declared in their semantic context). llvm-svn: 193671
-
Evgeniy Stepanov authored
llvm-svn: 193670
-
NAKAMURA Takumi authored
s!//<!///<! llvm-svn: 193669
-
NAKAMURA Takumi authored
llvm-svn: 193668
-
Evgeniy Stepanov authored
llvm-svn: 193667
-
rdar://problem/15143022Enrico Granata authored
CFNumberRef is toll-free bridged to NSNumber We can use the same summary formatter for both types llvm-svn: 193666
-
Warren Hunt authored
llvm-svn: 193665
-
Warren Hunt authored
llvm-svn: 193664
-
rdar://problem/15045059Enrico Granata authored
One of the things that dynamic typing affects is the count of children a type has Clear out the flag that makes us blindly believe the children count when a dynamic type change is detected llvm-svn: 193663
-
Michael J. Spencer authored
llvm-svn: 193662
-
Warren Hunt authored
!= 0 llvm-svn: 193661
-
Manman Ren authored
Use EmitLabelOffsetDifference for handling on darwin platform when non-darwin platforms use EmitLabelPlusOffset. Also fix a bug in EmitLabelOffsetDifference where the size is hard-coded to 4 even though Size is passed in as an argument. llvm-svn: 193660
-
rdar://problem/15296388Enrico Granata authored
Fix a crasher that would occur if one tried to read memory as characters of some size != 1, e.g. x -f c -s 10 buffer This commit tries to do the right thing and uses the byte-size as the number of elements, unless both are specified and the number of elements is != 1 In this latter case (e.g. x -f c -s 10 -c 3 buffer) one could multiply the two and read 30 characters, but it seems a stretch in mind reading. llvm-svn: 193659
-
- Oct 29, 2013
-
-
Manman Ren authored
To support ref_addr, we calculate the section offset of a DIE (i.e. offset of a DIE from beginning of the debug info section). The Offset field in DIE is currently CU-relative. To calculate the section offset, we add a DebugInfoOffset field in CompileUnit to store the offset of a CU from beginning of the debug info section. We set the value in DwarfUnits::computeSizeAndOffset for each CompileUnit. A helper function DIE::getCompileUnit is added to return the CU DIE that the input DIE belongs to. We also add a map CUDieMap in DwarfDebug to help finding the CU for a given CU DIE. For a cross-referenced DIE, we first find the CU DIE it belongs to with getCompileUnit, then we use CUDieMap to get the corresponding CU for the CU DIE. Adding the section offset of the CU with the CU-relative offset of a DIE gives us the seciton offset of the DIE. We correctly emit ref_addr with relocation using EmitLabelPlusOffset when doesDwarfUseRelocationsAcrossSections is true. This commit handles the emission of DW_FORM_ref_addr when we have an attribute with FORM_ref_addr. A follow-on patch will start using ref_addr when adding a DIEEntry. This commit will be tested and verified in the follow-on patch. Reviewed off-list by Eric, Thanks. llvm-svn: 193658
-
Manman Ren authored
after the DIE creation, we construct the context first. Ensure that we create the context before we create a type so that we can add the newly created type to the parent. Remove last use of addToContextOwner now that it's not needed. We use createAndAddDIE to wrap around "new DIE(". Now all shareable DIEs should be added to their parents right after the creation. Reviewed off-list by Eric, Thanks. llvm-svn: 193657
-
Manman Ren authored
Helper functions are added: emitPostLd: emit a post-increment load operation with given size. emitPostSt: emit a post-increment store operation with given size. No functionality change. llvm-svn: 193656
-
Evgeniy Stepanov authored
llvm-svn: 193655
-
Evgeniy Stepanov authored
Patch by Qin Zhao. llvm-svn: 193654
-
Josh Magee authored
This modifies the pass to classify every SSP-triggering AllocaInst according to an SSPLayoutKind (LargeArray, SmallArray, AddrOf). This analysis is collected by the pass and made available for use, but no other pass uses it yet. The next patch will make use of this analysis in PEI and StackSlot passes. The end goal is to support ssp-strong stack layout rules. WIP. Differential Revision: http://llvm-reviews.chandlerc.com/D1789 llvm-svn: 193653
-
Tobias Grosser authored
When constructing a scop sometimes the exact representation of a statement or condition would be very complex, but there is a common case which is a lot simpler, but which is only valid under certain assumptions. The assumed context records the assumptions taken during the construction of this scop and that need to be code generated as a run-time test. At the moment, we do not yet model any assumptions, but only added the AssumedContext as well as the isl-ast generation support. As a next step, this needs to be hooked up with the isl code generation. if (1) /* run-time condition */ { /* optimized code */ } else { /* original code */ } llvm-svn: 193652
-
Matt Arsenault authored
llvm-svn: 193651
-
Matt Arsenault authored
Use 32-bit types for the array instead of 64. This should generally be better anyway. In optimized + assert builds, I saw a failure when a cond code / type combination that is never set was loading a non-zero value and hitting the != Promote assert. It turns out when loading the 64-bit value to do the shift, the assembly loads the 2 32-bit halves from non-consecutive addresses. The address the second half of the loaded uint64_t doesn't include the offset of the array in the struct. Instead of being offset + 4, it's just + 4. I'm not entirely sure why this wasn't observed before. setCondCodeAction isn't heavily used by the in-tree targets, and not with the higher valued vector SimpleValueTypes. Only PPC is using one of the > 32 valued types, and that is probably never used by anyone on a 32-bit MSVC compiled host. I ran into this when upgrading LLVM versions, so I guess the value loaded from the nonsense address happened to work out before. No test since I'm not really sure if / how it can be reproduced with the current in tree targets, and it's not supposed to change anything. llvm-svn: 193650
-
Aaron Ballman authored
Removing a switch statement that contains only a default label. This resolves an MSVC warning. No functional change intended. llvm-svn: 193649
-
Chris Wailes authored
llvm-svn: 193648
-
Evgeniy Stepanov authored
llvm-svn: 193647
-
Rui Ueyama authored
llvm-svn: 193646
-
Evgeniy Stepanov authored
llvm-svn: 193645
-
Evgeniy Stepanov authored
We'll need to intercept a few function in libm. llvm-svn: 193644
-
Evgeniy Stepanov authored
Add macro MSANDR_STANDALONE_TEST for standalone test without msan executables. Patch by Qin Zhao. llvm-svn: 193643
-
Rafael Espindola authored
Patch by Jeff Muizelaar. llvm-svn: 193642
-
Akira Hatanaka authored
llvm-svn: 193641
-
Akira Hatanaka authored
llvm-svn: 193640
-
Evgeniy Stepanov authored
llvm-svn: 193639
-
Akira Hatanaka authored
the previous argument's ending address to compute the type of the padding argument. No intended functionality change. llvm-svn: 193638
-
Rafael Espindola authored
llvm-svn: 193637
-
Akira Hatanaka authored
at the end of handleTargetFeatures. No intended functionality change. llvm-svn: 193636
-