Debugger: Add register format definition for SIMD.
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2009, Ingo Weinhold, [email protected].
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||||||
|
* Copyright 2014, Rene Gollent, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -34,6 +35,9 @@ Register::Register(int32 index, const char* name, uint32 bitSize,
|
|||||||
case B_DOUBLE_TYPE:
|
case B_DOUBLE_TYPE:
|
||||||
fFormat = REGISTER_FORMAT_FLOAT;
|
fFormat = REGISTER_FORMAT_FLOAT;
|
||||||
break;
|
break;
|
||||||
|
case B_RAW_TYPE:
|
||||||
|
fFormat = REGISTER_FORMAT_SIMD;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
fFormat = REGISTER_FORMAT_INTEGER;
|
fFormat = REGISTER_FORMAT_INTEGER;
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2009, Ingo Weinhold, [email protected].
|
* Copyright 2009, Ingo Weinhold, [email protected].
|
||||||
|
* Copyright 2014, Rene Gollent, [email protected].
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*/
|
*/
|
||||||
#ifndef REGISTER_H
|
#ifndef REGISTER_H
|
||||||
@@ -11,7 +12,8 @@
|
|||||||
|
|
||||||
enum register_format {
|
enum register_format {
|
||||||
REGISTER_FORMAT_INTEGER,
|
REGISTER_FORMAT_INTEGER,
|
||||||
REGISTER_FORMAT_FLOAT
|
REGISTER_FORMAT_FLOAT,
|
||||||
|
REGISTER_FORMAT_SIMD
|
||||||
};
|
};
|
||||||
|
|
||||||
enum register_type {
|
enum register_type {
|
||||||
|
|||||||
Reference in New Issue
Block a user