Skip to content
  1. Jan 19, 2009
    • Mike Stump's avatar
      Add targets to support the installation of clang in isolation. · eb1e2006
      Mike Stump authored
      llvm-svn: 62522
      eb1e2006
    • Evan Cheng's avatar
      DIVREM isel deficiency: If sign bit is known zero, zero out DX/EDX/RDX instead... · 44cc5543
      Evan Cheng authored
      DIVREM isel deficiency: If sign bit is known zero, zero out DX/EDX/RDX instead of sign extending the low part (in AX/EAX/RAX) into it.
      
      llvm-svn: 62519
      44cc5543
    • Evan Cheng's avatar
      Fix 80 col violations. · 0346c04f
      Evan Cheng authored
      llvm-svn: 62518
      0346c04f
    • Evan Cheng's avatar
      Handle ISD::DECLARE with PIC relocation model. · 6c024982
      Evan Cheng authored
      llvm-svn: 62516
      6c024982
    • Nick Lewycky's avatar
      Port this test from dejagnu to unit testing. · ee22611e
      Nick Lewycky authored
      The way this worked before was to test APInt by running
      "lli -force-interpreter=true" knowing the lli uses APInt under the hood to
      store its values. Now, we test APInt directly.
      
      llvm-svn: 62514
      ee22611e
    • Nick Lewycky's avatar
      Fix typo, sentence fragment. · 030c450f
      Nick Lewycky authored
      llvm-svn: 62512
      030c450f
    • Dan Villiom Podlaski Christiansen's avatar
      Adding your's truly to CREDITS.TXT · faad4168
      Dan Villiom Podlaski Christiansen authored
      (This is also a test commit.)
      
      llvm-svn: 62511
      faad4168
    • Bill Wendling's avatar
      Temporarily revert r62487. It's causing this error during a release bootstrap of · 534d2e0b
      Bill Wendling authored
      llvm-gcc. Most likely, it's miscompiling one of the "gen*" programs:
      
      /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm-gcc.obj/./prev-gcc/xgcc -B/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm-gcc.obj/./prev-gcc/ -B/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm-gcc.install/i386-apple-darwin9.6.0/bin/ -c -g -O2 -mdynamic-no-pic -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -mdynamic-no-pic -DHAVE_CONFIG_H -DGENERATOR_FILE -I. -Ibuild -I../../llvm-gcc.src/gcc -I../../llvm-gcc.src/gcc/build -I../../llvm-gcc.src/gcc/../include -I./../intl -I../../llvm-gcc.src/gcc/../libcpp/include  -I../../llvm-gcc.src/gcc/../libdecnumber -I../libdecnumber -I/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.obj/include -I/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/include -DENABLE_LLVM -I/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.obj/../llvm.src/include  -D_DEBUG  -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS   -o build/gencondmd.o build/gencondmd.c
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:926: error: expected '}' before ')' token
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:926: warning: excess elements in struct initializer
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:926: warning: (near initialization for 'insn_conditions[4]')
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:926: error: expected '}' before ')' token
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:926: error: expected ',' or ';' before ')' token
      ../../llvm-gcc.src/gcc/config/i386/mmx.md:927: error: expected identifier or '(' before ',' token
      ../../llvm-gcc.src/gcc/config/i386/sse.md:3458: error: expected identifier or '(' before ',' token
      ...
      
      llvm-svn: 62506
      534d2e0b
    • Evan Cheng's avatar
      Minor tweak to LowerUINT_TO_FP_i32. Bias (after scalar_to_vector) has two uses... · 8f367e53
      Evan Cheng authored
      Minor tweak to LowerUINT_TO_FP_i32. Bias (after scalar_to_vector) has two uses so we should make it the second source operand of ISD::OR so 2-address pass won't have to be smart about commuting.
      
      %reg1024<def> = MOVSDrm %reg0, 1, %reg0, <cp#0>, Mem:LD(8,8) [ConstantPool + 0]
      %reg1025<def> = MOVSD2PDrr %reg1024
      %reg1026<def> = MOVDI2PDIrm <fi#-1>, 1, %reg0, 0, Mem:LD(4,16) [FixedStack-1 + 0]
      %reg1027<def> = ORPSrr %reg1025<kill>, %reg1026<kill>
      %reg1028<def> = MOVPD2SDrr %reg1027<kill>
      %reg1029<def> = SUBSDrr %reg1028<kill>, %reg1024<kill>
      %reg1030<def> = CVTSD2SSrr %reg1029<kill>
      MOVSSmr <fi#0>, 1, %reg0, 0, %reg1030<kill>, Mem:ST(4,4) [FixedStack0 + 0]
      %reg1031<def> = LD_Fp32m80 <fi#0>, 1, %reg0, 0, Mem:LD(4,16) [FixedStack0 + 0]
      RET %reg1031<kill>, %ST0<imp-use,kill>
      
      The reason 2-addr pass isn't smart enough to commute the ORPSrr is because it can't look pass the MOVSD2PDrr instruction.
      
      llvm-svn: 62505
      8f367e53
    • Evan Cheng's avatar
      Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't · 7e9ef4d7
      Evan Cheng authored
      optimize it to a SINT_TO_FP when the sign bit is known zero. X86 isel should perform the optimization itself.
      
      llvm-svn: 62504
      7e9ef4d7
    • Chris Lattner's avatar
      Fix PR3016, a bug which can occur do to an invalid assumption: · f2bb4ea3
      Chris Lattner authored
      we assumed a CFG structure that would be valid when all code in 
      the function is reachable, but not all code is necessarily 
      reachable.  Do a simple, but horrible, CFG walk to check for this
      case.
      
      llvm-svn: 62487
      f2bb4ea3
    • Chris Lattner's avatar
      reduce indentation by using 'continue', no functionality change. · e381d702
      Chris Lattner authored
      llvm-svn: 62477
      e381d702
    • Chris Lattner's avatar
      Fix some problems in SpeculativelyExecuteBB. Basically, · 54f0c61d
      Chris Lattner authored
      because of dead code, a phi could use the speculated instruction
      that was not in "BB2".  Make this check explicit and tighten up 
      some other corners.  This fixes PR3292.  No testcase becauase this
      depends entirely on visitation order of blocks and requires a 
      sequence of 8 passes to repro.
      
      llvm-svn: 62476
      54f0c61d
    • Chris Lattner's avatar
      Make this a bit more explicit about which cases need the · e1c01e4e
      Chris Lattner authored
      check.  No functionality change.
      
      llvm-svn: 62474
      e1c01e4e
  2. Jan 18, 2009
  3. Jan 17, 2009
  4. Jan 16, 2009
    • Evan Cheng's avatar
      Fix PPC ISD::Declare isel and eliminate the need for... · 41e9f6a8
      Evan Cheng authored
      Fix PPC ISD::Declare isel and eliminate the need for PPCTargetLowering::LowerGlobalAddress to check if isVerifiedDebugInfoDesc() is true. Given the recent changes, it would falsely return true for a lot of GlobalAddressSDNode's.
      
      llvm-svn: 62373
      41e9f6a8
Loading