Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp73 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM()
267 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
268 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
269 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
270 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
293 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
294 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader()
295 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader()
296 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader()
347 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
H A DMSP430.cpp43 trapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
H A DSystemZ.cpp77 trapInstr = {0x07, 0x07, 0x07, 0x07}; in SystemZ()
H A DPPC.cpp179 write32(ctx, trapInstr.data(), 0x7fe00008); in PPC()
H A DX86.cpp65 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
H A DMips.cpp53 write32(ctx, trapInstr.data(), 0x04170001); in MIPS()
H A DX86_64.cpp93 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
H A DPPC64.cpp614 write32(ctx, trapInstr.data(), 0x7fe00008); in PPC64()
H A DLoongArch.cpp207 write32le(trapInstr.data(), BREAK); // break 0 in LoongArch()
/freebsd/contrib/llvm-project/lld/ELF/
H A DTarget.h160 std::array<uint8_t, 4> trapInstr = {}; variable
H A DWriter.cpp2954 static void fillTrap(std::array<uint8_t, 4> trapInstr, uint8_t *i, in fillTrap() argument
2957 memcpy(i, trapInstr.data(), 4); in fillTrap()
2972 ctx.target->trapInstr, in writeTrapInstr()
H A DOutputSections.cpp893 return ctx.target->trapInstr; in getFiller()