Searched refs:trapInstr (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/llvm-project/lld/ELF/Arch/
H A DMSP430.cpp44 trapInstr = {0x43, 0x43, 0x43, 0x43};
H A DARM.cpp70 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4};
255 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary
256 memcpy(buf + 20, trapInstr.data(), 4);
257 memcpy(buf + 24, trapInstr.data(), 4);
258 memcpy(buf + 28, trapInstr.data(), 4);
302 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary
H A DSystemZ.cpp77 // Therefore, we provide a nop instruction as "trapInstr" here.
78 trapInstr = {0x07, 0x07, 0x07, 0x07};
H A DX86.cpp60 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3
H A DPPC.cpp176 write32(trapInstr.data(), 0x7fe00008);
H A DX86_64.cpp86 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3
H A DMips.cpp55 write32(trapInstr.data(), 0x04170001);
H A DPPC64.cpp616 write32(trapInstr.data(), 0x7fe00008);
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DTarget.h157 std::array<uint8_t, 4> trapInstr; member in class:lld::elf::TargetInfo
H A DOutputSections.cpp728 return target->trapInstr;
H A DWriter.cpp2983 memcpy(i, &target->trapInstr, 4);

Completed in 99 milliseconds