- May 10, 2010
-
-
Kalle Raiskila authored
llvm-svn: 103399
-
Duncan Sands authored
Based on a patch by Javier Martinez. llvm-svn: 103391
-
- May 09, 2010
-
-
Nathan Jeffords authored
changed dllexport code to use EmitBytes instead of EmitRawText, and changed the export option to use /EXPORT: instead of -export: on the windows platform llvm-svn: 103377
-
Nathan Jeffords authored
llvm-svn: 103373
-
Nathan Jeffords authored
llvm-svn: 103372
-
Chris Lattner authored
when it detects undefined behavior. llvm.trap generally codegens into some thing really small (e.g. a 2 byte ud2 instruction on x86) and debugging this sort of thing is "nontrivial". For example, we now compile: void foo() { *(int*)0 = 42; } into: _foo: pushl %ebp movl %esp, %ebp ud2 Some may even claim that this is a security hole, though that seems dubious to me. This addresses rdar://7958343 - Optimizing away null dereference potentially allows arbitrary code execution llvm-svn: 103356
-
- May 08, 2010
-
-
Chris Lattner authored
with a vector input and output into a shuffle vector. This sort of sequence happens when the input code stores with one type and reloads with another type and then SROA promotes to i96 integers, which make everyone sad. This fixes rdar://7896024 llvm-svn: 103354
-
Chris Lattner authored
llvm-svn: 103347
-
Chris Lattner authored
patch by Nathan Jeffords! llvm-svn: 103346
-
Daniel Dunbar authored
ungracefully. llvm-svn: 103334
-
Daniel Dunbar authored
stuff. llvm-svn: 103333
-
Dan Gohman authored
LSRUse's Regs set after all pruning is done, rather than trying to do it on the fly, which can produce an incomplete result. This fixes a case where heuristic pruning was stripping all formulae from a use, which led the solver to enter an infinite loop. Also, add a few asserts to diagnose this kind of situation. llvm-svn: 103328
-
Devang Patel authored
llvm-svn: 103327
-
Devang Patel authored
llvm-svn: 103325
-
Devang Patel authored
llvm-svn: 103318
-
Dan Gohman authored
and not the real problem itself, by dropping debug info for i128 values. rdar://7958162. llvm-svn: 103310
-
Dan Gohman authored
wider than 64 bits. llvm-svn: 103309
-
Devang Patel authored
llvm-svn: 103305
-
- May 07, 2010
-
-
Chris Lattner authored
llvm-svn: 103304
-
Devang Patel authored
llvm-svn: 103303
-
Kevin Enderby authored
external and the item to be relocated should not have the address of the symbol added in. llvm-svn: 103302
-
Devang Patel authored
llvm-svn: 103300
-
Dale Johannesen authored
getConstantFP to accept the two supported long double target types. This was not the original intent, but there are other places that assume this works and it's easy enough to do. llvm-svn: 103299
-
Devang Patel authored
llvm-svn: 103295
-
Jim Grosbach authored
whether the extract instructions are available. rdar://7956878 llvm-svn: 103277
-
Devang Patel authored
llvm-svn: 103276
-
Devang Patel authored
llvm-svn: 103272
-
Kalle Raiskila authored
llvm-svn: 103271
-
Ted Kremenek authored
llvm-svn: 103269
-
Chris Lattner authored
patch by Peter Housel! llvm-svn: 103267
-
Ted Kremenek authored
llvm-svn: 103266
-
Dan Gohman authored
llvm-svn: 103264
-
Dan Gohman authored
DebugInfoFinder and iterates over all the contents calling print. llvm-svn: 103262
-
Dan Gohman authored
llvm-svn: 103261
-
Dan Gohman authored
as MachineSink, but it isn't constrained by MachineInstr-level details. llvm-svn: 103257
-
Dan Gohman authored
methods, and add dump functions implemented in terms of the print. llvm-svn: 103254
-
Evan Cheng authored
Use VLD2q32 / VST2q32 to reload / spill QQ (pair of Q) registers when stack slot is sufficiently aligned. Use VLDMD / VSTMD otherwise. llvm-svn: 103235
-
Evan Cheng authored
Use VSTMD / VLDMD for spills and reloads of Q registers instead of VSTMQ / VLDQ. The later are aliases which ought to be eliminated but we can't because they are used for storing and loading v2f64 values. llvm-svn: 103234
-
Nick Lewycky authored
llvm-svn: 103233
-
Dan Gohman authored
instruction, rather than a location near where the new instruction is being inserted. llvm-svn: 103232
-