About 442,000 results
Open links in new tab
  1. Structures contained in the .pdata section - Stack Overflow

    The .pdata section is an array of RUNTIME_FUNCTION. It gives you a code range (first two members) and an RVA to the corresponding UNWIND_INFO. From there you get info like …

  2. What is xdata and pdata? | Forum for Electronics

    Feb 25, 2010 · The PDATA and XDATA segments provide similar performance. If you can use PDATA accesses to external data, do it because the setup of the eight bit address is shorter …

  3. visual studio - Is it possible to remove the Exception Table (.pdata ...

    Sep 21, 2021 · I was trying to get my x86-64 binary minimal sized with Visual Studio 2019. It seems that both x64 and ARM64 output in the PE32+ format have .pdata sections aka …

  4. c - Getting the value of uint8_t pointer - Stack Overflow

    May 21, 2020 · A void* pointer can be implicitly converted to pointer to another type. pdata is a pointer to uint8_t, so casting it as uint8_t* pointer would be redundant. Casting pdata as …

  5. [51] - What is xdata and pdata in keil c programming

    5,213 pdata The pdata memory type may be used to declare variables only. You may not declare pdata functions. This memory is indirectly accessed using 8-bit addresses and is one 256-byte …

  6. Is there a way to disable ".pdata" / "ExceptionDir" and …

    May 7, 2019 · When compiling a binary in MSVC (windows) it outputs a section called ".pdata" and shoves some other info into .RDATA for unwinding. GCC has the compiler options: -fno …

  7. What is the meaning of this pData[1+2*i]<<8|pData[2+2*i] C

    Jan 11, 2011 · Why isn't this the more natural pData[2*i]<<8|pData[2*i+1]? One possibility: Word data can be stored in a byte stream 2 ways: the word 0xAA11 can be stored as 0xAA 0x11 or …

  8. c - When do I use xdata? - Stack Overflow

    Jun 5, 2013 · I am new at embedded system programming. I am working on a device that uses an 8051 chipset. I have noticed in the sample programs that when defining variables, sometimes …

  9. How to run a panel data in R - Stack Overflow

    May 1, 2020 · I have created a matrix of 4600x5 dimensions, it is a panel data of the model that i want to emply, but I can not run the panel data model in R. Nether the plm package works nor …

  10. c++ - Struct RUNTIME_FUNCTION - Stack Overflow

    Nov 6, 2013 · I found a large array in .pdata segment of RUNTIME_FUNCTION structures by IDA. So, where I can find information: from what it's compiled, how I can create this and how to use …