Home
last modified time | relevance | path

Searched refs:TrapInstr (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/ELF/Arch/
H A DARM.cpp64 TrapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM()
205 memcpy(Buf + 16, TrapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader()
206 memcpy(Buf + 20, TrapInstr.data(), 4); in writePltHeader()
207 memcpy(Buf + 24, TrapInstr.data(), 4); in writePltHeader()
208 memcpy(Buf + 28, TrapInstr.data(), 4); in writePltHeader()
257 memcpy(Buf + 12, TrapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
H A DMSP430.cpp45 TrapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
H A DX86.cpp63 TrapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
H A DX86_64.cpp70 TrapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
H A DPPC64.cpp234 write32(TrapInstr.data(), 0x7fe00008); in PPC64()
H A DMips.cpp61 write32(TrapInstr.data(), 0x04170001); in MIPS()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DTarget.h121 std::array<uint8_t, 4> TrapInstr; variable
H A DOutputSections.cpp415 return Target->TrapInstr; in getFiller()
H A DWriter.cpp2475 memcpy(I, &Target->TrapInstr, 4); in fillTrap()