• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/

Lines Matching refs:CPUType

214 static std::string formatMachineType(CPUType Cpu) {
216 RETURN_CASE(CPUType, Intel8080, "intel 8080");
217 RETURN_CASE(CPUType, Intel8086, "intel 8086");
218 RETURN_CASE(CPUType, Intel80286, "intel 80286");
219 RETURN_CASE(CPUType, Intel80386, "intel 80386");
220 RETURN_CASE(CPUType, Intel80486, "intel 80486");
221 RETURN_CASE(CPUType, Pentium, "intel pentium");
222 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro");
223 RETURN_CASE(CPUType, Pentium3, "intel pentium 3");
224 RETURN_CASE(CPUType, MIPS, "mips");
225 RETURN_CASE(CPUType, MIPS16, "mips-16");
226 RETURN_CASE(CPUType, MIPS32, "mips-32");
227 RETURN_CASE(CPUType, MIPS64, "mips-64");
228 RETURN_CASE(CPUType, MIPSI, "mips i");
229 RETURN_CASE(CPUType, MIPSII, "mips ii");
230 RETURN_CASE(CPUType, MIPSIII, "mips iii");
231 RETURN_CASE(CPUType, MIPSIV, "mips iv");
232 RETURN_CASE(CPUType, MIPSV, "mips v");
233 RETURN_CASE(CPUType, M68000, "motorola 68000");
234 RETURN_CASE(CPUType, M68010, "motorola 68010");
235 RETURN_CASE(CPUType, M68020, "motorola 68020");
236 RETURN_CASE(CPUType, M68030, "motorola 68030");
237 RETURN_CASE(CPUType, M68040, "motorola 68040");
238 RETURN_CASE(CPUType, Alpha, "alpha");
239 RETURN_CASE(CPUType, Alpha21164, "alpha 21164");
240 RETURN_CASE(CPUType, Alpha21164A, "alpha 21164a");
241 RETURN_CASE(CPUType, Alpha21264, "alpha 21264");
242 RETURN_CASE(CPUType, Alpha21364, "alpha 21364");
243 RETURN_CASE(CPUType, PPC601, "powerpc 601");
244 RETURN_CASE(CPUType, PPC603, "powerpc 603");
245 RETURN_CASE(CPUType, PPC604, "powerpc 604");
246 RETURN_CASE(CPUType, PPC620, "powerpc 620");
247 RETURN_CASE(CPUType, PPCFP, "powerpc fp");
248 RETURN_CASE(CPUType, PPCBE, "powerpc be");
249 RETURN_CASE(CPUType, SH3, "sh3");
250 RETURN_CASE(CPUType, SH3E, "sh3e");
251 RETURN_CASE(CPUType, SH3DSP, "sh3 dsp");
252 RETURN_CASE(CPUType, SH4, "sh4");
253 RETURN_CASE(CPUType, SHMedia, "shmedia");
254 RETURN_CASE(CPUType, ARM3, "arm 3");
255 RETURN_CASE(CPUType, ARM4, "arm 4");
256 RETURN_CASE(CPUType, ARM4T, "arm 4t");
257 RETURN_CASE(CPUType, ARM5, "arm 5");
258 RETURN_CASE(CPUType, ARM5T, "arm 5t");
259 RETURN_CASE(CPUType, ARM6, "arm 6");
260 RETURN_CASE(CPUType, ARM_XMAC, "arm xmac");
261 RETURN_CASE(CPUType, ARM_WMMX, "arm wmmx");
262 RETURN_CASE(CPUType, ARM7, "arm 7");
263 RETURN_CASE(CPUType, ARM64, "arm64");
264 RETURN_CASE(CPUType, Omni, "omni");
265 RETURN_CASE(CPUType, Ia64, "intel itanium ia64");
266 RETURN_CASE(CPUType, Ia64_2, "intel itanium ia64 2");
267 RETURN_CASE(CPUType, CEE, "cee");
268 RETURN_CASE(CPUType, AM33, "am33");
269 RETURN_CASE(CPUType, M32R, "m32r");
270 RETURN_CASE(CPUType, TriCore, "tri-core");
271 RETURN_CASE(CPUType, X64, "intel x86-x64");
272 RETURN_CASE(CPUType, EBC, "ebc");
273 RETURN_CASE(CPUType, Thumb, "thumb");
274 RETURN_CASE(CPUType, ARMNT, "arm nt");
275 RETURN_CASE(CPUType, D3D11_Shader, "d3d11 shader");
290 static std::string formatRegisterId(RegisterId Id, CPUType Cpu) {
291 if (Cpu == CPUType::ARM64) {
317 static std::string formatRegisterId(uint16_t Reg16, CPUType Cpu) {
321 static std::string formatRegisterId(ulittle16_t &Reg16, CPUType Cpu) {