Home
last modified time | relevance | path

Searched refs:PLT (Results 1 – 16 of 16) sorted by relevance

/frameworks/compile/mclinker/lib/Target/
DPLT.cpp20 PLT::PLT(LDSection& pSection) : m_Section(pSection) { in PLT() function in mcld::PLT
24 PLT::~PLT() { in ~PLT()
DAndroid.bp24 "PLT.cpp",
/frameworks/compile/mclinker/lib/Target/X86/
DX86PLT.h59 class X86_32DynPLT0 : public PLT::Entry<sizeof(x86_32_dyn_plt0)> {
64 class X86_32DynPLT1 : public PLT::Entry<sizeof(x86_32_dyn_plt1)> {
69 class X86_32ExecPLT0 : public PLT::Entry<sizeof(x86_32_exec_plt0)> {
74 class X86_32ExecPLT1 : public PLT::Entry<sizeof(x86_32_exec_plt1)> {
82 class X86_64PLT0 : public PLT::Entry<sizeof(x86_64_plt0)> {
87 class X86_64PLT1 : public PLT::Entry<sizeof(x86_64_plt1)> {
98 class X86PLT : public PLT {
DX86PLT.cpp25 : PLT::Entry<sizeof(x86_32_dyn_plt0)>(pParent) { in X86_32DynPLT0()
29 : PLT::Entry<sizeof(x86_32_dyn_plt1)>(pParent) { in X86_32DynPLT1()
33 : PLT::Entry<sizeof(x86_32_exec_plt0)>(pParent) { in X86_32ExecPLT0()
37 : PLT::Entry<sizeof(x86_32_exec_plt1)>(pParent) { in X86_32ExecPLT1()
41 : PLT::Entry<sizeof(x86_64_plt0)>(pParent) { in X86_64PLT0()
45 : PLT::Entry<sizeof(x86_64_plt1)>(pParent) { in X86_64PLT1()
52 : PLT(pSection), m_Config(pConfig) { in X86PLT()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagGOTPLT.inc11 "fial to allocate memory for PLT",
12 "fial to allocate memory for PLT")
19 "The number of reserved entries for PLT is inconsist",
20 "The number of reserved entries for PLT is inconsist")
DDiagRelocations.inc63 "applying relocation `%0', conditional branch to PLT in THUMB-2 not "
65 "applying relocation `%0', conditional branch to PLT in THUMB-2 not "
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsPLT.cpp42 class MipsPLT0 : public PLT::Entry<sizeof(PLT0)> {
44 MipsPLT0(SectionData& pParent) : PLT::Entry<sizeof(PLT0)>(pParent) {} in MipsPLT0()
50 class MipsPLTA : public PLT::Entry<sizeof(PLTA)> {
52 MipsPLTA(SectionData& pParent) : PLT::Entry<sizeof(PLTA)>(pParent) {} in MipsPLTA()
58 MipsPLT::MipsPLT(LDSection& pSection) : PLT(pSection) { in MipsPLT()
DMipsPLT.h25 class MipsPLT : public PLT {
/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.h34 class ARMPLT0 : public PLT::Entry<sizeof(arm_plt0)> {
39 class ARMPLT1 : public PLT::Entry<sizeof(arm_plt1)> {
47 class ARMPLT : public PLT {
DARMPLT.cpp21 ARMPLT0::ARMPLT0(SectionData& pParent) : PLT::Entry<sizeof(arm_plt0)>(pParent) { in ARMPLT0()
24 ARMPLT1::ARMPLT1(SectionData& pParent) : PLT::Entry<sizeof(arm_plt1)>(pParent) { in ARMPLT1()
31 : PLT(pSection), m_GOT(pGOTPLT) { in ARMPLT()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64PLT.h38 class AArch64PLT0 : public PLT::Entry<sizeof(aarch64_plt0)> {
43 class AArch64PLT1 : public PLT::Entry<sizeof(aarch64_plt1)> {
51 class AArch64PLT : public PLT {
DAArch64PLT.cpp23 : PLT::Entry<sizeof(aarch64_plt0)>(pParent) { in AArch64PLT0()
27 : PLT::Entry<sizeof(aarch64_plt1)>(pParent) { in AArch64PLT1()
34 : PLT(pSection), m_GOT(pGOTPLT) { in AArch64PLT()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonPLT.h49 class HexagonPLT0 : public PLT::Entry<sizeof(hexagon_plt0)> {
60 class HexagonPLT : public PLT {
90 class HexagonPLT1 : public PLT::Entry<sizeof(hexagon_plt1)> {
DHexagonPLT.cpp25 : PLT::Entry<sizeof(hexagon_plt0)>(pParent) { in HexagonPLT0()
29 : PLT::Entry<sizeof(hexagon_plt1)>(pParent) { in HexagonPLT1()
38 : PLT(pSection), m_GOTPLT(pGOTPLT) { in HexagonPLT()
/frameworks/compile/mclinker/include/mcld/Target/
DPLT.h45 class PLT {
64 explicit PLT(LDSection& pSection);
66 virtual ~PLT();
/frameworks/compile/mclinker/tools/mcld/
DOptions.td89 … HelpText<"Request creation of unwind info for linker generated code sections like PLT">;