Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/lld/ELF/Arch/
HDARM.cpp70 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM()
264 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
265 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
266 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
267 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
290 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
291 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
292 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
293 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
345 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
HDMSP430.cpp44 trapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
HDSystemZ.cpp78 trapInstr = {0x07, 0x07, 0x07, 0x07}; in SystemZ()
HDPPC.cpp176 write32(trapInstr.data(), 0x7fe00008); in PPC()
HDX86.cpp60 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
HDLoongArch.cpp184 write32le(trapInstr.data(), BREAK); // break 0 in LoongArch()
HDMips.cpp55 write32(trapInstr.data(), 0x04170001); in MIPS()
HDX86_64.cpp86 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
HDPPC64.cpp616 write32(trapInstr.data(), 0x7fe00008); in PPC64()
/freebsd-14-stable/contrib/llvm-project/lld/ELF/
HDTarget.h157 std::array<uint8_t, 4> trapInstr; variable
HDOutputSections.cpp870 return target->trapInstr; in getFiller()
HDWriter.cpp2790 memcpy(i, &target->trapInstr, 4); in fillTrap()