Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
f20b22e3
Commit
f20b22e3
authored
5 years ago
by
Andrey Lihatskiy
Browse files
Options
Downloads
Patches
Plain Diff
AMD CPUs list update
parent
231b51f4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcommon/llprocessor.cpp
+9
-0
9 additions, 0 deletions
indra/llcommon/llprocessor.cpp
with
9 additions
and
0 deletions
indra/llcommon/llprocessor.cpp
+
9
−
0
View file @
f20b22e3
...
...
@@ -195,6 +195,8 @@ namespace
std
::
string
amd_CPUFamilyName
(
int
composed_family
)
{
// https://en.wikipedia.org/wiki/List_of_AMD_CPU_microarchitectures
// https://developer.amd.com/resources/developer-guides-manuals/
switch
(
composed_family
)
{
case
4
:
return
"AMD 80486/5x86"
;
...
...
@@ -202,6 +204,13 @@ namespace
case
6
:
return
"AMD K7"
;
case
0xF
:
return
"AMD K8"
;
case
0x10
:
return
"AMD K8L"
;
case
0x12
:
return
"AMD K10"
;
case
0x14
:
return
"AMD Bobcat"
;
case
0x15
:
return
"AMD Bulldozer"
;
case
0x16
:
return
"AMD Jaguar"
;
case
0x17
:
return
"AMD Zen/Zen+/Zen2"
;
case
0x18
:
return
"AMD Hygon Dhyana"
;
case
0x19
:
return
"AMD Zen 3"
;
}
return
STRINGIZE
(
"AMD <unknown 0x"
<<
std
::
hex
<<
composed_family
<<
">"
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment