Searched refs:trapInstr (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/lld/ELF/Arch/ |
D | ARM.cpp | 65 trapInstr = {0xd4, 0xd4, 0xd4, 0xd4}; in ARM() 222 memcpy(buf + 16, trapInstr.data(), 4); // Pad to 32-byte boundary in writePltHeader() 223 memcpy(buf + 20, trapInstr.data(), 4); in writePltHeader() 224 memcpy(buf + 24, trapInstr.data(), 4); in writePltHeader() 225 memcpy(buf + 28, trapInstr.data(), 4); in writePltHeader() 272 memcpy(buf + 12, trapInstr.data(), 4); // Pad to 16-byte boundary in writePlt()
|
D | MSP430.cpp | 45 trapInstr = {0x43, 0x43, 0x43, 0x43}; in MSP430()
|
D | PPC.cpp | 175 write32(trapInstr.data(), 0x7fe00008); in PPC()
|
D | X86.cpp | 66 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86()
|
D | Mips.cpp | 58 write32(trapInstr.data(), 0x04170001); in MIPS()
|
D | X86_64.cpp | 91 trapInstr = {0xcc, 0xcc, 0xcc, 0xcc}; // 0xcc = INT3 in X86_64()
|
D | PPC64.cpp | 605 write32(trapInstr.data(), 0x7fe00008); in PPC64()
|
/external/llvm-project/lld/ELF/ |
D | Target.h | 140 std::array<uint8_t, 4> trapInstr; variable
|
D | OutputSections.cpp | 534 return target->trapInstr; in getFiller()
|
D | Writer.cpp | 2906 memcpy(i, &target->trapInstr, 4); in fillTrap()
|