Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/ELF/Arch/
H A DARM.cpp61 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM()
236 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
237 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
238 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
239 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
286 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
H A DMSP430.cpp44 trapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
H A DPPC.cpp176 write32(trapInstr.data(), 0x7fe00008); in PPC()
H A DX86.cpp60 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
H A DMips.cpp55 write32(trapInstr.data(), 0x04170001); in MIPS()
H A DX86_64.cpp83 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
H A DPPC64.cpp604 write32(trapInstr.data(), 0x7fe00008); in PPC64()
/openbsd-src/gnu/llvm/lld/ELF/
H A DTarget.h147 std::array<uint8_t, 4> trapInstr; variable
H A DOutputSections.cpp718 return target->trapInstr; in getFiller()
H A DWriter.cpp2897 memcpy(i, &target->trapInstr, 4); in fillTrap()