]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPkg/Library/RvdPeCoffExtraActionLib/RvdPeCoffExtraActionLib.c
MdeModulePkg/MdeModulePkg.dsc: add MM_STANDALONE FTW and variable modules
[mirror_edk2.git] / ArmPkg / Library / RvdPeCoffExtraActionLib / RvdPeCoffExtraActionLib.c
index 531cfa1e7b36c44f25e12ac51e95ff7e361cdf8c..abe3c378d78935e2f1bc34204f36f90629dced49 100644 (file)
@@ -2,6 +2,8 @@
 \r
 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>\r
 Portions copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>\r
+Portions copyright (c) 2011 - 2012, ARM Ltd. All rights reserved.<BR>\r
+\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -23,7 +25,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 #include <Library/PrintLib.h>\r
 \r
 /**\r
-  Append string to debugger script file, create file if needed. \r
+  Append string to debugger script file, create file if needed.\r
 \r
   This library can show up in mulitple places so we need to append the file every time we write to it.\r
   For example Sec can use this to load the DXE core, and the DXE core would use this to load all the\r
@@ -39,15 +41,15 @@ WriteStringToFile (
   )\r
 {\r
   // Working around and issue with the code that is commented out. For now send it to the console.\r
-  // You can copy the console into a file and source the file as a script and you get symbols. \r
-  // This gets you all the symbols except for SEC. To get SEC symbols you need to copy the \r
+  // You can copy the console into a file and source the file as a script and you get symbols.\r
+  // This gets you all the symbols except for SEC. To get SEC symbols you need to copy the\r
   // debug print in the SEC into the debugger manually\r
   SemihostWriteString (Buffer);\r
 /*\r
   I'm currently having issues with this code crashing the debugger. Seems like it should work.\r
 \r
   UINT32        SemihostHandle;\r
-  UINT32        SemihostMode = SEMIHOST_FILE_MODE_WRITE | SEMIHOST_FILE_MODE_BINARY | SEMIHOST_FILE_MODE_CREATE;\r
+  UINT32        SemihostMode = SEMIHOST_FILE_MODE_WRITE | SEMIHOST_FILE_MODE_BINARY | SEMIHOST_FILE_MODE_UPDATE;\r
 \r
   SemihostFileOpen ("c:\rvi_symbols.inc", SemihostMode, &SemihostHandle);\r
   SemihostFileWrite (SemihostHandle, &Length, Buffer);\r
@@ -57,7 +59,7 @@ WriteStringToFile (
 \r
 \r
 /**\r
-  If the build is done on cygwin the paths are cygpaths. \r
+  If the build is done on cygwin the paths are cygpaths.\r
   /cygdrive/c/tmp.txt vs c:\tmp.txt so we need to convert\r
   them to work with RVD commands\r
 \r
@@ -72,14 +74,14 @@ DeCygwinPathIfNeeded (
   CHAR8   *Ptr;\r
   UINTN   Index;\r
   UINTN   Len;\r
-  \r
+\r
   Ptr = AsciiStrStr (Name, "/cygdrive/");\r
   if (Ptr == NULL) {\r
     return Name;\r
   }\r
-  \r
+\r
   Len = AsciiStrLen (Ptr);\r
-  \r
+\r
   // convert "/cygdrive" to spaces\r
   for (Index = 0; Index < 9; Index++) {\r
     Ptr[Index] = ' ';\r
@@ -88,8 +90,8 @@ DeCygwinPathIfNeeded (
   // convert /c to c:\r
   Ptr[9]  = Ptr[10];\r
   Ptr[10] = ':';\r
-  \r
-  // switch path seperators\r
+\r
+  // switch path separators\r
   for (Index = 11; Index < Len; Index++) {\r
     if (Ptr[Index] == '/') {\r
       Ptr[Index] = '\\' ;\r
@@ -116,10 +118,14 @@ PeCoffLoaderRelocateImageExtraAction (
   )\r
 {\r
   CHAR8 Buffer[256];\r
-  \r
-  AsciiSPrint (Buffer, sizeof(Buffer), "load /a /ni /np %a &0x%08x\n", ImageContext->PdbPointer, (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders));\r
+\r
+#if (__ARMCC_VERSION < 500000)\r
+  AsciiSPrint (Buffer, sizeof(Buffer), "load /a /ni /np \"%a\" &0x%08x\n", ImageContext->PdbPointer, (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders));\r
+#else\r
+  AsciiSPrint (Buffer, sizeof(Buffer), "add-symbol-file %a 0x%08x\n", ImageContext->PdbPointer, (UINTN)(ImageContext->ImageAddress + ImageContext->SizeOfHeaders));\r
+#endif\r
   DeCygwinPathIfNeeded (&Buffer[16]);\r
\r
+\r
   WriteStringToFile (Buffer, AsciiStrSize (Buffer));\r
 }\r
 \r
@@ -128,9 +134,9 @@ PeCoffLoaderRelocateImageExtraAction (
 /**\r
   Performs additional actions just before a PE/COFF image is unloaded.  Any resources\r
   that were allocated by PeCoffLoaderRelocateImageExtraAction() must be freed.\r
-  \r
+\r
   If ImageContext is NULL, then ASSERT().\r
-  \r
+\r
   @param  ImageContext  Pointer to the image context structure that describes the\r
                         PE/COFF image that is being unloaded.\r
 \r
@@ -142,9 +148,9 @@ PeCoffLoaderUnloadImageExtraAction (
   )\r
 {\r
   CHAR8 Buffer[256];\r
-  \r
-  AsciiSPrint (Buffer, sizeof(Buffer), "unload symbols_only %a\n", ImageContext->PdbPointer);\r
+\r
+  AsciiSPrint (Buffer, sizeof(Buffer), "unload symbols_only \"%a\"\n", ImageContext->PdbPointer);\r
   DeCygwinPathIfNeeded (Buffer);\r
\r
+\r
   WriteStringToFile (Buffer, AsciiStrSize (Buffer));\r
 }\r