Skip to content
  1. May 03, 2013
    • Douglas Gregor's avatar
      Use attribute argument information to determine when to parse attribute arguments as expressions. · d2472d4c
      Douglas Gregor authored
      This change partly addresses a heinous problem we have with the
      parsing of attribute arguments that are a lone identifier. Previously,
      we would end up parsing the 'align' attribute of this as an expression
      "(Align)":
      
       template<unsigned Size, unsigned Align>
       class my_aligned_storage
       {
         __attribute__((align((Align)))) char storage[Size];
       };
      
      while this would parse as a "parameter name" 'Align':
      
       template<unsigned Size, unsigned Align>
       class my_aligned_storage
       {
         __attribute__((align(Align))) char storage[Size];
       };
      
      The code that handles the alignment attribute would completely ignore
      the parameter name, so the while the first of these would do what's
      expected, the second would silently be equivalent to
      
       template<unsigned Size, unsigned Align>
       class my_aligned_storage
       {
         __attribute__((align)) char storage[Size];
       };
      
      i.e., use the maximal alignment rather than the specified alignment.
      
      Address this by sniffing the "Args" provided in the TableGen
      description of attributes. If the first argument is "obviously"
      something that should be treated as an expression (rather than an
      identifier to be matched later), parse it as an expression.
      
      Fixes <rdar://problem/13700933>.
      
      llvm-svn: 180973
      d2472d4c
    • Douglas Gregor's avatar
      Revert r180970; it's causing breakage. · 33ebfe36
      Douglas Gregor authored
      llvm-svn: 180972
      33ebfe36
    • Jim Ingham's avatar
      If HandleCommands is called with add_to_history set to false, turn on the... · 076b7fc6
      Jim Ingham authored
      If HandleCommands is called with add_to_history set to false, turn on the m_command_source_depth so that when we forget the value for regex & alias commands it still stays off.
      
      <rdar://problem/13795202>
      
      llvm-svn: 180971
      076b7fc6
    • Douglas Gregor's avatar
      Use attribute argument information to determine when to parse attribute arguments as expressions. · 44dff3f2
      Douglas Gregor authored
      This change partly addresses a heinous problem we have with the
      parsing of attribute arguments that are a lone identifier. Previously,
      we would end up parsing the 'align' attribute of this as an expression
      "(Align)":
      
        template<unsigned Size, unsigned Align>
        class my_aligned_storage
        {
          __attribute__((align((Align)))) char storage[Size];
        };
      
      while this would parse as a "parameter name" 'Align':
      
        template<unsigned Size, unsigned Align>
        class my_aligned_storage
        {
          __attribute__((align(Align))) char storage[Size];
        };
      
      The code that handles the alignment attribute would completely ignore
      the parameter name, so the while the first of these would do what's
      expected, the second would silently be equivalent to
      
        template<unsigned Size, unsigned Align>
        class my_aligned_storage
        {
          __attribute__((align)) char storage[Size];
        };
      
      i.e., use the maximal alignment rather than the specified alignment.
      
      Address this by sniffing the "Args" provided in the TableGen
      description of attributes. If the first argument is "obviously"
      something that should be treated as an expression (rather than an
      identifier to be matched later), parse it as an expression.
      
      Fixes <rdar://problem/13700933>.
      
      llvm-svn: 180970
      44dff3f2
    • Akira Hatanaka's avatar
      [mips] Handle reading, writing or copying of ccond field of DSP control · 5705f546
      Akira Hatanaka authored
      register.
      
      - Define pseudo instructions which store or load ccond field of the DSP
        control register.
      - Emit the pseudos in MipsSEInstrInfo::storeRegToStack and loadRegFromStack.
      - Expand the pseudos before callee-scan save.
      - Emit instructions RDDSP or WRDSP to copy between ccond field and GPRs. 
      
      llvm-svn: 180969
      5705f546
    • Bill Wendling's avatar
      Remove redundant flag. · 952e8dfa
      Bill Wendling authored
      llvm-svn: 180968
      952e8dfa
    • Bill Wendling's avatar
      Remove redundant flag. · d0a790a5
      Bill Wendling authored
      llvm-svn: 180967
      d0a790a5
    • Enrico Granata's avatar
      <rdar://problem/13732521> · 78081be1
      Enrico Granata authored
      Updated the logic for the Sketch test case
      
      llvm-svn: 180966
      78081be1
    • Greg Clayton's avatar
      Mark TestConstVariables as expected to fail due to radar 13314878 on darwin.... · 5378bbae
      Greg Clayton authored
      Mark TestConstVariables as expected to fail due to radar 13314878 on darwin. The tests are already skipped on linux.
      
      llvm-svn: 180965
      5378bbae
    • Jyotsna Verma's avatar
      reverting r180953 · a841af75
      Jyotsna Verma authored
      llvm-svn: 180964
      a841af75
    • Greg Clayton's avatar
      <rdar://problem/13788674> · 864fa8c0
      Greg Clayton authored
      TestPlatformCommand failing on buildbot.
      
      llvm-svn: 180963
      864fa8c0
    • Jason Molenda's avatar
      If the Target's current architecture is incompatible with the kernel · a4ce2538
      Jason Molenda authored
      DynamicLoaderDarwinKernel finds in memory, have DynamicLoaderDarwinKernel
      re-set the Target's arch based on the kernel's cpu type / cpu subtype.
      
      llvm-svn: 180962
      a4ce2538
    • Greg Clayton's avatar
      <rdar://problem/13788579> · 6ad52695
      Greg Clayton authored
      TestRegisters failing on buildbot on MacOSX. Some registers that were valid for linux/freebsd, were not valid on MacOSX. The tests now allow a register be skipped if it doesn't exist on the host.
      
      llvm-svn: 180961
      6ad52695
  2. May 02, 2013
Loading