Skip to content
  1. Oct 26, 2013
  2. Oct 16, 2013
  3. Oct 12, 2013
    • Andrew Kaylor's avatar
      Fixing problems in lli's RemoteMemoryManager. · 6587bcfd
      Andrew Kaylor authored
      This fixes a problem from a previous check-in where a return value was omitted.
      
      Previously the remote/stubs-remote.ll and remote/stubs-sm-pic.ll tests were reporting passes, but they should have been failing.  Those tests attempt to link against an external symbol and remote symbol resolution is not supported.  The old RemoteMemoryManager implementation resulted in local symbols being used for resolution and the child process crashed but the test didn't notice.  With this check-in remote symbol resolution fails, and so the test (correctly) fails.
      
      llvm-svn: 192514
      6587bcfd
  4. Oct 11, 2013
  5. Oct 04, 2013
  6. Oct 02, 2013
    • Filip Pizlo's avatar
      This threads SectionName through the allocateCodeSection/allocateDataSection... · 7aa695e0
      Filip Pizlo authored
      This threads SectionName through the allocateCodeSection/allocateDataSection APIs, both in C++ and C land.  
      It's useful for the memory managers that are allocating a section to know what the name of the section is.  
      At a minimum, this is useful for low-level debugging - it's customary for JITs to be able to tell you what 
      memory they allocated, and as part of any such dump, they should be able to tell you some meta-data about 
      what each allocation is for.  This allows clients that supply their own memory managers to do this.  
      Additionally, we also envision the SectionName being useful for passing meta-data from within LLVM to an LLVM 
      client.
      
      This changes both the C and C++ APIs, and all of the clients of those APIs within LLVM.  I'm assuming that 
      it's safe to change the C++ API because that API is allowed to change.  I'm assuming that it's safe to change 
      the C API because we haven't shipped the API in a release yet (LLVM 3.3 doesn't include the MCJIT memory 
      management C API).
      
      llvm-svn: 191804
      7aa695e0
  7. May 17, 2013
  8. May 07, 2013
  9. Feb 26, 2013
    • Andrew Kaylor's avatar
      Provide workaround for PR 15130. · cf99fd57
      Andrew Kaylor authored
      This changes the RecordingMemoryManager in lli to use mapped memory rather than malloc to allocate memory for sections and uses a 'near' MemoryBlock to keep the allocations together.  This works around a problem in MCJIT where relocations are applied to a generated image immediately oupon generation, which isn't appropriate for the remote case.
      
      llvm-svn: 176057
      cf99fd57
  10. Jan 24, 2013
  11. Nov 16, 2012
  12. Sep 05, 2012
    • Jim Grosbach's avatar
      MCJIT: Add faux remote target execution to lli for the MCJIT. · 0f435d08
      Jim Grosbach authored
      Simulate a remote target address space by allocating a seperate chunk of
      memory for the target and re-mapping section addresses to that prior to
      execution. Later we'll want to have a truly remote process, but for now
      this gets us closer to being able to test the remote target
      functionality outside LLDB.
      
      rdar://12157052
      
      llvm-svn: 163216
      0f435d08
Loading