Skip to content
  1. Jun 29, 2015
    • Rui Ueyama's avatar
      COFF: Fix logic to find default entry name or subsystem. · 45044f47
      Rui Ueyama authored
      The previous logic to find default entry name or subsystem does not
      seem correct (i.e. was not compatible with MSVC linker). Previously,
      default entry name was inferred from CRT functions and user-defined
      entry functions. Subsystem was inferred from CRT functions.
      
      Default entry name and subsystem are now inferred based on the
      following table. Note that we no longer use CRT functions to infer
      them.
      
                     Entry name           Subsystem
        main         mainCRTStartup       console
        wmain        wmainCRTStartup      console
        WinMain      WinMainCRTStartup    windows
        wWinMain     wWinMainCRTStartup   windows
      
      llvm-svn: 240922
      45044f47
    • David Majnemer's avatar
      [MS ABI] Unify constant and non-constant member pointer conversion · 0d9ad687
      David Majnemer authored
      We had two separate paths for member pointer conversion: one which
      takes a constant and another which takes an arbitrary value.  In the
      latter case, we are permitted to construct arbitrary instructions.
      
      It turns out that the bulk of the member pointer conversion is sharable
      if we construct an artificial IRBuilder.
      
      llvm-svn: 240921
      0d9ad687
    • NAKAMURA Takumi's avatar
      Revert r240872, "Suppress clang/test/CodeGen/builtins-ppc-p8vector.c for... · d9433044
      NAKAMURA Takumi authored
      Revert r240872, "Suppress clang/test/CodeGen/builtins-ppc-p8vector.c for -Asserts for now. Will fix later."
      
      This has been fixed since r240912.
      
      llvm-svn: 240920
      d9433044
    • Rui Ueyama's avatar
      COFF: Allow mangled symbols as arguments for /export. · f5313b34
      Rui Ueyama authored
      Usually dllexported symbols are defined with 'extern "C"',
      so identifying them is easy. We can just do hash table lookup
      to look up exported symbols.
      
      However, C++ non-member functions are also allowed to be exported,
      and they can be specified with unmangled name. So, if /export:foo
      is given, we need to look up not only "foo" but also its all
      mangled names. In MSVC mangling scheme, that means that we need to
      look up any symbol which starts with "?foo@@Y".
      
      In this patch, we scan the entire symbol table to search for
      a mangled symbol. The symbol table is a DenseMap, and that doesn't
      support table lookup by string prefix. This is of course very
      inefficient. But that should be probably OK because the user
      should always add 'extern "C"' to dllexported symbols.
      
      llvm-svn: 240919
      f5313b34
    • Rui Ueyama's avatar
      COFF: Fix flaky test. · 091b1a65
      Rui Ueyama authored
      This test was flaky because stdout and stderr can be mixed.
      
      llvm-svn: 240918
      091b1a65
  2. Jun 28, 2015
  3. Jun 27, 2015
Loading