What does the CodeModel in Clang / LLVM refer to?

后端 未结 1 1728
误落风尘
误落风尘 2021-01-12 12:35

I have been looking through the Clang / LLVM source-code and I came across the CodeModel property of CodeGenOptions.

Based on this method, the valid va

相关标签:
1条回答
  • 2021-01-12 12:52

    Code model is a term from AMD64 ABI (see 3.5.1 from https://software.intel.com/sites/default/files/article/402129/mpx-linux64-abi.pdf for more information).

    In short - the majority of the offsets inside x64-64 instructions are PC-relative, however the immediate field inside instructions is only 32-bit long. Therefore if the data is located "far" from the code (more than 32-bit apart), then one could not use immediate field inside the instructions to efficiently encode the offset and should calculate the address explicitly. The code model provides various restrictions on the relative location of code and data.

    If you're compiling everything statically, then 'small' is safe (and default). If you're JIT'ing, then everything is possible especially if ASLR is enabled and you'd need to use medium / large code model.

    0 讨论(0)
提交回复
热议问题