- Oct 09, 2013
-
-
Ed Maste authored
llvm-svn: 192296
-
Sergey Matveev authored
Comparing the parent PID with 1 isn't sufficient to ensure the parent is alive, because of prctl(PR_SET_CHILD_SUBREAPER, ...). Compare with the real parent's recorded PID instead. llvm-svn: 192295
-
Venkatraman Govindaraju authored
This patch fixes PR17506. llvm-svn: 192294
-
Simon Atanasyan authored
llvm-svn: 192293
-
Simon Atanasyan authored
MIPS-arch. llvm-svn: 192292
-
Simon Atanasyan authored
all MIPS-related options to the new m_mips_Features_Group later. llvm-svn: 192291
-
Simon Atanasyan authored
options are aliases now. llvm-svn: 192290
-
Simon Atanasyan authored
march options. llvm-svn: 192289
-
Timur Iskhodzhanov authored
Code cleanup: rename VTableContext to ItaniumVTableContext, VTableBuilder to ItaniumVTableBuilder and clang-format code around llvm-svn: 192288
-
NAKAMURA Takumi authored
llvm-svn: 192286
-
Timur Iskhodzhanov authored
Reland 192220 "Abstract out parts of thunk emission code, add support for simple thunks when using -cxx-abi microsoft" with relaxed assertions llvm-svn: 192285
-
Greg Bedwell authored
llvm-svn: 192284
-
Elena Demikhovsky authored
llvm-svn: 192283
-
Tim Northover authored
Substantial SelectionDAG scheduling is going away soon, and is interfering with Hao's attempts to implement LDn/STn instructions, so I say we make the leap first. There were a few reorderings (inevitably) which broke some tests. I tried to replace them with CHECK-DAG variants mostly, but some too complex for that to be useful and I just reordered them. llvm-svn: 192282
-
Tim Northover authored
llvm-svn: 192281
-
Shankar Easwaran authored
This change removes code in various places which was setting the File Ordinals. This is because the file ordinals are assigned by the way files are resolved. There was no other way than making the getNextFileAndOrdinal be set const and change the _nextOrdinal to mutable. There are so many places in code, that you would need to cleanup to make LinkingContext non-const! llvm-svn: 192280
-
Craig Topper authored
llvm-svn: 192279
-
Shankar Easwaran authored
llvm-svn: 192278
-
Shankar Easwaran authored
llvm-svn: 192277
-
Andrew Trick authored
This was only working because AVX had cheaper rules in all cases. I'm sure there are other places in this file where predicates are missing. llvm-svn: 192276
-
Craig Topper authored
llvm-svn: 192275
-
Craig Topper authored
Replace a couple instructions with patterns referring to other instructions with same encoding and operands. Mark a couple other instructions as CodeGenOnly since we have FR and VR instructions and only one of them is needed by the assembler/disassembler. llvm-svn: 192274
-
Shankar Easwaran authored
Will fix this in later commits. Not sure why the regex is not passing. llvm-svn: 192273
-
Craig Topper authored
Use AVX512PIi8 for the alt forms of vcmp instructions. This adds the TB prefix and keeps the mnemonic from starting with an extra 'v' llvm-svn: 192272
-
Craig Topper authored
Mark some instructions as CodeGenOnly since they aren't needed by the assembler or disassembler. Disassembler already filtered them, but asm parser still had them in its tables. llvm-svn: 192271
-
Shankar Easwaran authored
llvm-svn: 192270
-
Shankar Easwaran authored
This associates resolveState to FileNodes. The control node derive their resolution state from the inputElements that are contained in it. This makes --start-group/--end-group to work with ELF linking. llvm-svn: 192269
-
Jason Molenda authored
with no source-level debug information correctly. <rdar://problem/15182936> llvm-svn: 192268
-
Sean Callanan authored
respect their Clang types if the variables' values were represented by DWARF constu values. <rdar://problem/14636499> llvm-svn: 192267
-
Craig Topper authored
Add in64BitMode/in32BitMode to the MMX/SSE2/AVX maskmovq/dq instructions. This way the asm parser will pick the right one based on the mode. Instruction selection already did the right thing based on the pointer size. llvm-svn: 192266
-
Rafael Espindola authored
llvm-svn: 192265
-
Sean Callanan authored
wrong information to ValueObjectConstResult. <rdar://problem/15101795> llvm-svn: 192264
-
Michael Sartain authored
Use 32-bit register enums without gaps on 64-bit hosts. Don't show 64-bit registers when debugging 32-bit targets. Add psuedo gpr registers (ax, ah, al, etc.) Add mmx registers. Fix TestRegisters.py to not read ymm15 register on 32-bit targets. Fill out and move gcc/dwarf/gdb register enums to RegisterContext_x86.h llvm-svn: 192263
-
NAKAMURA Takumi authored
llvm-svn: 192262
-
Rui Ueyama authored
llvm-svn: 192261
-
Rui Ueyama authored
llvm-svn: 192260
-
rdar://problem/14923930Enrico Granata authored
Constant ValueObjects should clear their description as well as their summary. Rationale being that both can depend on deeper-than-constified data so both are subject to changes in "unpredictable" ways To see this consider repeatedly po'ing a persistent variable of a type whose -description result changes at each invocation llvm-svn: 192259
-
David Majnemer authored
An invalid decltype expression like 'decltype int' gives: error: expected '(' after 'decltype' This makes it so 'sizeof int' gives a similar one: error: expected parentheses around type name in sizeof expression llvm-svn: 192258
-
Manman Ren authored
DICompositeType is updated to use DIScopeRef. Paired commit with r192256. llvm-svn: 192257
-
Manman Ren authored
to use DIScopeRef. A paired commit at clang is required due to changes to DIBuilder. llvm-svn: 192256
-