Home
last modified time | relevance | path

Searched refs:trapInstr (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lld/ELF/Arch/
DARM.cpp65 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM()
222 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
223 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
224 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
225 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
272 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
DMSP430.cpp45 trapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
DPPC.cpp175 write32(trapInstr.data(), 0x7fe00008); in PPC()
DX86.cpp66 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
DMips.cpp58 write32(trapInstr.data(), 0x04170001); in MIPS()
DX86_64.cpp91 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
DPPC64.cpp605 write32(trapInstr.data(), 0x7fe00008); in PPC64()
/external/llvm-project/lld/ELF/
DTarget.h140 std::array<uint8_t, 4> trapInstr; variable
DOutputSections.cpp534 return target->trapInstr; in getFiller()
DWriter.cpp2906 memcpy(i, &target->trapInstr, 4); in fillTrap()