DoxigAlpha

opteron

Source

Implementation

#
pub const opteron: CpuModel = .{
    .name = "opteron",
    .llvm_name = "opteron",
    .features = featureSet(&[_]Feature{
        .@"3dnowa",
        .@"64bit",
        .cmov,
        .cx8,
        .fast_scalar_shift_masks,
        .fxsr,
        .nopl,
        .prfchw,
        .sbb_dep_breaking,
        .slow_shld,
        .slow_unaligned_mem_16,
        .sse2,
        .vzeroupper,
        .x87,
    }),
}